4 #include <barvinok/evalue.h>
5 #include <barvinok/util.h>
6 #include <barvinok/barvinok.h>
10 #include "verif_ehrhart.h"
11 #include "verify_series.h"
12 #include "remove_equalities.h"
13 #include "evalue_convert.h"
14 #include "conversion.h"
15 #include "skewed_genfun.h"
17 #undef CS /* for Solaris 10 */
22 /* The input of this example program is the same as that of testehrhart
23 * in the PolyLib distribution, i.e., a polytope in combined
24 * data and parameter space, a context polytope in parameter space
25 * and (optionally) the names of the parameters.
26 * Both polytopes are in PolyLib notation.
29 #define PRINT_STATS (BV_OPT_LAST+1)
31 struct argp_option argp_options
[] = {
33 { "series", 's', 0, 0, "compute rational generating function" },
34 { "explicit", 'e', 0, 0, "convert rgf to psp" },
35 { "print-stats", PRINT_STATS
, 0, 0 },
44 struct verify_options verify
;
45 struct convert_options convert
;
48 static error_t
parse_opt(int key
, char *arg
, struct argp_state
*state
)
50 struct arguments
*options
= (struct arguments
*) state
->input
;
54 state
->child_inputs
[0] = options
->verify
.barvinok
;
55 state
->child_inputs
[1] = &options
->verify
;
56 state
->child_inputs
[2] = &options
->convert
;
59 options
->function
= 0;
60 options
->print_stats
= 0;
63 options
->print_stats
= 1;
69 options
->function
= 1;
75 return ARGP_ERR_UNKNOWN
;
80 static int verify(Polyhedron
*P
, Polyhedron
*C
, evalue
*EP
, skewed_gen_fun
*gf
,
87 CS
= check_poly_context_scan(P
, &C
, C
->Dimension
, &options
->verify
);
89 p
= Vector_Alloc(P
->Dimension
+2);
90 value_set_si(p
->p
[P
->Dimension
+1], 1);
92 /* S = scanning list of polyhedra */
93 S
= Polyhedron_Scan(P
, C
, options
->verify
.barvinok
->MaxRays
);
95 check_poly_init(C
, &options
->verify
);
97 /******* CHECK NOW *********/
99 if (!options
->series
|| options
->function
) {
100 if (!check_poly_EP(S
, CS
, EP
, 0, C
->Dimension
, 0, p
->p
,
104 if (!check_poly_gf(S
, CS
, gf
, 0, C
->Dimension
, 0, p
->p
,
112 fprintf(stderr
,"Check failed !\n");
114 if (!options
->verify
.print_all
)
126 /* frees M and Minv */
127 static void apply_transformation(Polyhedron
**P
, Polyhedron
**C
,
128 bool free_P
, bool free_C
,
129 Matrix
*M
, Matrix
*Minv
, Matrix
**inv
,
130 barvinok_options
*options
)
135 M2
= align_matrix(M
, (*P
)->Dimension
+ 1);
137 *P
= Polyhedron_Preimage(*P
, M2
, options
->MaxRays
);
143 *C
= Polyhedron_Preimage(*C
, M
, options
->MaxRays
);
151 *inv
= Matrix_Alloc(Minv
->NbRows
, T
->NbColumns
);
152 Matrix_Product(Minv
, T
, *inv
);
159 /* Since we have "compressed" the parameters (in case there were
160 * any equalities), the result is independent of the coordinates in the
161 * coordinate subspace spanned by the lines. We can therefore assume
162 * these coordinates are zero and compute the inverse image of the map
163 * from a lower dimensional space that adds zeros in the appropriate
166 static void remove_lines(Polyhedron
*C
, Matrix
**M
, Matrix
**Minv
)
168 Matrix
*L
= Matrix_Alloc(C
->Dimension
+1, C
->Dimension
+1);
169 for (int r
= 0; r
< C
->NbBid
; ++r
)
170 Vector_Copy(C
->Ray
[r
]+1, L
->p
[r
], C
->Dimension
);
171 unimodular_complete(L
, C
->NbBid
);
172 assert(value_one_p(L
->p
[C
->Dimension
][C
->Dimension
]));
173 assert(First_Non_Zero(L
->p
[C
->Dimension
], C
->Dimension
) == -1);
174 Matrix_Transposition(L
);
175 assert(First_Non_Zero(L
->p
[C
->Dimension
], C
->Dimension
) == -1);
177 *M
= Matrix_Alloc(C
->Dimension
+1, C
->Dimension
-C
->NbBid
+1);
178 for (int i
= 0; i
< C
->Dimension
+1; ++i
)
179 Vector_Copy(L
->p
[i
]+C
->NbBid
, (*M
)->p
[i
], C
->Dimension
-C
->NbBid
+1);
181 Matrix
*Linv
= Matrix_Alloc(C
->Dimension
+1, C
->Dimension
+1);
182 int ok
= Matrix_Inverse(L
, Linv
);
186 *Minv
= Matrix_Alloc(C
->Dimension
-C
->NbBid
+1, C
->Dimension
+1);
187 for (int i
= C
->NbBid
; i
< C
->Dimension
+1; ++i
)
188 Vector_AntiScale(Linv
->p
[i
], (*Minv
)->p
[i
-C
->NbBid
],
189 Linv
->p
[C
->Dimension
][C
->Dimension
], C
->Dimension
+1);
193 static skewed_gen_fun
*series(Polyhedron
*P
, Polyhedron
* C
,
194 barvinok_options
*options
)
203 /* Compute true context */
204 C1
= Polyhedron_Project(P
, C
->Dimension
);
205 C2
= DomainIntersection(C
, C1
, options
->MaxRays
);
208 POL_ENSURE_VERTICES(C2
);
209 if (C2
->NbBid
!= 0) {
211 Matrix
*M
, *Minv
, *M2
;
213 if (C2
->NbEq
|| P
->NbEq
) {
214 /* We remove all equalities to be sure all lines are unit vectors */
216 remove_all_equalities(&PT
, &CT
, &CP
, NULL
, C2
->Dimension
,
223 inv
= left_inverse(CP
, &eq
);
229 div
= Matrix_Alloc(inv
->NbRows
-1, inv
->NbColumns
+1);
230 for (int i
= 0; i
< inv
->NbRows
-1; ++i
) {
231 Vector_Gcd(inv
->p
[i
], inv
->NbColumns
, &tmp
);
232 if (mpz_divisible_p(tmp
,
233 inv
->p
[inv
->NbRows
-1][inv
->NbColumns
-1]))
235 Vector_Copy(inv
->p
[i
], div
->p
[d
], inv
->NbColumns
);
236 value_assign(div
->p
[d
][inv
->NbColumns
],
237 inv
->p
[inv
->NbRows
-1][inv
->NbColumns
-1]);
249 POL_ENSURE_VERTICES(C2
);
253 remove_lines(C2
, &M
, &Minv
);
254 apply_transformation(&PT
, &C2
, PT
!= P
, C2
!= C
, M
, Minv
, &inv
,
258 POL_ENSURE_VERTICES(C2
);
259 if (!Polyhedron_has_revlex_positive_rays(C2
, C2
->Dimension
)) {
263 Constraints
= Matrix_Alloc(C2
->NbConstraints
, C2
->Dimension
+1);
264 for (int i
= 0; i
< C2
->NbConstraints
; ++i
)
265 Vector_Copy(C2
->Constraint
[i
]+1, Constraints
->p
[i
], C2
->Dimension
);
266 left_hermite(Constraints
, &H
, &Q
, &U
);
267 Matrix_Free(Constraints
);
269 for (int i
= 0; i
< C2
->Dimension
/2; ++i
)
270 Vector_Exchange(Q
->p
[i
], Q
->p
[C2
->Dimension
-1-i
], C2
->Dimension
);
273 Matrix
*M
= Matrix_Alloc(C2
->Dimension
+1, C2
->Dimension
+1);
275 int ok
= Matrix_Inverse(U
, M
);
279 apply_transformation(&PT
, &C2
, PT
!= P
, C2
!= C
, M
, Q
, &inv
, options
);
281 gf
= barvinok_series_with_options(PT
, C2
, options
);
285 return new skewed_gen_fun(gf
, inv
, eq
, div
);
288 int main(int argc
, char **argv
)
293 skewed_gen_fun
*gf
= NULL
;
295 int print_solution
= 1;
297 struct arguments options
;
298 static struct argp_child argp_children
[] = {
299 { &barvinok_argp
, 0, 0, 0 },
300 { &verify_argp
, 0, "verification", BV_GRP_LAST
+1 },
301 { &convert_argp
, 0, "output conversion", BV_GRP_LAST
+2 },
304 static struct argp argp
= { argp_options
, parse_opt
, 0, 0, argp_children
};
305 struct barvinok_options
*bv_options
= barvinok_options_new_with_defaults();
307 options
.verify
.barvinok
= bv_options
;
308 set_program_name(argv
[0]);
309 argp_parse(&argp
, argc
, argv
, 0, 0, &options
);
313 A
= Constraints2Polyhedron(M
, bv_options
->MaxRays
);
317 C
= Constraints2Polyhedron(M
, bv_options
->MaxRays
);
319 param_name
= Read_ParamNames(stdin
, C
->Dimension
);
321 if (options
.verify
.verify
) {
322 verify_options_set_range(&options
.verify
, A
->Dimension
);
323 if (!bv_options
->verbose
)
327 if (print_solution
&& bv_options
->verbose
) {
328 Polyhedron_Print(stdout
, P_VALUE_FMT
, A
);
329 Polyhedron_Print(stdout
, P_VALUE_FMT
, C
);
332 if (options
.series
) {
333 gf
= series(A
, C
, bv_options
);
334 if (print_solution
) {
335 gf
->print(cout
, C
->Dimension
, param_name
);
338 if (options
.function
) {
341 print_evalue(stdout
, EP
, param_name
);
344 EP
= barvinok_enumerate_with_options(A
, C
, bv_options
);
345 if (evalue_convert(EP
, &options
.convert
, bv_options
->verbose
,
346 C
->Dimension
, param_name
))
349 printf("\nSize: %d\n", evalue_size(EP
));
351 print_evalue(stdout
, EP
, param_name
);
354 if (options
.verify
.verify
) {
355 options
.verify
.params
= param_name
;
356 result
= verify(A
, C
, EP
, gf
, &options
);
364 if (options
.print_stats
)
365 barvinok_stats_print(options
.verify
.barvinok
->stats
, stdout
);
367 Free_ParamNames(param_name
, C
->Dimension
);
370 barvinok_options_free(bv_options
);