PIPS
plint-local.h
Go to the documentation of this file.
1 /*
2 
3  $Id: plint-local.h 1641 2016-03-02 08:20:19Z coelho $
4 
5  Copyright 1989-2016 MINES ParisTech
6 
7  This file is part of Linear/C3 Library.
8 
9  Linear/C3 Library is free software: you can redistribute it and/or modify it
10  under the terms of the GNU Lesser General Public License as published by
11  the Free Software Foundation, either version 3 of the License, or
12  any later version.
13 
14  Linear/C3 Library is distributed in the hope that it will be useful, but WITHOUT ANY
15  WARRANTY; without even the implied warranty of MERCHANTABILITY or
16  FITNESS FOR A PARTICULAR PURPOSE.
17 
18  See the GNU Lesser General Public License for more details.
19 
20  You should have received a copy of the GNU Lesser General Public License
21  along with Linear/C3 Library. If not, see <http://www.gnu.org/licenses/>.
22 
23 */
24 
25 /* package plint: programmation lineaire en nombres entiers
26  *
27  * Corinne Ancourt
28  *
29  * utilise les packages:
30  * arithmetique.h
31  * vecteur.h
32  * contrainte.h
33  * sc.h
34  * ray_dte.h
35  * sommet.h
36  * sg.h
37  * polyedre.h (indirectement, pour les fonctions de conversion de sc en
38  * liste de sommets et reciproquement)
39  * matrice.h
40  */
41 
42 /*
43  * Representation d'une solution d'un systeme lineaire
44  *
45  * Pourrais-tu etre plus precise, Corinne? FI
46  */
47 
48 /* constante associee a une solution (Comment est-elle associee? FI) */
49 #define SOLUTION 0
50 
51 typedef struct Ssolution{
52  /* variable du systeme */
54  /* valeur de la variable */
56  /* denominateur de la valeur de la variable */
58  /* pointeur vers la variable suivante */
59  struct Ssolution *succ;
61 
int Value
struct Ssolution * Psolution
struct Ssolution Ssolution
Value val
valeur de la variable
Definition: plint-local.h:55
struct Ssolution * succ
pointeur vers la variable suivante
Definition: plint-local.h:59
Value denominateur
denominateur de la valeur de la variable
Definition: plint-local.h:57
Variable var
variable du systeme
Definition: plint-local.h:53
void * Variable
arithmetique is a requirement for vecteur, but I do not want to inforce it in all pips files....
Definition: vecteur-local.h:60