4 #include <barvinok/util.h>
5 #include "conversion.h"
6 #include "evalue_convert.h"
7 #include "lattice_point.h"
19 static struct argp_option argp_options
[] = {
20 { "convert", 'c', 0, 0, "convert fractionals to periodics" },
21 { "combine", 'C', 0, 0 },
22 { "floor", 'f', 0, 0, "convert fractionals to floorings" },
23 { "list", 'l', 0, 0 },
24 { "latex", 'L', 0, 0 },
25 { "range-reduction", 'R', 0, 0 },
29 static error_t
parse_opt(int key
, char *arg
, struct argp_state
*state
)
31 struct convert_options
*options
= (struct convert_options
*)state
->input
;
63 return ARGP_ERR_UNKNOWN
;
68 struct argp convert_argp
= {
69 argp_options
, parse_opt
, 0, 0
72 static int type_offset(enode
*p
)
74 return p
->type
== fractional
? 1 :
75 p
->type
== flooring
? 1 : 0;
78 static Lattice
*extract_lattice(evalue
*e
, int nparam
)
84 /* For some mysterious reason, SolveDiophantine expects an extra
85 * [0 0 0 1] row in its input matrix.
87 Matrix
*M
= Matrix_Alloc(2, nparam
+1+1);
88 value_set_si(M
->p
[1][nparam
+1], 1);
89 evalue_extract_affine(e
, M
->p
[0], M
->p
[0]+nparam
+1, M
->p
[0]+nparam
);
91 value_set_si(M
->p
[0][nparam
+1], 0);
92 SolveDiophantine(M
, &U
, &X
);
95 L
= Matrix_Alloc(nparam
+1, nparam
+1);
96 for (i
= 0; i
< nparam
; ++i
)
97 Vector_Copy(U
->p
[i
], L
->p
[i
], nparam
);
98 value_set_si(L
->p
[nparam
][nparam
], 1);
103 /* Returns a lattice such that the quasi-polynomial e can be represented
104 * by a list of polynomials, one for each point in the fundamental
105 * parallelepiped of the lattice.
106 * If e is a polynomial, then this function returns NULL.
108 static Lattice
*extract_common_lattice(evalue
*e
, Lattice
*L
, int nparam
)
112 if (value_notzero_p(e
->d
))
115 assert(e
->x
.p
->type
!= partition
);
117 if (e
->x
.p
->type
== fractional
) {
118 Lattice
*L2
= extract_lattice(&e
->x
.p
->arr
[0], nparam
);
122 Lattice
*L3
= LatticeIntersection(L
, L2
);
129 offset
= type_offset(e
->x
.p
);
130 for (i
= e
->x
.p
->size
-1; i
>= offset
; --i
)
131 L
= extract_common_lattice(&e
->x
.p
->arr
[i
], L
, nparam
);
135 /* Construct an evalue dst from src corresponding to the coset represented
136 * by coset, a vector of size number of parameters plus one.
137 * The final value in this vector should be 1.
139 static void evalue_coset(const evalue
*src
, const Vector
*coset
, evalue
*dst
)
141 if (value_notzero_p(src
->d
)) {
142 value_assign(dst
->d
, src
->d
);
143 value_init(dst
->x
.n
);
144 value_assign(dst
->x
.n
, src
->x
.n
);
148 if (src
->x
.p
->type
== fractional
) {
151 Vector
*c
= Vector_Alloc(coset
->Size
);
154 evalue_extract_affine(&src
->x
.p
->arr
[0], c
->p
, c
->p
+c
->Size
-1, &f
.d
);
155 Inner_Product(coset
->p
, c
->p
, c
->Size
, &f
.x
.n
);
157 mpz_fdiv_r(f
.x
.n
, f
.x
.n
, f
.d
);
159 evalue_set_si(dst
, 0, 1);
160 for (int i
= src
->x
.p
->size
-1; i
>= 1; --i
) {
163 evalue_coset(&src
->x
.p
->arr
[i
], coset
, &t
);
165 free_evalue_refs(&t
);
167 free_evalue_refs(&f
);
171 if (src
->x
.p
->type
== relation
) {
172 evalue
*arg
= evalue_eval(&src
->x
.p
->arr
[0], coset
->p
);
173 if (value_zero_p(arg
->x
.n
))
174 evalue_coset(&src
->x
.p
->arr
[1], coset
, dst
);
175 else if (src
->x
.p
->size
> 2)
176 evalue_coset(&src
->x
.p
->arr
[2], coset
, dst
);
178 evalue_set_si(dst
, 0, 1);
183 assert(src
->x
.p
->type
== polynomial
);
184 value_set_si(dst
->d
, 0);
185 dst
->x
.p
= new_enode(src
->x
.p
->type
, src
->x
.p
->size
, src
->x
.p
->pos
);
186 for (int i
= 0; i
< src
->x
.p
->size
; ++i
)
187 evalue_coset(&src
->x
.p
->arr
[i
], coset
, &dst
->x
.p
->arr
[i
]);
191 static void evalue_print_list_evalue(FILE *out
, evalue
*e
, int nparam
,
194 cerr
<< "not supported" << endl
;
197 static void evalue_print_list_evalue(FILE *out
, evalue
*e
, int nparam
,
201 L
= extract_common_lattice(e
, NULL
, nparam
);
203 print_evalue(out
, e
, params
);
205 fdostream
os(dup(fileno(out
)));
206 Vector
*coset
= Vector_Alloc(nparam
+1);
207 value_set_si(coset
->p
[nparam
], 1);
209 Matrix_Transposition(L
);
210 matrix2zz(L
, R
, nparam
, nparam
);
211 fprintf(out
, "Lattice:\n");
213 unsigned long det
= to_ulong(abs(determinant(R
)));
215 Matrix
*points
= Matrix_Alloc(det
, nparam
);
216 lattice_points_fixed(coset
->p
, coset
->p
, L
, L
, points
, det
);
217 matrix2zz(points
, vertices
, points
->NbRows
, points
->NbColumns
);
220 for (int i
= 0; i
< vertices
.NumRows(); ++i
) {
222 os
<< vertices
[i
] << endl
;
223 zz2values(vertices
[i
], coset
->p
);
225 evalue_coset(e
, coset
, &t
);
226 print_evalue(out
, &t
, params
);
227 free_evalue_refs(&t
);
234 static void evalue_print_list(FILE *out
, evalue
*e
, int nparam
, char **params
)
237 assert(value_zero_p(e
->d
));
238 assert(e
->x
.p
->type
== partition
);
240 for (i
= 0; i
< e
->x
.p
->size
/2; i
++) {
241 Print_Domain(out
, EVALUE_DOMAIN(e
->x
.p
->arr
[2*i
]), params
);
242 evalue_print_list_evalue(out
, &e
->x
.p
->arr
[2*i
+1], nparam
, params
);
246 static void print_domain_latex(std::ostream
& o
, Polyhedron
*D
, int nparam
,
250 for (int i
= 0; i
< D
->NbConstraints
; ++i
) {
251 if (First_Non_Zero(D
->Constraint
[i
]+1, D
->Dimension
) == -1)
256 for (int j
= 0; j
< D
->Dimension
; ++j
) {
257 if (value_zero_p(D
->Constraint
[i
][1+j
]))
260 if (!fc
&& value_pos_p(D
->Constraint
[i
][1+j
]))
262 if (value_mone_p(D
->Constraint
[i
][1+j
]))
264 else if (!value_one_p(D
->Constraint
[i
][1+j
]))
265 o
<< VALUE_TO_INT(D
->Constraint
[i
][1+j
]);
266 o
<< " " << params
[j
];
269 if (!fc
&& value_pos_p(D
->Constraint
[i
][1+D
->Dimension
]))
271 if (value_notzero_p(D
->Constraint
[i
][1+D
->Dimension
]))
272 o
<< VALUE_TO_INT(D
->Constraint
[i
][1+D
->Dimension
]);
273 if (value_zero_p(D
->Constraint
[i
][0]))
281 static void evalue_print_latex(std::ostream
& o
, const evalue
*e
,
282 int first
, int nested
,
283 const string
& suffix1
, const string
& suffix2
,
284 int nparam
, char **params
);
286 static void evalue_print_poly_latex1(std::ostream
& o
, const evalue
*e
,
287 int first
, int nested
, const string
& base
,
288 const string
& suffix1
, const string
& suffix2
,
289 int nparam
, char **params
)
291 int offset
= type_offset(e
->x
.p
);
292 for (int i
= e
->x
.p
->size
-1; i
>= offset
; --i
) {
293 std::ostringstream strm
;
298 strm
<< "^" << (i
-offset
);
299 evalue_print_latex(o
, &e
->x
.p
->arr
[i
], first
, nested
,
300 strm
.str(), suffix2
, nparam
, params
);
305 static void evalue_print_poly_latex2(std::ostream
& o
, const evalue
*e
,
306 int first
, int nested
, const string
& base
,
307 const string
& suffix1
, const string
& suffix2
,
308 int nparam
, char **params
)
310 int offset
= type_offset(e
->x
.p
);
311 for (int i
= e
->x
.p
->size
-1; i
>= offset
; --i
) {
312 std::ostringstream strm
;
317 strm
<< "^" << (i
-offset
);
318 evalue_print_latex(o
, &e
->x
.p
->arr
[i
], first
, nested
,
319 suffix1
, strm
.str(), nparam
, params
);
324 static void evalue_print_latex(std::ostream
& o
, const evalue
*e
,
325 int first
, int nested
,
326 const string
& suffix1
, const string
&suffix2
,
327 int nparam
, char **params
)
329 if (value_notzero_p(e
->d
)) {
330 if (value_zero_p(e
->x
.n
)) {
337 value_absolute(tmp
, e
->x
.n
);
338 if (!first
&& value_pos_p(e
->x
.n
))
340 if (value_neg_p(e
->x
.n
))
342 if (value_one_p(e
->d
)) {
343 if (!value_one_p(tmp
) ||
344 (suffix1
.length() == 0 && suffix2
.length() == 0))
345 o
<< VALUE_TO_INT(tmp
);
348 if (value_one_p(tmp
) && suffix1
.length() != 0)
351 o
<< VALUE_TO_INT(tmp
);
353 << VALUE_TO_INT(e
->d
) << "}";
355 if (!value_one_p(tmp
)) {
365 switch (e
->x
.p
->type
) {
367 o
<< "\\begin{cases}\n";
368 for (int i
= 0; i
< e
->x
.p
->size
/2; ++i
) {
371 evalue_print_latex(o
, &e
->x
.p
->arr
[2*i
+1], 1, 0,
372 suffix1
, suffix2
, nparam
, params
);
373 o
<< "& \\text{if $";
374 print_domain_latex(o
, EVALUE_DOMAIN(e
->x
.p
->arr
[2*i
]), nparam
, params
);
377 o
<< "\\end{cases}\n";
380 evalue_print_poly_latex1(o
, e
, first
, nested
, params
[e
->x
.p
->pos
-1],
381 suffix1
, suffix2
, nparam
, params
);
384 std::ostringstream strm
;
385 strm
<< "\\fractional{";
386 evalue_print_latex(strm
, &e
->x
.p
->arr
[0], 1, 1, "", "", nparam
, params
);
388 evalue_print_poly_latex2(o
, e
, first
, nested
,
389 strm
.str(), suffix1
, suffix2
, nparam
, params
);
398 static void evalue_print_latex(FILE *out
, const evalue
*e
, int nparam
,
401 cerr
<< "not supported" << endl
;
404 static void evalue_print_latex(FILE *out
, const evalue
*e
, int nparam
,
407 fdostream
os(dup(fileno(out
)));
408 evalue_print_latex(os
, e
, 1, 0, "", "", nparam
, params
);
412 int evalue_convert(evalue
*EP
, struct convert_options
*options
,
413 int verbose
, unsigned nparam
, char **params
)
416 if (options
->combine
)
419 evalue_range_reduction(EP
);
421 print_evalue(stdout
, EP
, params
);
424 if (options
->floor
) {
425 fprintf(stderr
, "WARNING: floor conversion not supported\n");
426 evalue_frac2floor(EP
);
428 print_evalue(stdout
, EP
, params
);
429 } else if (options
->list
&& params
) {
430 evalue_print_list(stdout
, EP
, nparam
, params
);
432 } else if (options
->latex
&& params
) {
433 evalue_print_latex(stdout
, EP
, nparam
, params
);
435 } else if (options
->convert
) {
436 evalue_mod2table(EP
, nparam
);
438 print_evalue(stdout
, EP
, params
);