- ajoute info sur CXX pour Omega
[sppoc.git] / Polylib / findv.c
blobb9555a4121a04c51f8c3704ea1c531a0f73c7a73
1 #include <stdio.h>
3 #include "arithmetique.h"
4 #include "polylib.h"
6 int main()
8 Matrix *a, *b;
9 Polyhedron *A, *B;
10 Param_Polyhedron *PA;
12 a = Matrix_Read();
13 A = Constraints2Polyhedron(a, 200);
14 Matrix_Free(a);
16 b = Matrix_Read();
17 B = Constraints2Polyhedron(b, 200);
18 Matrix_Free(b);
20 PA = Polyhedron2Param_Vertices( A, B, 500 );
22 Param_Vertices_Print( stdout, PA->V );
24 Domain_Free(A);
25 Domain_Free(B);
26 Param_Polyhedron_Free( PA );
28 return 0;