rename isl_upoly to isl_poly
[isl.git] / isl_output.c
blob64ac554443b607074c7c8fa533f5f7a13c8b93c3
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
4 * Copyright 2012-2013 Ecole Normale Superieure
6 * Use of this software is governed by the MIT license
8 * Written by Sven Verdoolaege, K.U.Leuven, Departement
9 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
10 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
11 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
12 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
15 #include <stdlib.h>
16 #include <string.h>
17 #include <isl_ctx_private.h>
18 #include <isl_map_private.h>
19 #include <isl/set.h>
20 #include <isl_seq.h>
21 #include <isl_polynomial_private.h>
22 #include <isl_printer_private.h>
23 #include <isl_space_private.h>
24 #include <isl_mat_private.h>
25 #include <isl_vec_private.h>
26 #include <isl/union_set.h>
27 #include <isl/union_map.h>
28 #include <isl/constraint.h>
29 #include <isl_local_space_private.h>
30 #include <isl_aff_private.h>
31 #include <isl_val_private.h>
32 #include <isl_constraint_private.h>
33 #include <isl/ast_build.h>
34 #include <isl_sort.h>
35 #include <isl_output_private.h>
37 #include <bset_to_bmap.c>
38 #include <set_to_map.c>
39 #include <uset_to_umap.c>
41 static const char *s_to[2] = { " -> ", " \\to " };
42 static const char *s_and[2] = { " and ", " \\wedge " };
43 static const char *s_or[2] = { " or ", " \\vee " };
44 static const char *s_le[2] = { "<=", "\\le" };
45 static const char *s_ge[2] = { ">=", "\\ge" };
46 static const char *s_open_set[2] = { "{ ", "\\{\\, " };
47 static const char *s_close_set[2] = { " }", " \\,\\}" };
48 static const char *s_open_list[2] = { "[", "(" };
49 static const char *s_close_list[2] = { "]", ")" };
50 static const char *s_such_that[2] = { " : ", " \\mid " };
51 static const char *s_open_exists[2] = { "exists (", "\\exists \\, " };
52 static const char *s_close_exists[2] = { ")", "" };
53 static const char *s_div_prefix[2] = { "e", "\\alpha_" };
54 static const char *s_mod[2] = { "mod", "\\bmod" };
55 static const char *s_param_prefix[2] = { "p", "p_" };
56 static const char *s_input_prefix[2] = { "i", "i_" };
57 static const char *s_output_prefix[2] = { "o", "o_" };
59 static __isl_give isl_printer *print_constraint_polylib(
60 struct isl_basic_map *bmap, int ineq, int n, __isl_take isl_printer *p)
62 int i;
63 unsigned n_in = isl_basic_map_dim(bmap, isl_dim_in);
64 unsigned n_out = isl_basic_map_dim(bmap, isl_dim_out);
65 unsigned nparam = isl_basic_map_dim(bmap, isl_dim_param);
66 isl_int *c = ineq ? bmap->ineq[n] : bmap->eq[n];
68 p = isl_printer_start_line(p);
69 p = isl_printer_print_int(p, ineq);
70 for (i = 0; i < n_out; ++i) {
71 p = isl_printer_print_str(p, " ");
72 p = isl_printer_print_isl_int(p, c[1+nparam+n_in+i]);
74 for (i = 0; i < n_in; ++i) {
75 p = isl_printer_print_str(p, " ");
76 p = isl_printer_print_isl_int(p, c[1+nparam+i]);
78 for (i = 0; i < bmap->n_div; ++i) {
79 p = isl_printer_print_str(p, " ");
80 p = isl_printer_print_isl_int(p, c[1+nparam+n_in+n_out+i]);
82 for (i = 0; i < nparam; ++i) {
83 p = isl_printer_print_str(p, " ");
84 p = isl_printer_print_isl_int(p, c[1+i]);
86 p = isl_printer_print_str(p, " ");
87 p = isl_printer_print_isl_int(p, c[0]);
88 p = isl_printer_end_line(p);
89 return p;
92 static __isl_give isl_printer *print_constraints_polylib(
93 struct isl_basic_map *bmap, __isl_take isl_printer *p)
95 int i;
97 p = isl_printer_set_isl_int_width(p, 5);
99 for (i = 0; i < bmap->n_eq; ++i)
100 p = print_constraint_polylib(bmap, 0, i, p);
101 for (i = 0; i < bmap->n_ineq; ++i)
102 p = print_constraint_polylib(bmap, 1, i, p);
104 return p;
107 static __isl_give isl_printer *bset_print_constraints_polylib(
108 struct isl_basic_set *bset, __isl_take isl_printer *p)
110 return print_constraints_polylib(bset_to_bmap(bset), p);
113 static __isl_give isl_printer *isl_basic_map_print_polylib(
114 __isl_keep isl_basic_map *bmap, __isl_take isl_printer *p, int ext)
116 unsigned total = isl_basic_map_total_dim(bmap);
117 p = isl_printer_start_line(p);
118 p = isl_printer_print_int(p, bmap->n_eq + bmap->n_ineq);
119 p = isl_printer_print_str(p, " ");
120 p = isl_printer_print_int(p, 1 + total + 1);
121 if (ext) {
122 p = isl_printer_print_str(p, " ");
123 p = isl_printer_print_int(p,
124 isl_basic_map_dim(bmap, isl_dim_out));
125 p = isl_printer_print_str(p, " ");
126 p = isl_printer_print_int(p,
127 isl_basic_map_dim(bmap, isl_dim_in));
128 p = isl_printer_print_str(p, " ");
129 p = isl_printer_print_int(p,
130 isl_basic_map_dim(bmap, isl_dim_div));
131 p = isl_printer_print_str(p, " ");
132 p = isl_printer_print_int(p,
133 isl_basic_map_dim(bmap, isl_dim_param));
135 p = isl_printer_end_line(p);
136 return print_constraints_polylib(bmap, p);
139 static __isl_give isl_printer *isl_basic_set_print_polylib(
140 __isl_keep isl_basic_set *bset, __isl_take isl_printer *p, int ext)
142 return isl_basic_map_print_polylib(bset_to_bmap(bset), p, ext);
145 static __isl_give isl_printer *isl_map_print_polylib(__isl_keep isl_map *map,
146 __isl_take isl_printer *p, int ext)
148 int i;
150 p = isl_printer_start_line(p);
151 p = isl_printer_print_int(p, map->n);
152 p = isl_printer_end_line(p);
153 for (i = 0; i < map->n; ++i) {
154 p = isl_printer_start_line(p);
155 p = isl_printer_end_line(p);
156 p = isl_basic_map_print_polylib(map->p[i], p, ext);
158 return p;
161 static __isl_give isl_printer *isl_set_print_polylib(__isl_keep isl_set *set,
162 __isl_take isl_printer *p, int ext)
164 return isl_map_print_polylib(set_to_map(set), p, ext);
167 static int count_same_name(__isl_keep isl_space *space,
168 enum isl_dim_type type, unsigned pos, const char *name)
170 enum isl_dim_type t;
171 unsigned p, s;
172 int count = 0;
174 for (t = isl_dim_param; t <= type && t <= isl_dim_out; ++t) {
175 s = t == type ? pos : isl_space_dim(space, t);
176 for (p = 0; p < s; ++p) {
177 const char *n = isl_space_get_dim_name(space, t, p);
178 if (n && !strcmp(n, name))
179 count++;
182 return count;
185 /* Print the name of the variable of type "type" and position "pos"
186 * in "space" to "p".
188 static __isl_give isl_printer *print_name(__isl_keep isl_space *space,
189 __isl_take isl_printer *p, enum isl_dim_type type, unsigned pos,
190 int latex)
192 const char *name;
193 char buffer[20];
194 int primes;
196 name = type == isl_dim_div ? NULL
197 : isl_space_get_dim_name(space, type, pos);
199 if (!name) {
200 const char *prefix;
201 if (type == isl_dim_param)
202 prefix = s_param_prefix[latex];
203 else if (type == isl_dim_div)
204 prefix = s_div_prefix[latex];
205 else if (isl_space_is_set(space) || type == isl_dim_in)
206 prefix = s_input_prefix[latex];
207 else
208 prefix = s_output_prefix[latex];
209 snprintf(buffer, sizeof(buffer), "%s%d", prefix, pos);
210 name = buffer;
212 primes = count_same_name(space, name == buffer ? isl_dim_div : type,
213 pos, name);
214 p = isl_printer_print_str(p, name);
215 while (primes-- > 0)
216 p = isl_printer_print_str(p, "'");
217 return p;
220 static enum isl_dim_type pos2type(__isl_keep isl_space *space, unsigned *pos)
222 enum isl_dim_type type;
223 unsigned n_in = isl_space_dim(space, isl_dim_in);
224 unsigned n_out = isl_space_dim(space, isl_dim_out);
225 unsigned nparam = isl_space_dim(space, isl_dim_param);
227 if (*pos < 1 + nparam) {
228 type = isl_dim_param;
229 *pos -= 1;
230 } else if (*pos < 1 + nparam + n_in) {
231 type = isl_dim_in;
232 *pos -= 1 + nparam;
233 } else if (*pos < 1 + nparam + n_in + n_out) {
234 type = isl_dim_out;
235 *pos -= 1 + nparam + n_in;
236 } else {
237 type = isl_dim_div;
238 *pos -= 1 + nparam + n_in + n_out;
241 return type;
244 /* Can the div expression of the integer division at position "row" of "div"
245 * be printed?
246 * In particular, are the div expressions available and does the selected
247 * variable have a known explicit representation?
248 * Furthermore, the Omega format does not allow any div expressions
249 * to be printed.
251 static isl_bool can_print_div_expr(__isl_keep isl_printer *p,
252 __isl_keep isl_mat *div, int pos)
254 if (p->output_format == ISL_FORMAT_OMEGA)
255 return isl_bool_false;
256 if (!div)
257 return isl_bool_false;
258 return !isl_int_is_zero(div->row[pos][0]);
261 static __isl_give isl_printer *print_div(__isl_keep isl_space *dim,
262 __isl_keep isl_mat *div, int pos, __isl_take isl_printer *p);
264 static __isl_give isl_printer *print_term(__isl_keep isl_space *space,
265 __isl_keep isl_mat *div,
266 isl_int c, unsigned pos, __isl_take isl_printer *p, int latex)
268 enum isl_dim_type type;
269 int print_div_def;
271 if (!p || !space)
272 return isl_printer_free(p);
274 if (pos == 0)
275 return isl_printer_print_isl_int(p, c);
277 type = pos2type(space, &pos);
278 print_div_def = type == isl_dim_div && can_print_div_expr(p, div, pos);
280 if (isl_int_is_one(c))
282 else if (isl_int_is_negone(c))
283 p = isl_printer_print_str(p, "-");
284 else {
285 p = isl_printer_print_isl_int(p, c);
286 if (p->output_format == ISL_FORMAT_C || print_div_def)
287 p = isl_printer_print_str(p, "*");
289 if (print_div_def)
290 p = print_div(space, div, pos, p);
291 else
292 p = print_name(space, p, type, pos, latex);
293 return p;
296 static __isl_give isl_printer *print_affine_of_len(__isl_keep isl_space *dim,
297 __isl_keep isl_mat *div,
298 __isl_take isl_printer *p, isl_int *c, int len)
300 int i;
301 int first;
303 for (i = 0, first = 1; i < len; ++i) {
304 int flip = 0;
305 if (isl_int_is_zero(c[i]))
306 continue;
307 if (!first) {
308 if (isl_int_is_neg(c[i])) {
309 flip = 1;
310 isl_int_neg(c[i], c[i]);
311 p = isl_printer_print_str(p, " - ");
312 } else
313 p = isl_printer_print_str(p, " + ");
315 first = 0;
316 p = print_term(dim, div, c[i], i, p, 0);
317 if (flip)
318 isl_int_neg(c[i], c[i]);
320 if (first)
321 p = isl_printer_print_str(p, "0");
322 return p;
325 /* Print an affine expression "c"
326 * to "p", with the variable names taken from "space" and
327 * the integer division definitions taken from "div".
329 static __isl_give isl_printer *print_affine(__isl_take isl_printer *p,
330 __isl_keep isl_space *space, __isl_keep isl_mat *div, isl_int *c)
332 unsigned n_div;
333 unsigned len;
335 if (!space || !div)
336 return isl_printer_free(p);
337 n_div = isl_mat_rows(div);
338 len = 1 + isl_space_dim(space, isl_dim_all) + n_div;
339 return print_affine_of_len(space, div, p, c, len);
342 /* offset is the offset of local_space inside data->type of data->space.
344 static __isl_give isl_printer *print_nested_var_list(__isl_take isl_printer *p,
345 __isl_keep isl_space *local_space, enum isl_dim_type local_type,
346 struct isl_print_space_data *data, int offset)
348 int i;
350 if (data->space != local_space && local_type == isl_dim_out)
351 offset += local_space->n_in;
353 for (i = 0; i < isl_space_dim(local_space, local_type); ++i) {
354 if (i)
355 p = isl_printer_print_str(p, ", ");
356 if (data->print_dim)
357 p = data->print_dim(p, data, offset + i);
358 else
359 p = print_name(data->space, p, data->type, offset + i,
360 data->latex);
362 return p;
365 static __isl_give isl_printer *print_var_list(__isl_take isl_printer *p,
366 __isl_keep isl_space *space, enum isl_dim_type type)
368 struct isl_print_space_data data = { .space = space, .type = type };
370 return print_nested_var_list(p, space, type, &data, 0);
373 static __isl_give isl_printer *print_nested_map_dim(__isl_take isl_printer *p,
374 __isl_keep isl_space *local_dim,
375 struct isl_print_space_data *data, int offset);
377 static __isl_give isl_printer *print_nested_tuple(__isl_take isl_printer *p,
378 __isl_keep isl_space *local_space, enum isl_dim_type local_type,
379 struct isl_print_space_data *data, int offset)
381 const char *name = NULL;
382 unsigned n = isl_space_dim(local_space, local_type);
383 if ((local_type == isl_dim_in || local_type == isl_dim_out)) {
384 name = isl_space_get_tuple_name(local_space, local_type);
385 if (name) {
386 if (data->latex)
387 p = isl_printer_print_str(p, "\\mathrm{");
388 p = isl_printer_print_str(p, name);
389 if (data->latex)
390 p = isl_printer_print_str(p, "}");
393 if (!data->latex || n != 1 || name)
394 p = isl_printer_print_str(p, s_open_list[data->latex]);
395 if ((local_type == isl_dim_in || local_type == isl_dim_out) &&
396 local_space->nested[local_type - isl_dim_in]) {
397 if (data->space != local_space && local_type == isl_dim_out)
398 offset += local_space->n_in;
399 p = print_nested_map_dim(p,
400 local_space->nested[local_type - isl_dim_in],
401 data, offset);
402 } else
403 p = print_nested_var_list(p, local_space, local_type, data,
404 offset);
405 if (!data->latex || n != 1 || name)
406 p = isl_printer_print_str(p, s_close_list[data->latex]);
407 return p;
410 static __isl_give isl_printer *print_tuple(__isl_keep isl_space *dim,
411 __isl_take isl_printer *p, enum isl_dim_type type,
412 struct isl_print_space_data *data)
414 data->space = dim;
415 data->type = type;
416 return print_nested_tuple(p, dim, type, data, 0);
419 static __isl_give isl_printer *print_nested_map_dim(__isl_take isl_printer *p,
420 __isl_keep isl_space *local_dim,
421 struct isl_print_space_data *data, int offset)
423 p = print_nested_tuple(p, local_dim, isl_dim_in, data, offset);
424 p = isl_printer_print_str(p, s_to[data->latex]);
425 p = print_nested_tuple(p, local_dim, isl_dim_out, data, offset);
427 return p;
430 __isl_give isl_printer *isl_print_space(__isl_keep isl_space *space,
431 __isl_take isl_printer *p, int rational,
432 struct isl_print_space_data *data)
434 if (rational && !data->latex)
435 p = isl_printer_print_str(p, "rat: ");
436 if (isl_space_is_params(space))
438 else if (isl_space_is_set(space))
439 p = print_tuple(space, p, isl_dim_set, data);
440 else {
441 p = print_tuple(space, p, isl_dim_in, data);
442 p = isl_printer_print_str(p, s_to[data->latex]);
443 p = print_tuple(space, p, isl_dim_out, data);
446 return p;
449 static __isl_give isl_printer *print_omega_parameters(
450 __isl_keep isl_space *space, __isl_take isl_printer *p)
452 if (isl_space_dim(space, isl_dim_param) == 0)
453 return p;
455 p = isl_printer_start_line(p);
456 p = isl_printer_print_str(p, "symbolic ");
457 p = print_var_list(p, space, isl_dim_param);
458 p = isl_printer_print_str(p, ";");
459 p = isl_printer_end_line(p);
460 return p;
463 /* Does the inequality constraint following "i" in "bmap"
464 * have an opposite value for the same last coefficient?
465 * "last" is the position of the last coefficient of inequality "i".
466 * If the next constraint is a div constraint, then it is ignored
467 * since div constraints are not printed.
469 static int next_is_opposite(__isl_keep isl_basic_map *bmap, int i, int last)
471 unsigned total = isl_basic_map_total_dim(bmap);
472 unsigned o_div = isl_basic_map_offset(bmap, isl_dim_div);
474 if (i + 1 >= bmap->n_ineq)
475 return 0;
476 if (isl_seq_last_non_zero(bmap->ineq[i + 1], 1 + total) != last)
477 return 0;
478 if (last >= o_div) {
479 isl_bool is_div;
480 is_div = isl_basic_map_is_div_constraint(bmap,
481 bmap->ineq[i + 1], last - o_div);
482 if (is_div < 0)
483 return -1;
484 if (is_div)
485 return 0;
487 return isl_int_abs_eq(bmap->ineq[i][last], bmap->ineq[i + 1][last]) &&
488 !isl_int_eq(bmap->ineq[i][last], bmap->ineq[i + 1][last]);
491 /* Return a string representation of the operator used when
492 * printing a constraint where the LHS is greater than or equal to the LHS
493 * (sign > 0) or smaller than or equal to the LHS (sign < 0).
494 * If "strict" is set, then return the strict version of the comparison
495 * operator.
497 static const char *constraint_op(int sign, int strict, int latex)
499 if (strict)
500 return sign < 0 ? "<" : ">";
501 if (sign < 0)
502 return s_le[latex];
503 else
504 return s_ge[latex];
507 /* Print one side of a constraint "c" to "p", with
508 * the variable names taken from "space" and the integer division definitions
509 * taken from "div".
510 * "last" is the position of the last non-zero coefficient.
511 * Let c' be the result of zeroing out this coefficient, then
512 * the partial constraint
514 * c' op
516 * is printed.
518 static __isl_give isl_printer *print_half_constraint(__isl_take isl_printer *p,
519 __isl_keep isl_space *space, __isl_keep isl_mat *div,
520 isl_int *c, int last, const char *op, int latex)
522 isl_int_set_si(c[last], 0);
523 p = print_affine(p, space, div, c);
525 p = isl_printer_print_str(p, " ");
526 p = isl_printer_print_str(p, op);
527 p = isl_printer_print_str(p, " ");
529 return p;
532 /* Print a constraint "c" to "p", with the variable names
533 * taken from "space" and the integer division definitions taken from "div".
534 * "last" is the position of the last non-zero coefficient, which is
535 * moreover assumed to be negative.
536 * Let c' be the result of zeroing out this coefficient, then
537 * the constraint is printed in the form
539 * -c[last] op c'
541 static __isl_give isl_printer *print_constraint(__isl_take isl_printer *p,
542 __isl_keep isl_space *space, __isl_keep isl_mat *div,
543 isl_int *c, int last, const char *op, int latex)
545 isl_int_abs(c[last], c[last]);
547 p = print_term(space, div, c[last], last, p, latex);
549 p = isl_printer_print_str(p, " ");
550 p = isl_printer_print_str(p, op);
551 p = isl_printer_print_str(p, " ");
553 isl_int_set_si(c[last], 0);
554 p = print_affine(p, space, div, c);
556 return p;
559 /* Given an integer division
561 * floor(f/m)
563 * at position "pos" in "div", print the corresponding modulo expression
565 * (f) mod m
567 * to "p". The variable names are taken from "space", while any
568 * nested integer division definitions are taken from "div".
570 static __isl_give isl_printer *print_mod(__isl_take isl_printer *p,
571 __isl_keep isl_space *space, __isl_keep isl_mat *div, int pos,
572 int latex)
574 if (!p || !div)
575 return isl_printer_free(p);
577 p = isl_printer_print_str(p, "(");
578 p = print_affine_of_len(space, div, p,
579 div->row[pos] + 1, div->n_col - 1);
580 p = isl_printer_print_str(p, ") ");
581 p = isl_printer_print_str(p, s_mod[latex]);
582 p = isl_printer_print_str(p, " ");
583 p = isl_printer_print_isl_int(p, div->row[pos][0]);
584 return p;
587 /* Can the equality constraints "c" be printed as a modulo constraint?
588 * In particular, is of the form
590 * f - a m floor(g/m) = 0,
592 * with c = -a m the coefficient at position "pos"?
593 * Return the position of the corresponding integer division if so.
594 * Return the number of integer divisions if not.
595 * Return -1 on error.
597 * Modulo constraints are currently not printed in C format.
598 * Other than that, "pos" needs to correspond to an integer division
599 * with explicit representation and "c" needs to be a multiple
600 * of the denominator of the integer division.
602 static int print_as_modulo_pos(__isl_keep isl_printer *p,
603 __isl_keep isl_space *space, __isl_keep isl_mat *div, unsigned pos,
604 isl_int c)
606 isl_bool can_print;
607 unsigned n_div;
608 enum isl_dim_type type;
610 if (!p || !space)
611 return -1;
612 n_div = isl_mat_rows(div);
613 if (p->output_format == ISL_FORMAT_C)
614 return n_div;
615 type = pos2type(space, &pos);
616 if (type != isl_dim_div)
617 return n_div;
618 can_print = can_print_div_expr(p, div, pos);
619 if (can_print < 0)
620 return -1;
621 if (!can_print)
622 return n_div;
623 if (!isl_int_is_divisible_by(c, div->row[pos][0]))
624 return n_div;
625 return pos;
628 /* Print equality constraint "c" to "p" as a modulo constraint,
629 * with the variable names taken from "space" and
630 * the integer division definitions taken from "div".
631 * "last" is the position of the last non-zero coefficient, which is
632 * moreover assumed to be negative and a multiple of the denominator
633 * of the corresponding integer division. "div_pos" is the corresponding
634 * position in the sequence of integer divisions.
636 * The equality is of the form
638 * f - a m floor(g/m) = 0.
640 * Print it as
642 * a (g mod m) = -f + a g
644 static __isl_give isl_printer *print_eq_mod_constraint(
645 __isl_take isl_printer *p, __isl_keep isl_space *space,
646 __isl_keep isl_mat *div, unsigned div_pos,
647 isl_int *c, int last, int latex)
649 isl_ctx *ctx;
650 int multiple;
652 ctx = isl_printer_get_ctx(p);
653 isl_int_divexact(c[last], c[last], div->row[div_pos][0]);
654 isl_int_abs(c[last], c[last]);
655 multiple = !isl_int_is_one(c[last]);
656 if (multiple) {
657 p = isl_printer_print_isl_int(p, c[last]);
658 p = isl_printer_print_str(p, "*(");
660 p = print_mod(p, space, div, div_pos, latex);
661 if (multiple)
662 p = isl_printer_print_str(p, ")");
663 p = isl_printer_print_str(p, " = ");
664 isl_seq_combine(c, ctx->negone, c,
665 c[last], div->row[div_pos] + 1, last);
666 isl_int_set_si(c[last], 0);
667 p = print_affine(p, space, div, c);
668 return p;
671 /* Print equality constraint "c" to "p", with the variable names
672 * taken from "space" and the integer division definitions taken from "div".
673 * "last" is the position of the last non-zero coefficient, which is
674 * moreover assumed to be negative.
676 * If possible, print the equality constraint as a modulo constraint.
678 static __isl_give isl_printer *print_eq_constraint(__isl_take isl_printer *p,
679 __isl_keep isl_space *space, __isl_keep isl_mat *div, isl_int *c,
680 int last, int latex)
682 unsigned n_div;
683 int div_pos;
685 n_div = isl_mat_rows(div);
686 div_pos = print_as_modulo_pos(p, space, div, last, c[last]);
687 if (div_pos < 0)
688 return isl_printer_free(p);
689 if (div_pos < n_div)
690 return print_eq_mod_constraint(p, space, div, div_pos,
691 c, last, latex);
692 return print_constraint(p, space, div, c, last, "=", latex);
695 /* Print the constraints of "bmap" to "p".
696 * The names of the variables are taken from "space" and
697 * the integer division definitions are taken from "div".
698 * Div constraints are only printed in "dump" mode.
699 * The constraints are sorted prior to printing (except in "dump" mode).
701 * If x is the last variable with a non-zero coefficient,
702 * then a lower bound
704 * f - a x >= 0
706 * is printed as
708 * a x <= f
710 * while an upper bound
712 * f + a x >= 0
714 * is printed as
716 * a x >= -f
718 * If the next constraint has an opposite sign for the same last coefficient,
719 * then it is printed as
721 * f >= a x
723 * or
725 * -f <= a x
727 * instead. In fact, the "a x" part is not printed explicitly, but
728 * reused from the next constraint, which is therefore treated as
729 * a first constraint in the conjunction.
731 * If the constant term of "f" is -1, then "f" is replaced by "f + 1" and
732 * the comparison operator is replaced by the strict variant.
733 * Essentially, ">= 1" is replaced by "> 0".
735 static __isl_give isl_printer *print_constraints(__isl_keep isl_basic_map *bmap,
736 __isl_keep isl_space *space, __isl_keep isl_mat *div,
737 __isl_take isl_printer *p, int latex)
739 int i;
740 isl_vec *c = NULL;
741 int rational = ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
742 unsigned total = isl_basic_map_total_dim(bmap);
743 unsigned o_div = isl_basic_map_offset(bmap, isl_dim_div);
744 int first = 1;
745 int dump;
747 if (!p)
748 return NULL;
749 bmap = isl_basic_map_copy(bmap);
750 dump = p->dump;
751 if (!dump)
752 bmap = isl_basic_map_sort_constraints(bmap);
753 if (!bmap)
754 goto error;
756 c = isl_vec_alloc(bmap->ctx, 1 + total);
757 if (!c)
758 goto error;
760 for (i = bmap->n_eq - 1; i >= 0; --i) {
761 int l = isl_seq_last_non_zero(bmap->eq[i], 1 + total);
762 if (l < 0) {
763 if (i != bmap->n_eq - 1)
764 p = isl_printer_print_str(p, s_and[latex]);
765 p = isl_printer_print_str(p, "0 = 0");
766 continue;
768 if (!first)
769 p = isl_printer_print_str(p, s_and[latex]);
770 if (isl_int_is_neg(bmap->eq[i][l]))
771 isl_seq_cpy(c->el, bmap->eq[i], 1 + total);
772 else
773 isl_seq_neg(c->el, bmap->eq[i], 1 + total);
774 p = print_eq_constraint(p, space, div, c->el, l, latex);
775 first = 0;
777 for (i = 0; i < bmap->n_ineq; ++i) {
778 int l = isl_seq_last_non_zero(bmap->ineq[i], 1 + total);
779 int strict;
780 int s;
781 const char *op;
782 if (l < 0)
783 continue;
784 if (!dump && l >= o_div &&
785 can_print_div_expr(p, div, l - o_div)) {
786 isl_bool is_div;
787 is_div = isl_basic_map_is_div_constraint(bmap,
788 bmap->ineq[i], l - o_div);
789 if (is_div < 0)
790 goto error;
791 if (is_div)
792 continue;
794 if (!first)
795 p = isl_printer_print_str(p, s_and[latex]);
796 s = isl_int_sgn(bmap->ineq[i][l]);
797 strict = !rational && isl_int_is_negone(bmap->ineq[i][0]);
798 if (s < 0)
799 isl_seq_cpy(c->el, bmap->ineq[i], 1 + total);
800 else
801 isl_seq_neg(c->el, bmap->ineq[i], 1 + total);
802 if (strict)
803 isl_int_set_si(c->el[0], 0);
804 if (!dump && next_is_opposite(bmap, i, l)) {
805 op = constraint_op(-s, strict, latex);
806 p = print_half_constraint(p, space, div, c->el, l,
807 op, latex);
808 first = 1;
809 } else {
810 op = constraint_op(s, strict, latex);
811 p = print_constraint(p, space, div, c->el, l,
812 op, latex);
813 first = 0;
817 isl_basic_map_free(bmap);
818 isl_vec_free(c);
820 return p;
821 error:
822 isl_basic_map_free(bmap);
823 isl_vec_free(c);
824 isl_printer_free(p);
825 return NULL;
828 static __isl_give isl_printer *print_div(__isl_keep isl_space *dim,
829 __isl_keep isl_mat *div, int pos, __isl_take isl_printer *p)
831 int c;
833 if (!p || !div)
834 return isl_printer_free(p);
836 c = p->output_format == ISL_FORMAT_C;
837 p = isl_printer_print_str(p, c ? "floord(" : "floor((");
838 p = print_affine_of_len(dim, div, p,
839 div->row[pos] + 1, div->n_col - 1);
840 p = isl_printer_print_str(p, c ? ", " : ")/");
841 p = isl_printer_print_isl_int(p, div->row[pos][0]);
842 p = isl_printer_print_str(p, ")");
843 return p;
846 /* Print a comma separated list of div names, except those that have
847 * a definition that can be printed.
848 * If "print_defined_divs" is set, then those div names are printed
849 * as well, along with their definitions.
851 static __isl_give isl_printer *print_div_list(__isl_take isl_printer *p,
852 __isl_keep isl_space *space, __isl_keep isl_mat *div, int latex,
853 int print_defined_divs)
855 int i;
856 int first = 1;
857 unsigned n_div;
859 if (!p || !space || !div)
860 return isl_printer_free(p);
862 n_div = isl_mat_rows(div);
864 for (i = 0; i < n_div; ++i) {
865 if (!print_defined_divs && can_print_div_expr(p, div, i))
866 continue;
867 if (!first)
868 p = isl_printer_print_str(p, ", ");
869 p = print_name(space, p, isl_dim_div, i, latex);
870 first = 0;
871 if (!can_print_div_expr(p, div, i))
872 continue;
873 p = isl_printer_print_str(p, " = ");
874 p = print_div(space, div, i, p);
877 return p;
880 /* Does printing an object with local variables described by "div"
881 * require an "exists" clause?
882 * That is, are there any local variables without an explicit representation?
883 * An exists clause is also needed in "dump" mode because
884 * explicit div representations are not printed inline in that case.
886 static isl_bool need_exists(__isl_keep isl_printer *p, __isl_keep isl_mat *div)
888 int i, n;
890 if (!p || !div)
891 return isl_bool_error;
892 n = isl_mat_rows(div);
893 if (n == 0)
894 return isl_bool_false;
895 if (p->dump)
896 return isl_bool_true;
897 for (i = 0; i < n; ++i)
898 if (!can_print_div_expr(p, div, i))
899 return isl_bool_true;
900 return isl_bool_false;
903 /* Print the start of an exists clause, i.e.,
905 * (exists variables:
907 * In dump mode, local variables with an explicit definition are printed
908 * as well because they will not be printed inline.
910 static __isl_give isl_printer *open_exists(__isl_take isl_printer *p,
911 __isl_keep isl_space *space, __isl_keep isl_mat *div, int latex)
913 int dump;
915 if (!p)
916 return NULL;
918 dump = p->dump;
919 p = isl_printer_print_str(p, s_open_exists[latex]);
920 p = print_div_list(p, space, div, latex, dump);
921 p = isl_printer_print_str(p, ": ");
923 return p;
926 /* Remove the explicit representations of all local variables in "div".
928 static __isl_give isl_mat *mark_all_unknown(__isl_take isl_mat *div)
930 int i, n_div;
932 if (!div)
933 return NULL;
935 n_div = isl_mat_rows(div);
936 for (i = 0; i < n_div; ++i)
937 div = isl_mat_set_element_si(div, i, 0, 0);
938 return div;
941 /* Print the constraints of "bmap" to "p".
942 * The names of the variables are taken from "space".
943 * "latex" is set if the constraints should be printed in LaTeX format.
944 * Do not print inline explicit div representations in "dump" mode.
946 static __isl_give isl_printer *print_disjunct(__isl_keep isl_basic_map *bmap,
947 __isl_keep isl_space *space, __isl_take isl_printer *p, int latex)
949 int dump;
950 isl_mat *div;
951 isl_bool exists;
953 if (!p)
954 return NULL;
955 dump = p->dump;
956 div = isl_basic_map_get_divs(bmap);
957 exists = need_exists(p, div);
958 if (exists >= 0 && exists)
959 p = open_exists(p, space, div, latex);
961 if (dump)
962 div = mark_all_unknown(div);
963 p = print_constraints(bmap, space, div, p, latex);
964 isl_mat_free(div);
966 if (exists >= 0 && exists)
967 p = isl_printer_print_str(p, s_close_exists[latex]);
968 return p;
971 /* Print a colon followed by the constraints of "bmap"
972 * to "p", provided there are any constraints.
973 * The names of the variables are taken from "space".
974 * "latex" is set if the constraints should be printed in LaTeX format.
976 static __isl_give isl_printer *print_optional_disjunct(
977 __isl_keep isl_basic_map *bmap, __isl_keep isl_space *space,
978 __isl_take isl_printer *p, int latex)
980 if (isl_basic_map_plain_is_universe(bmap))
981 return p;
983 p = isl_printer_print_str(p, ": ");
984 p = print_disjunct(bmap, space, p, latex);
986 return p;
989 static __isl_give isl_printer *basic_map_print_omega(
990 __isl_keep isl_basic_map *bmap, __isl_take isl_printer *p)
992 p = isl_printer_print_str(p, "{ [");
993 p = print_var_list(p, bmap->dim, isl_dim_in);
994 p = isl_printer_print_str(p, "] -> [");
995 p = print_var_list(p, bmap->dim, isl_dim_out);
996 p = isl_printer_print_str(p, "] ");
997 p = print_optional_disjunct(bmap, bmap->dim, p, 0);
998 p = isl_printer_print_str(p, " }");
999 return p;
1002 static __isl_give isl_printer *basic_set_print_omega(
1003 __isl_keep isl_basic_set *bset, __isl_take isl_printer *p)
1005 p = isl_printer_print_str(p, "{ [");
1006 p = print_var_list(p, bset->dim, isl_dim_set);
1007 p = isl_printer_print_str(p, "] ");
1008 p = print_optional_disjunct(bset, bset->dim, p, 0);
1009 p = isl_printer_print_str(p, " }");
1010 return p;
1013 static __isl_give isl_printer *isl_map_print_omega(__isl_keep isl_map *map,
1014 __isl_take isl_printer *p)
1016 int i;
1018 for (i = 0; i < map->n; ++i) {
1019 if (i)
1020 p = isl_printer_print_str(p, " union ");
1021 p = basic_map_print_omega(map->p[i], p);
1023 return p;
1026 static __isl_give isl_printer *isl_set_print_omega(__isl_keep isl_set *set,
1027 __isl_take isl_printer *p)
1029 int i;
1031 for (i = 0; i < set->n; ++i) {
1032 if (i)
1033 p = isl_printer_print_str(p, " union ");
1034 p = basic_set_print_omega(set->p[i], p);
1036 return p;
1039 /* Print the list of parameters in "space", followed by an arrow, to "p",
1040 * if there are any parameters.
1042 static __isl_give isl_printer *print_param_tuple(__isl_take isl_printer *p,
1043 __isl_keep isl_space *space, struct isl_print_space_data *data)
1045 if (!p || !space)
1046 return isl_printer_free(p);
1047 if (isl_space_dim(space, isl_dim_param) == 0)
1048 return p;
1050 p = print_tuple(space, p, isl_dim_param, data);
1051 p = isl_printer_print_str(p, s_to[data->latex]);
1053 return p;
1056 static __isl_give isl_printer *isl_basic_map_print_isl(
1057 __isl_keep isl_basic_map *bmap, __isl_take isl_printer *p,
1058 int latex)
1060 struct isl_print_space_data data = { .latex = latex };
1061 int rational = ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
1063 p = print_param_tuple(p, bmap->dim, &data);
1064 p = isl_printer_print_str(p, "{ ");
1065 p = isl_print_space(bmap->dim, p, rational, &data);
1066 p = isl_printer_print_str(p, " : ");
1067 p = print_disjunct(bmap, bmap->dim, p, latex);
1068 p = isl_printer_print_str(p, " }");
1069 return p;
1072 /* Print the disjuncts of a map (or set) "map" to "p".
1073 * The names of the variables are taken from "space".
1074 * "latex" is set if the constraints should be printed in LaTeX format.
1076 static __isl_give isl_printer *print_disjuncts_core(__isl_keep isl_map *map,
1077 __isl_keep isl_space *space, __isl_take isl_printer *p, int latex)
1079 int i;
1081 if (map->n == 0)
1082 p = isl_printer_print_str(p, "false");
1083 for (i = 0; i < map->n; ++i) {
1084 if (i)
1085 p = isl_printer_print_str(p, s_or[latex]);
1086 if (map->n > 1 && map->p[i]->n_eq + map->p[i]->n_ineq > 1)
1087 p = isl_printer_print_str(p, "(");
1088 p = print_disjunct(map->p[i], space, p, latex);
1089 if (map->n > 1 && map->p[i]->n_eq + map->p[i]->n_ineq > 1)
1090 p = isl_printer_print_str(p, ")");
1092 return p;
1095 /* Print the disjuncts of a map (or set) "map" to "p".
1096 * The names of the variables are taken from "space".
1097 * "hull" describes constraints shared by all disjuncts of "map".
1098 * "latex" is set if the constraints should be printed in LaTeX format.
1100 * Print the disjuncts as a conjunction of "hull" and
1101 * the result of removing the constraints of "hull" from "map".
1102 * If this result turns out to be the universe, then simply print "hull".
1104 static __isl_give isl_printer *print_disjuncts_in_hull(__isl_keep isl_map *map,
1105 __isl_keep isl_space *space, __isl_take isl_basic_map *hull,
1106 __isl_take isl_printer *p, int latex)
1108 isl_bool is_universe;
1110 p = print_disjunct(hull, space, p, latex);
1111 map = isl_map_plain_gist_basic_map(isl_map_copy(map), hull);
1112 is_universe = isl_map_plain_is_universe(map);
1113 if (is_universe < 0)
1114 goto error;
1115 if (!is_universe) {
1116 p = isl_printer_print_str(p, s_and[latex]);
1117 p = isl_printer_print_str(p, "(");
1118 p = print_disjuncts_core(map, space, p, latex);
1119 p = isl_printer_print_str(p, ")");
1121 isl_map_free(map);
1123 return p;
1124 error:
1125 isl_map_free(map);
1126 isl_printer_free(p);
1127 return NULL;
1130 /* Print the disjuncts of a map (or set) "map" to "p".
1131 * The names of the variables are taken from "space".
1132 * "latex" is set if the constraints should be printed in LaTeX format.
1134 * If there are at least two disjuncts and "dump" mode is not turned out,
1135 * check for any shared constraints among all disjuncts.
1136 * If there are any, then print them separately in print_disjuncts_in_hull.
1138 static __isl_give isl_printer *print_disjuncts(__isl_keep isl_map *map,
1139 __isl_keep isl_space *space, __isl_take isl_printer *p, int latex)
1141 if (isl_map_plain_is_universe(map))
1142 return p;
1144 p = isl_printer_print_str(p, s_such_that[latex]);
1145 if (!p)
1146 return NULL;
1148 if (!p->dump && map->n >= 2) {
1149 isl_basic_map *hull;
1150 isl_bool is_universe;
1152 hull = isl_map_plain_unshifted_simple_hull(isl_map_copy(map));
1153 is_universe = isl_basic_map_plain_is_universe(hull);
1154 if (is_universe < 0)
1155 p = isl_printer_free(p);
1156 else if (!is_universe)
1157 return print_disjuncts_in_hull(map, space, hull,
1158 p, latex);
1159 isl_basic_map_free(hull);
1162 return print_disjuncts_core(map, space, p, latex);
1165 /* Print the disjuncts of a map (or set).
1166 * The names of the variables are taken from "space".
1167 * "latex" is set if the constraints should be printed in LaTeX format.
1169 * If the map turns out to be a universal parameter domain, then
1170 * we need to print the colon. Otherwise, the output looks identical
1171 * to the empty set.
1173 static __isl_give isl_printer *print_disjuncts_map(__isl_keep isl_map *map,
1174 __isl_keep isl_space *space, __isl_take isl_printer *p, int latex)
1176 if (isl_map_plain_is_universe(map) && isl_space_is_params(map->dim))
1177 return isl_printer_print_str(p, s_such_that[latex]);
1178 else
1179 return print_disjuncts(map, space, p, latex);
1182 /* Print the disjuncts of a set.
1183 * The names of the variables are taken from "space".
1184 * "latex" is set if the constraints should be printed in LaTeX format.
1186 static __isl_give isl_printer *print_disjuncts_set(__isl_keep isl_set *set,
1187 __isl_keep isl_space *space, __isl_take isl_printer *p, int latex)
1189 return print_disjuncts_map(set_to_map(set), space, p, latex);
1192 struct isl_aff_split {
1193 isl_basic_map *aff;
1194 isl_map *map;
1197 static void free_split(__isl_take struct isl_aff_split *split, int n)
1199 int i;
1201 if (!split)
1202 return;
1204 for (i = 0; i < n; ++i) {
1205 isl_basic_map_free(split[i].aff);
1206 isl_map_free(split[i].map);
1209 free(split);
1212 static __isl_give isl_basic_map *get_aff(__isl_take isl_basic_map *bmap)
1214 int i, j;
1215 unsigned nparam, n_in, n_out, total;
1217 bmap = isl_basic_map_cow(bmap);
1218 if (!bmap)
1219 return NULL;
1220 if (isl_basic_map_free_inequality(bmap, bmap->n_ineq) < 0)
1221 goto error;
1223 nparam = isl_basic_map_dim(bmap, isl_dim_param);
1224 n_in = isl_basic_map_dim(bmap, isl_dim_in);
1225 n_out = isl_basic_map_dim(bmap, isl_dim_out);
1226 total = isl_basic_map_dim(bmap, isl_dim_all);
1227 for (i = bmap->n_eq - 1; i >= 0; --i) {
1228 j = isl_seq_last_non_zero(bmap->eq[i] + 1, total);
1229 if (j >= nparam && j < nparam + n_in + n_out &&
1230 (isl_int_is_one(bmap->eq[i][1 + j]) ||
1231 isl_int_is_negone(bmap->eq[i][1 + j])))
1232 continue;
1233 if (isl_basic_map_drop_equality(bmap, i) < 0)
1234 goto error;
1237 bmap = isl_basic_map_finalize(bmap);
1239 return bmap;
1240 error:
1241 isl_basic_map_free(bmap);
1242 return NULL;
1245 static int aff_split_cmp(const void *p1, const void *p2, void *user)
1247 const struct isl_aff_split *s1, *s2;
1248 s1 = (const struct isl_aff_split *) p1;
1249 s2 = (const struct isl_aff_split *) p2;
1251 return isl_basic_map_plain_cmp(s1->aff, s2->aff);
1254 static __isl_give isl_basic_map *drop_aff(__isl_take isl_basic_map *bmap,
1255 __isl_keep isl_basic_map *aff)
1257 int i, j;
1258 unsigned total;
1260 if (!bmap || !aff)
1261 goto error;
1263 total = isl_space_dim(bmap->dim, isl_dim_all);
1265 for (i = bmap->n_eq - 1; i >= 0; --i) {
1266 if (isl_seq_first_non_zero(bmap->eq[i] + 1 + total,
1267 bmap->n_div) != -1)
1268 continue;
1269 for (j = 0; j < aff->n_eq; ++j) {
1270 if (!isl_seq_eq(bmap->eq[i], aff->eq[j], 1 + total) &&
1271 !isl_seq_is_neg(bmap->eq[i], aff->eq[j], 1 + total))
1272 continue;
1273 if (isl_basic_map_drop_equality(bmap, i) < 0)
1274 goto error;
1275 break;
1279 return bmap;
1280 error:
1281 isl_basic_map_free(bmap);
1282 return NULL;
1285 static __isl_give struct isl_aff_split *split_aff(__isl_keep isl_map *map)
1287 int i, n;
1288 struct isl_aff_split *split;
1289 isl_ctx *ctx;
1291 ctx = isl_map_get_ctx(map);
1292 split = isl_calloc_array(ctx, struct isl_aff_split, map->n);
1293 if (!split)
1294 return NULL;
1296 for (i = 0; i < map->n; ++i) {
1297 isl_basic_map *bmap;
1298 split[i].aff = get_aff(isl_basic_map_copy(map->p[i]));
1299 bmap = isl_basic_map_copy(map->p[i]);
1300 bmap = isl_basic_map_cow(bmap);
1301 bmap = drop_aff(bmap, split[i].aff);
1302 split[i].map = isl_map_from_basic_map(bmap);
1303 if (!split[i].aff || !split[i].map)
1304 goto error;
1307 if (isl_sort(split, map->n, sizeof(struct isl_aff_split),
1308 &aff_split_cmp, NULL) < 0)
1309 goto error;
1311 n = map->n;
1312 for (i = n - 1; i >= 1; --i) {
1313 if (!isl_basic_map_plain_is_equal(split[i - 1].aff,
1314 split[i].aff))
1315 continue;
1316 isl_basic_map_free(split[i].aff);
1317 split[i - 1].map = isl_map_union(split[i - 1].map,
1318 split[i].map);
1319 if (i != n - 1)
1320 split[i] = split[n - 1];
1321 split[n - 1].aff = NULL;
1322 split[n - 1].map = NULL;
1323 --n;
1326 return split;
1327 error:
1328 free_split(split, map->n);
1329 return NULL;
1332 static int defining_equality(__isl_keep isl_basic_map *eq,
1333 __isl_keep isl_space *dim, enum isl_dim_type type, int pos)
1335 int i;
1336 unsigned total;
1338 if (!eq)
1339 return -1;
1341 pos += isl_space_offset(dim, type);
1342 total = isl_basic_map_total_dim(eq);
1344 for (i = 0; i < eq->n_eq; ++i) {
1345 if (isl_seq_last_non_zero(eq->eq[i] + 1, total) != pos)
1346 continue;
1347 if (isl_int_is_one(eq->eq[i][1 + pos]))
1348 isl_seq_neg(eq->eq[i], eq->eq[i], 1 + total);
1349 return i;
1352 return -1;
1355 /* Print dimension "pos" of data->space to "p".
1357 * data->user is assumed to be an isl_basic_map keeping track of equalities.
1359 * If the current dimension is defined by these equalities, then print
1360 * the corresponding expression, assigned to the name of the dimension
1361 * if there is any. Otherwise, print the name of the dimension.
1363 static __isl_give isl_printer *print_dim_eq(__isl_take isl_printer *p,
1364 struct isl_print_space_data *data, unsigned pos)
1366 isl_basic_map *eq = data->user;
1367 int j;
1369 j = defining_equality(eq, data->space, data->type, pos);
1370 if (j >= 0) {
1371 if (isl_space_has_dim_name(data->space, data->type, pos)) {
1372 p = print_name(data->space, p, data->type, pos,
1373 data->latex);
1374 p = isl_printer_print_str(p, " = ");
1376 pos += 1 + isl_space_offset(data->space, data->type);
1377 p = print_affine_of_len(data->space, NULL, p, eq->eq[j], pos);
1378 } else {
1379 p = print_name(data->space, p, data->type, pos, data->latex);
1382 return p;
1385 static __isl_give isl_printer *print_split_map(__isl_take isl_printer *p,
1386 struct isl_aff_split *split, int n, __isl_keep isl_space *space)
1388 struct isl_print_space_data data = { 0 };
1389 int i;
1390 int rational;
1392 data.print_dim = &print_dim_eq;
1393 for (i = 0; i < n; ++i) {
1394 if (!split[i].map)
1395 break;
1396 rational = split[i].map->n > 0 &&
1397 ISL_F_ISSET(split[i].map->p[0], ISL_BASIC_MAP_RATIONAL);
1398 if (i)
1399 p = isl_printer_print_str(p, "; ");
1400 data.user = split[i].aff;
1401 p = isl_print_space(space, p, rational, &data);
1402 p = print_disjuncts_map(split[i].map, space, p, 0);
1405 return p;
1408 static __isl_give isl_printer *isl_map_print_isl_body(__isl_keep isl_map *map,
1409 __isl_take isl_printer *p)
1411 struct isl_print_space_data data = { 0 };
1412 struct isl_aff_split *split = NULL;
1413 int rational;
1415 if (!p || !map)
1416 return isl_printer_free(p);
1417 if (!p->dump && map->n > 0)
1418 split = split_aff(map);
1419 if (split) {
1420 p = print_split_map(p, split, map->n, map->dim);
1421 } else {
1422 rational = map->n > 0 &&
1423 ISL_F_ISSET(map->p[0], ISL_BASIC_MAP_RATIONAL);
1424 p = isl_print_space(map->dim, p, rational, &data);
1425 p = print_disjuncts_map(map, map->dim, p, 0);
1427 free_split(split, map->n);
1428 return p;
1431 static __isl_give isl_printer *isl_map_print_isl(__isl_keep isl_map *map,
1432 __isl_take isl_printer *p)
1434 struct isl_print_space_data data = { 0 };
1436 p = print_param_tuple(p, map->dim, &data);
1437 p = isl_printer_print_str(p, s_open_set[0]);
1438 p = isl_map_print_isl_body(map, p);
1439 p = isl_printer_print_str(p, s_close_set[0]);
1440 return p;
1443 static __isl_give isl_printer *print_latex_map(__isl_keep isl_map *map,
1444 __isl_take isl_printer *p, __isl_keep isl_basic_map *aff)
1446 struct isl_print_space_data data = { 0 };
1448 data.latex = 1;
1449 p = print_param_tuple(p, map->dim, &data);
1450 p = isl_printer_print_str(p, s_open_set[1]);
1451 data.print_dim = &print_dim_eq;
1452 data.user = aff;
1453 p = isl_print_space(map->dim, p, 0, &data);
1454 p = print_disjuncts_map(map, map->dim, p, 1);
1455 p = isl_printer_print_str(p, s_close_set[1]);
1457 return p;
1460 static __isl_give isl_printer *isl_map_print_latex(__isl_keep isl_map *map,
1461 __isl_take isl_printer *p)
1463 int i;
1464 struct isl_aff_split *split = NULL;
1466 if (map->n > 0)
1467 split = split_aff(map);
1469 if (!split)
1470 return print_latex_map(map, p, NULL);
1472 for (i = 0; i < map->n; ++i) {
1473 if (!split[i].map)
1474 break;
1475 if (i)
1476 p = isl_printer_print_str(p, " \\cup ");
1477 p = print_latex_map(split[i].map, p, split[i].aff);
1480 free_split(split, map->n);
1481 return p;
1484 __isl_give isl_printer *isl_printer_print_basic_map(__isl_take isl_printer *p,
1485 __isl_keep isl_basic_map *bmap)
1487 if (!p || !bmap)
1488 goto error;
1489 if (p->output_format == ISL_FORMAT_ISL)
1490 return isl_basic_map_print_isl(bmap, p, 0);
1491 else if (p->output_format == ISL_FORMAT_OMEGA)
1492 return basic_map_print_omega(bmap, p);
1493 isl_assert(bmap->ctx, 0, goto error);
1494 error:
1495 isl_printer_free(p);
1496 return NULL;
1499 __isl_give isl_printer *isl_printer_print_basic_set(__isl_take isl_printer *p,
1500 __isl_keep isl_basic_set *bset)
1502 if (!p || !bset)
1503 goto error;
1505 if (p->output_format == ISL_FORMAT_ISL)
1506 return isl_basic_map_print_isl(bset, p, 0);
1507 else if (p->output_format == ISL_FORMAT_POLYLIB)
1508 return isl_basic_set_print_polylib(bset, p, 0);
1509 else if (p->output_format == ISL_FORMAT_EXT_POLYLIB)
1510 return isl_basic_set_print_polylib(bset, p, 1);
1511 else if (p->output_format == ISL_FORMAT_POLYLIB_CONSTRAINTS)
1512 return bset_print_constraints_polylib(bset, p);
1513 else if (p->output_format == ISL_FORMAT_OMEGA)
1514 return basic_set_print_omega(bset, p);
1515 isl_assert(p->ctx, 0, goto error);
1516 error:
1517 isl_printer_free(p);
1518 return NULL;
1521 __isl_give isl_printer *isl_printer_print_set(__isl_take isl_printer *p,
1522 __isl_keep isl_set *set)
1524 if (!p || !set)
1525 goto error;
1526 if (p->output_format == ISL_FORMAT_ISL)
1527 return isl_map_print_isl(set_to_map(set), p);
1528 else if (p->output_format == ISL_FORMAT_POLYLIB)
1529 return isl_set_print_polylib(set, p, 0);
1530 else if (p->output_format == ISL_FORMAT_EXT_POLYLIB)
1531 return isl_set_print_polylib(set, p, 1);
1532 else if (p->output_format == ISL_FORMAT_OMEGA)
1533 return isl_set_print_omega(set, p);
1534 else if (p->output_format == ISL_FORMAT_LATEX)
1535 return isl_map_print_latex(set_to_map(set), p);
1536 isl_assert(set->ctx, 0, goto error);
1537 error:
1538 isl_printer_free(p);
1539 return NULL;
1542 __isl_give isl_printer *isl_printer_print_map(__isl_take isl_printer *p,
1543 __isl_keep isl_map *map)
1545 if (!p || !map)
1546 goto error;
1548 if (p->output_format == ISL_FORMAT_ISL)
1549 return isl_map_print_isl(map, p);
1550 else if (p->output_format == ISL_FORMAT_POLYLIB)
1551 return isl_map_print_polylib(map, p, 0);
1552 else if (p->output_format == ISL_FORMAT_EXT_POLYLIB)
1553 return isl_map_print_polylib(map, p, 1);
1554 else if (p->output_format == ISL_FORMAT_OMEGA)
1555 return isl_map_print_omega(map, p);
1556 else if (p->output_format == ISL_FORMAT_LATEX)
1557 return isl_map_print_latex(map, p);
1558 isl_assert(map->ctx, 0, goto error);
1559 error:
1560 isl_printer_free(p);
1561 return NULL;
1564 struct isl_union_print_data {
1565 isl_printer *p;
1566 int first;
1569 static isl_stat print_map_body(__isl_take isl_map *map, void *user)
1571 struct isl_union_print_data *data;
1572 data = (struct isl_union_print_data *)user;
1574 if (!data->first)
1575 data->p = isl_printer_print_str(data->p, "; ");
1576 data->first = 0;
1578 data->p = isl_map_print_isl_body(map, data->p);
1579 isl_map_free(map);
1581 return isl_stat_ok;
1584 /* Print the body of "umap" (everything except the parameter declarations)
1585 * to "p" in isl format.
1587 static __isl_give isl_printer *isl_printer_print_union_map_isl_body(
1588 __isl_take isl_printer *p, __isl_keep isl_union_map *umap)
1590 struct isl_union_print_data data;
1592 p = isl_printer_print_str(p, s_open_set[0]);
1593 data.p = p;
1594 data.first = 1;
1595 isl_union_map_foreach_map(umap, &print_map_body, &data);
1596 p = data.p;
1597 p = isl_printer_print_str(p, s_close_set[0]);
1598 return p;
1601 /* Print the body of "uset" (everything except the parameter declarations)
1602 * to "p" in isl format.
1604 static __isl_give isl_printer *isl_printer_print_union_set_isl_body(
1605 __isl_take isl_printer *p, __isl_keep isl_union_set *uset)
1607 return isl_printer_print_union_map_isl_body(p, uset_to_umap(uset));
1610 /* Print the isl_union_map "umap" to "p" in isl format.
1612 static __isl_give isl_printer *isl_union_map_print_isl(
1613 __isl_keep isl_union_map *umap, __isl_take isl_printer *p)
1615 struct isl_print_space_data space_data = { 0 };
1616 isl_space *space;
1618 space = isl_union_map_get_space(umap);
1619 p = print_param_tuple(p, space, &space_data);
1620 isl_space_free(space);
1622 p = isl_printer_print_union_map_isl_body(p, umap);
1624 return p;
1627 static isl_stat print_latex_map_body(__isl_take isl_map *map, void *user)
1629 struct isl_union_print_data *data;
1630 data = (struct isl_union_print_data *)user;
1632 if (!data->first)
1633 data->p = isl_printer_print_str(data->p, " \\cup ");
1634 data->first = 0;
1636 data->p = isl_map_print_latex(map, data->p);
1637 isl_map_free(map);
1639 return isl_stat_ok;
1642 static __isl_give isl_printer *isl_union_map_print_latex(
1643 __isl_keep isl_union_map *umap, __isl_take isl_printer *p)
1645 struct isl_union_print_data data = { p, 1 };
1646 isl_union_map_foreach_map(umap, &print_latex_map_body, &data);
1647 p = data.p;
1648 return p;
1651 __isl_give isl_printer *isl_printer_print_union_map(__isl_take isl_printer *p,
1652 __isl_keep isl_union_map *umap)
1654 if (!p || !umap)
1655 goto error;
1657 if (p->output_format == ISL_FORMAT_ISL)
1658 return isl_union_map_print_isl(umap, p);
1659 if (p->output_format == ISL_FORMAT_LATEX)
1660 return isl_union_map_print_latex(umap, p);
1662 isl_die(p->ctx, isl_error_invalid,
1663 "invalid output format for isl_union_map", goto error);
1664 error:
1665 isl_printer_free(p);
1666 return NULL;
1669 __isl_give isl_printer *isl_printer_print_union_set(__isl_take isl_printer *p,
1670 __isl_keep isl_union_set *uset)
1672 if (!p || !uset)
1673 goto error;
1675 if (p->output_format == ISL_FORMAT_ISL)
1676 return isl_union_map_print_isl(uset_to_umap(uset), p);
1677 if (p->output_format == ISL_FORMAT_LATEX)
1678 return isl_union_map_print_latex(uset_to_umap(uset), p);
1680 isl_die(p->ctx, isl_error_invalid,
1681 "invalid output format for isl_union_set", goto error);
1682 error:
1683 isl_printer_free(p);
1684 return NULL;
1687 static int poly_rec_n_non_zero(__isl_keep isl_poly_rec *rec)
1689 int i;
1690 int n;
1692 for (i = 0, n = 0; i < rec->n; ++i)
1693 if (!isl_poly_is_zero(rec->p[i]))
1694 ++n;
1696 return n;
1699 static __isl_give isl_printer *poly_print_cst(__isl_keep isl_poly *poly,
1700 __isl_take isl_printer *p, int first)
1702 isl_poly_cst *cst;
1703 int neg;
1705 cst = isl_poly_as_cst(poly);
1706 if (!cst)
1707 goto error;
1708 neg = !first && isl_int_is_neg(cst->n);
1709 if (!first)
1710 p = isl_printer_print_str(p, neg ? " - " : " + ");
1711 if (neg)
1712 isl_int_neg(cst->n, cst->n);
1713 if (isl_int_is_zero(cst->d)) {
1714 int sgn = isl_int_sgn(cst->n);
1715 p = isl_printer_print_str(p, sgn < 0 ? "-infty" :
1716 sgn == 0 ? "NaN" : "infty");
1717 } else
1718 p = isl_printer_print_isl_int(p, cst->n);
1719 if (neg)
1720 isl_int_neg(cst->n, cst->n);
1721 if (!isl_int_is_zero(cst->d) && !isl_int_is_one(cst->d)) {
1722 p = isl_printer_print_str(p, "/");
1723 p = isl_printer_print_isl_int(p, cst->d);
1725 return p;
1726 error:
1727 isl_printer_free(p);
1728 return NULL;
1731 static __isl_give isl_printer *print_base(__isl_take isl_printer *p,
1732 __isl_keep isl_space *space, __isl_keep isl_mat *div, int var)
1734 unsigned total;
1736 total = isl_space_dim(space, isl_dim_all);
1737 if (var < total)
1738 p = print_term(space, NULL, space->ctx->one, 1 + var, p, 0);
1739 else
1740 p = print_div(space, div, var - total, p);
1741 return p;
1744 static __isl_give isl_printer *print_pow(__isl_take isl_printer *p,
1745 __isl_keep isl_space *dim, __isl_keep isl_mat *div, int var, int exp)
1747 p = print_base(p, dim, div, var);
1748 if (exp == 1)
1749 return p;
1750 if (p->output_format == ISL_FORMAT_C) {
1751 int i;
1752 for (i = 1; i < exp; ++i) {
1753 p = isl_printer_print_str(p, "*");
1754 p = print_base(p, dim, div, var);
1756 } else {
1757 p = isl_printer_print_str(p, "^");
1758 p = isl_printer_print_int(p, exp);
1760 return p;
1763 /* Print the polynomial "poly" defined over the domain space "space" and
1764 * local variables defined by "div" to "p".
1766 static __isl_give isl_printer *poly_print(__isl_keep isl_poly *poly,
1767 __isl_keep isl_space *space, __isl_keep isl_mat *div,
1768 __isl_take isl_printer *p)
1770 int i, n, first, print_parens;
1771 isl_poly_rec *rec;
1773 if (!p || !poly || !space || !div)
1774 goto error;
1776 if (isl_poly_is_cst(poly))
1777 return poly_print_cst(poly, p, 1);
1779 rec = isl_poly_as_rec(poly);
1780 if (!rec)
1781 goto error;
1782 n = poly_rec_n_non_zero(rec);
1783 print_parens = n > 1;
1784 if (print_parens)
1785 p = isl_printer_print_str(p, "(");
1786 for (i = 0, first = 1; i < rec->n; ++i) {
1787 if (isl_poly_is_zero(rec->p[i]))
1788 continue;
1789 if (isl_poly_is_negone(rec->p[i])) {
1790 if (!i)
1791 p = isl_printer_print_str(p, "-1");
1792 else if (first)
1793 p = isl_printer_print_str(p, "-");
1794 else
1795 p = isl_printer_print_str(p, " - ");
1796 } else if (isl_poly_is_cst(rec->p[i]) &&
1797 !isl_poly_is_one(rec->p[i]))
1798 p = poly_print_cst(rec->p[i], p, first);
1799 else {
1800 if (!first)
1801 p = isl_printer_print_str(p, " + ");
1802 if (i == 0 || !isl_poly_is_one(rec->p[i]))
1803 p = poly_print(rec->p[i], space, div, p);
1805 first = 0;
1806 if (i == 0)
1807 continue;
1808 if (!isl_poly_is_one(rec->p[i]) &&
1809 !isl_poly_is_negone(rec->p[i]))
1810 p = isl_printer_print_str(p, " * ");
1811 p = print_pow(p, space, div, rec->poly.var, i);
1813 if (print_parens)
1814 p = isl_printer_print_str(p, ")");
1815 return p;
1816 error:
1817 isl_printer_free(p);
1818 return NULL;
1821 static __isl_give isl_printer *print_qpolynomial(__isl_take isl_printer *p,
1822 __isl_keep isl_qpolynomial *qp)
1824 if (!p || !qp)
1825 goto error;
1826 p = poly_print(qp->poly, qp->dim, qp->div, p);
1827 return p;
1828 error:
1829 isl_printer_free(p);
1830 return NULL;
1833 static __isl_give isl_printer *print_qpolynomial_isl(__isl_take isl_printer *p,
1834 __isl_keep isl_qpolynomial *qp)
1836 struct isl_print_space_data data = { 0 };
1838 if (!p || !qp)
1839 goto error;
1841 p = print_param_tuple(p, qp->dim, &data);
1842 p = isl_printer_print_str(p, "{ ");
1843 if (!isl_space_is_params(qp->dim)) {
1844 p = isl_print_space(qp->dim, p, 0, &data);
1845 p = isl_printer_print_str(p, " -> ");
1847 p = print_qpolynomial(p, qp);
1848 p = isl_printer_print_str(p, " }");
1849 return p;
1850 error:
1851 isl_printer_free(p);
1852 return NULL;
1855 /* Print the quasi-polynomial "qp" to "p" in C format, with the variable names
1856 * taken from the domain space "space".
1858 static __isl_give isl_printer *print_qpolynomial_c(__isl_take isl_printer *p,
1859 __isl_keep isl_space *space, __isl_keep isl_qpolynomial *qp)
1861 isl_int den;
1863 isl_int_init(den);
1864 isl_qpolynomial_get_den(qp, &den);
1865 if (!isl_int_is_one(den)) {
1866 isl_qpolynomial *f;
1867 p = isl_printer_print_str(p, "(");
1868 qp = isl_qpolynomial_copy(qp);
1869 f = isl_qpolynomial_rat_cst_on_domain(isl_space_copy(qp->dim),
1870 den, qp->dim->ctx->one);
1871 qp = isl_qpolynomial_mul(qp, f);
1873 if (qp)
1874 p = poly_print(qp->poly, space, qp->div, p);
1875 else
1876 p = isl_printer_free(p);
1877 if (!isl_int_is_one(den)) {
1878 p = isl_printer_print_str(p, ")/");
1879 p = isl_printer_print_isl_int(p, den);
1880 isl_qpolynomial_free(qp);
1882 isl_int_clear(den);
1883 return p;
1886 __isl_give isl_printer *isl_printer_print_qpolynomial(
1887 __isl_take isl_printer *p, __isl_keep isl_qpolynomial *qp)
1889 if (!p || !qp)
1890 goto error;
1892 if (p->output_format == ISL_FORMAT_ISL)
1893 return print_qpolynomial_isl(p, qp);
1894 else if (p->output_format == ISL_FORMAT_C)
1895 return print_qpolynomial_c(p, qp->dim, qp);
1896 else
1897 isl_die(qp->dim->ctx, isl_error_unsupported,
1898 "output format not supported for isl_qpolynomials",
1899 goto error);
1900 error:
1901 isl_printer_free(p);
1902 return NULL;
1905 void isl_qpolynomial_print(__isl_keep isl_qpolynomial *qp, FILE *out,
1906 unsigned output_format)
1908 isl_printer *p;
1910 if (!qp)
1911 return;
1913 isl_assert(qp->dim->ctx, output_format == ISL_FORMAT_ISL, return);
1914 p = isl_printer_to_file(qp->dim->ctx, out);
1915 p = isl_printer_print_qpolynomial(p, qp);
1916 isl_printer_free(p);
1919 static __isl_give isl_printer *qpolynomial_fold_print(
1920 __isl_keep isl_qpolynomial_fold *fold, __isl_take isl_printer *p)
1922 int i;
1924 if (fold->type == isl_fold_min)
1925 p = isl_printer_print_str(p, "min");
1926 else if (fold->type == isl_fold_max)
1927 p = isl_printer_print_str(p, "max");
1928 p = isl_printer_print_str(p, "(");
1929 for (i = 0; i < fold->n; ++i) {
1930 if (i)
1931 p = isl_printer_print_str(p, ", ");
1932 p = print_qpolynomial(p, fold->qp[i]);
1934 p = isl_printer_print_str(p, ")");
1935 return p;
1938 void isl_qpolynomial_fold_print(__isl_keep isl_qpolynomial_fold *fold,
1939 FILE *out, unsigned output_format)
1941 isl_printer *p;
1943 if (!fold)
1944 return;
1946 isl_assert(fold->dim->ctx, output_format == ISL_FORMAT_ISL, return);
1948 p = isl_printer_to_file(fold->dim->ctx, out);
1949 p = isl_printer_print_qpolynomial_fold(p, fold);
1951 isl_printer_free(p);
1954 static __isl_give isl_printer *isl_pwqp_print_isl_body(
1955 __isl_take isl_printer *p, __isl_keep isl_pw_qpolynomial *pwqp)
1957 struct isl_print_space_data data = { 0 };
1958 int i = 0;
1960 for (i = 0; i < pwqp->n; ++i) {
1961 isl_space *space;
1963 if (i)
1964 p = isl_printer_print_str(p, "; ");
1965 space = isl_qpolynomial_get_domain_space(pwqp->p[i].qp);
1966 if (!isl_space_is_params(space)) {
1967 p = isl_print_space(space, p, 0, &data);
1968 p = isl_printer_print_str(p, " -> ");
1970 p = print_qpolynomial(p, pwqp->p[i].qp);
1971 p = print_disjuncts(set_to_map(pwqp->p[i].set), space, p, 0);
1972 isl_space_free(space);
1975 return p;
1978 static __isl_give isl_printer *print_pw_qpolynomial_isl(
1979 __isl_take isl_printer *p, __isl_keep isl_pw_qpolynomial *pwqp)
1981 struct isl_print_space_data data = { 0 };
1983 if (!p || !pwqp)
1984 goto error;
1986 p = print_param_tuple(p, pwqp->dim, &data);
1987 p = isl_printer_print_str(p, "{ ");
1988 if (pwqp->n == 0) {
1989 if (!isl_space_is_set(pwqp->dim)) {
1990 p = print_tuple(pwqp->dim, p, isl_dim_in, &data);
1991 p = isl_printer_print_str(p, " -> ");
1993 p = isl_printer_print_str(p, "0");
1995 p = isl_pwqp_print_isl_body(p, pwqp);
1996 p = isl_printer_print_str(p, " }");
1997 return p;
1998 error:
1999 isl_printer_free(p);
2000 return NULL;
2003 void isl_pw_qpolynomial_print(__isl_keep isl_pw_qpolynomial *pwqp, FILE *out,
2004 unsigned output_format)
2006 isl_printer *p;
2008 if (!pwqp)
2009 return;
2011 p = isl_printer_to_file(pwqp->dim->ctx, out);
2012 p = isl_printer_set_output_format(p, output_format);
2013 p = isl_printer_print_pw_qpolynomial(p, pwqp);
2015 isl_printer_free(p);
2018 static __isl_give isl_printer *isl_pwf_print_isl_body(
2019 __isl_take isl_printer *p, __isl_keep isl_pw_qpolynomial_fold *pwf)
2021 struct isl_print_space_data data = { 0 };
2022 int i = 0;
2024 for (i = 0; i < pwf->n; ++i) {
2025 isl_space *space;
2027 if (i)
2028 p = isl_printer_print_str(p, "; ");
2029 space = isl_qpolynomial_fold_get_domain_space(pwf->p[i].fold);
2030 if (!isl_space_is_params(space)) {
2031 p = isl_print_space(space, p, 0, &data);
2032 p = isl_printer_print_str(p, " -> ");
2034 p = qpolynomial_fold_print(pwf->p[i].fold, p);
2035 p = print_disjuncts(set_to_map(pwf->p[i].set), space, p, 0);
2036 isl_space_free(space);
2039 return p;
2042 static __isl_give isl_printer *print_pw_qpolynomial_fold_isl(
2043 __isl_take isl_printer *p, __isl_keep isl_pw_qpolynomial_fold *pwf)
2045 struct isl_print_space_data data = { 0 };
2047 p = print_param_tuple(p, pwf->dim, &data);
2048 p = isl_printer_print_str(p, "{ ");
2049 if (pwf->n == 0) {
2050 if (!isl_space_is_set(pwf->dim)) {
2051 p = print_tuple(pwf->dim, p, isl_dim_in, &data);
2052 p = isl_printer_print_str(p, " -> ");
2054 p = isl_printer_print_str(p, "0");
2056 p = isl_pwf_print_isl_body(p, pwf);
2057 p = isl_printer_print_str(p, " }");
2058 return p;
2061 static __isl_give isl_printer *print_affine_c(__isl_take isl_printer *p,
2062 __isl_keep isl_space *space, __isl_keep isl_basic_set *bset,
2063 isl_int *c);
2065 static __isl_give isl_printer *print_name_c(__isl_take isl_printer *p,
2066 __isl_keep isl_space *dim,
2067 __isl_keep isl_basic_set *bset, enum isl_dim_type type, unsigned pos)
2069 if (type == isl_dim_div) {
2070 p = isl_printer_print_str(p, "floord(");
2071 p = print_affine_c(p, dim, bset, bset->div[pos] + 1);
2072 p = isl_printer_print_str(p, ", ");
2073 p = isl_printer_print_isl_int(p, bset->div[pos][0]);
2074 p = isl_printer_print_str(p, ")");
2075 } else {
2076 const char *name;
2078 name = isl_space_get_dim_name(dim, type, pos);
2079 if (!name)
2080 name = "UNNAMED";
2081 p = isl_printer_print_str(p, name);
2083 return p;
2086 static __isl_give isl_printer *print_term_c(__isl_take isl_printer *p,
2087 __isl_keep isl_space *space,
2088 __isl_keep isl_basic_set *bset, isl_int c, unsigned pos)
2090 enum isl_dim_type type;
2092 if (!p || !space)
2093 return isl_printer_free(p);
2095 if (pos == 0)
2096 return isl_printer_print_isl_int(p, c);
2098 if (isl_int_is_one(c))
2100 else if (isl_int_is_negone(c))
2101 p = isl_printer_print_str(p, "-");
2102 else {
2103 p = isl_printer_print_isl_int(p, c);
2104 p = isl_printer_print_str(p, "*");
2106 type = pos2type(space, &pos);
2107 p = print_name_c(p, space, bset, type, pos);
2108 return p;
2111 static __isl_give isl_printer *print_partial_affine_c(__isl_take isl_printer *p,
2112 __isl_keep isl_space *dim,
2113 __isl_keep isl_basic_set *bset, isl_int *c, unsigned len)
2115 int i;
2116 int first;
2118 for (i = 0, first = 1; i < len; ++i) {
2119 int flip = 0;
2120 if (isl_int_is_zero(c[i]))
2121 continue;
2122 if (!first) {
2123 if (isl_int_is_neg(c[i])) {
2124 flip = 1;
2125 isl_int_neg(c[i], c[i]);
2126 p = isl_printer_print_str(p, " - ");
2127 } else
2128 p = isl_printer_print_str(p, " + ");
2130 first = 0;
2131 p = print_term_c(p, dim, bset, c[i], i);
2132 if (flip)
2133 isl_int_neg(c[i], c[i]);
2135 if (first)
2136 p = isl_printer_print_str(p, "0");
2137 return p;
2140 static __isl_give isl_printer *print_affine_c(__isl_take isl_printer *p,
2141 __isl_keep isl_space *space, __isl_keep isl_basic_set *bset, isl_int *c)
2143 unsigned len = 1 + isl_basic_set_total_dim(bset);
2144 return print_partial_affine_c(p, space, bset, c, len);
2147 /* We skip the constraint if it is implied by the div expression.
2149 * *first indicates whether this is the first constraint in the conjunction and
2150 * is updated if the constraint is actually printed.
2152 static __isl_give isl_printer *print_constraint_c(__isl_take isl_printer *p,
2153 __isl_keep isl_space *dim,
2154 __isl_keep isl_basic_set *bset, isl_int *c, const char *op, int *first)
2156 unsigned o_div;
2157 unsigned n_div;
2158 int div;
2160 o_div = isl_basic_set_offset(bset, isl_dim_div);
2161 n_div = isl_basic_set_dim(bset, isl_dim_div);
2162 div = isl_seq_last_non_zero(c + o_div, n_div);
2163 if (div >= 0) {
2164 isl_bool is_div = isl_basic_set_is_div_constraint(bset, c, div);
2165 if (is_div < 0)
2166 return isl_printer_free(p);
2167 if (is_div)
2168 return p;
2171 if (!*first)
2172 p = isl_printer_print_str(p, " && ");
2174 p = print_affine_c(p, dim, bset, c);
2175 p = isl_printer_print_str(p, " ");
2176 p = isl_printer_print_str(p, op);
2177 p = isl_printer_print_str(p, " 0");
2179 *first = 0;
2181 return p;
2184 static __isl_give isl_printer *print_basic_set_c(__isl_take isl_printer *p,
2185 __isl_keep isl_space *space, __isl_keep isl_basic_set *bset)
2187 int i, j;
2188 int first = 1;
2189 unsigned n_div = isl_basic_set_dim(bset, isl_dim_div);
2190 unsigned total = isl_basic_set_total_dim(bset) - n_div;
2192 for (i = 0; i < bset->n_eq; ++i) {
2193 j = isl_seq_last_non_zero(bset->eq[i] + 1 + total, n_div);
2194 if (j < 0)
2195 p = print_constraint_c(p, space, bset,
2196 bset->eq[i], "==", &first);
2197 else {
2198 if (i)
2199 p = isl_printer_print_str(p, " && ");
2200 p = isl_printer_print_str(p, "(");
2201 p = print_partial_affine_c(p, space, bset, bset->eq[i],
2202 1 + total + j);
2203 p = isl_printer_print_str(p, ") % ");
2204 p = isl_printer_print_isl_int(p,
2205 bset->eq[i][1 + total + j]);
2206 p = isl_printer_print_str(p, " == 0");
2207 first = 0;
2210 for (i = 0; i < bset->n_ineq; ++i)
2211 p = print_constraint_c(p, space, bset, bset->ineq[i], ">=",
2212 &first);
2213 return p;
2216 static __isl_give isl_printer *print_set_c(__isl_take isl_printer *p,
2217 __isl_keep isl_space *space, __isl_keep isl_set *set)
2219 int i;
2221 if (!set)
2222 return isl_printer_free(p);
2224 if (set->n == 0)
2225 p = isl_printer_print_str(p, "0");
2227 for (i = 0; i < set->n; ++i) {
2228 if (i)
2229 p = isl_printer_print_str(p, " || ");
2230 if (set->n > 1)
2231 p = isl_printer_print_str(p, "(");
2232 p = print_basic_set_c(p, space, set->p[i]);
2233 if (set->n > 1)
2234 p = isl_printer_print_str(p, ")");
2236 return p;
2239 /* Print the piecewise quasi-polynomial "pwqp" to "p" in C format.
2241 static __isl_give isl_printer *print_pw_qpolynomial_c(
2242 __isl_take isl_printer *p, __isl_keep isl_pw_qpolynomial *pwqp)
2244 int i;
2245 isl_space *space;
2247 space = isl_pw_qpolynomial_get_domain_space(pwqp);
2248 if (pwqp->n == 1 && isl_set_plain_is_universe(pwqp->p[0].set)) {
2249 p = print_qpolynomial_c(p, space, pwqp->p[0].qp);
2250 isl_space_free(space);
2251 return p;
2254 for (i = 0; i < pwqp->n; ++i) {
2255 p = isl_printer_print_str(p, "(");
2256 p = print_set_c(p, space, pwqp->p[i].set);
2257 p = isl_printer_print_str(p, ") ? (");
2258 p = print_qpolynomial_c(p, space, pwqp->p[i].qp);
2259 p = isl_printer_print_str(p, ") : ");
2262 isl_space_free(space);
2263 p = isl_printer_print_str(p, "0");
2264 return p;
2267 __isl_give isl_printer *isl_printer_print_pw_qpolynomial(
2268 __isl_take isl_printer *p, __isl_keep isl_pw_qpolynomial *pwqp)
2270 if (!p || !pwqp)
2271 goto error;
2273 if (p->output_format == ISL_FORMAT_ISL)
2274 return print_pw_qpolynomial_isl(p, pwqp);
2275 else if (p->output_format == ISL_FORMAT_C)
2276 return print_pw_qpolynomial_c(p, pwqp);
2277 isl_assert(p->ctx, 0, goto error);
2278 error:
2279 isl_printer_free(p);
2280 return NULL;
2283 static isl_stat print_pwqp_body(__isl_take isl_pw_qpolynomial *pwqp, void *user)
2285 struct isl_union_print_data *data;
2286 data = (struct isl_union_print_data *)user;
2288 if (!data->first)
2289 data->p = isl_printer_print_str(data->p, "; ");
2290 data->first = 0;
2292 data->p = isl_pwqp_print_isl_body(data->p, pwqp);
2293 isl_pw_qpolynomial_free(pwqp);
2295 return isl_stat_ok;
2298 static __isl_give isl_printer *print_union_pw_qpolynomial_isl(
2299 __isl_take isl_printer *p, __isl_keep isl_union_pw_qpolynomial *upwqp)
2301 struct isl_union_print_data data;
2302 struct isl_print_space_data space_data = { 0 };
2303 isl_space *space;
2305 space = isl_union_pw_qpolynomial_get_space(upwqp);
2306 p = print_param_tuple(p, space, &space_data);
2307 isl_space_free(space);
2308 p = isl_printer_print_str(p, "{ ");
2309 data.p = p;
2310 data.first = 1;
2311 isl_union_pw_qpolynomial_foreach_pw_qpolynomial(upwqp, &print_pwqp_body,
2312 &data);
2313 p = data.p;
2314 p = isl_printer_print_str(p, " }");
2315 return p;
2318 __isl_give isl_printer *isl_printer_print_union_pw_qpolynomial(
2319 __isl_take isl_printer *p, __isl_keep isl_union_pw_qpolynomial *upwqp)
2321 if (!p || !upwqp)
2322 goto error;
2324 if (p->output_format == ISL_FORMAT_ISL)
2325 return print_union_pw_qpolynomial_isl(p, upwqp);
2326 isl_die(p->ctx, isl_error_invalid,
2327 "invalid output format for isl_union_pw_qpolynomial",
2328 goto error);
2329 error:
2330 isl_printer_free(p);
2331 return NULL;
2334 /* Print the quasi-polynomial reduction "fold" to "p" in C format,
2335 * with the variable names taken from the domain space "space".
2337 static __isl_give isl_printer *print_qpolynomial_fold_c(
2338 __isl_take isl_printer *p, __isl_keep isl_space *space,
2339 __isl_keep isl_qpolynomial_fold *fold)
2341 int i;
2343 for (i = 0; i < fold->n - 1; ++i)
2344 if (fold->type == isl_fold_min)
2345 p = isl_printer_print_str(p, "min(");
2346 else if (fold->type == isl_fold_max)
2347 p = isl_printer_print_str(p, "max(");
2349 for (i = 0; i < fold->n; ++i) {
2350 if (i)
2351 p = isl_printer_print_str(p, ", ");
2352 p = print_qpolynomial_c(p, space, fold->qp[i]);
2353 if (i)
2354 p = isl_printer_print_str(p, ")");
2356 return p;
2359 __isl_give isl_printer *isl_printer_print_qpolynomial_fold(
2360 __isl_take isl_printer *p, __isl_keep isl_qpolynomial_fold *fold)
2362 if (!p || !fold)
2363 goto error;
2364 if (p->output_format == ISL_FORMAT_ISL)
2365 return qpolynomial_fold_print(fold, p);
2366 else if (p->output_format == ISL_FORMAT_C)
2367 return print_qpolynomial_fold_c(p, fold->dim, fold);
2368 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
2369 goto error);
2370 error:
2371 isl_printer_free(p);
2372 return NULL;
2375 /* Print the piecewise quasi-polynomial reduction "pwf" to "p" in C format.
2377 static __isl_give isl_printer *print_pw_qpolynomial_fold_c(
2378 __isl_take isl_printer *p, __isl_keep isl_pw_qpolynomial_fold *pwf)
2380 int i;
2381 isl_space *space;
2383 space = isl_pw_qpolynomial_fold_get_domain_space(pwf);
2384 if (pwf->n == 1 && isl_set_plain_is_universe(pwf->p[0].set)) {
2385 p = print_qpolynomial_fold_c(p, space, pwf->p[0].fold);
2386 isl_space_free(space);
2387 return p;
2390 for (i = 0; i < pwf->n; ++i) {
2391 p = isl_printer_print_str(p, "(");
2392 p = print_set_c(p, space, pwf->p[i].set);
2393 p = isl_printer_print_str(p, ") ? (");
2394 p = print_qpolynomial_fold_c(p, space, pwf->p[i].fold);
2395 p = isl_printer_print_str(p, ") : ");
2398 isl_space_free(space);
2399 p = isl_printer_print_str(p, "0");
2400 return p;
2403 __isl_give isl_printer *isl_printer_print_pw_qpolynomial_fold(
2404 __isl_take isl_printer *p, __isl_keep isl_pw_qpolynomial_fold *pwf)
2406 if (!p || !pwf)
2407 goto error;
2409 if (p->output_format == ISL_FORMAT_ISL)
2410 return print_pw_qpolynomial_fold_isl(p, pwf);
2411 else if (p->output_format == ISL_FORMAT_C)
2412 return print_pw_qpolynomial_fold_c(p, pwf);
2413 isl_assert(p->ctx, 0, goto error);
2414 error:
2415 isl_printer_free(p);
2416 return NULL;
2419 void isl_pw_qpolynomial_fold_print(__isl_keep isl_pw_qpolynomial_fold *pwf,
2420 FILE *out, unsigned output_format)
2422 isl_printer *p;
2424 if (!pwf)
2425 return;
2427 p = isl_printer_to_file(pwf->dim->ctx, out);
2428 p = isl_printer_set_output_format(p, output_format);
2429 p = isl_printer_print_pw_qpolynomial_fold(p, pwf);
2431 isl_printer_free(p);
2434 static isl_stat print_pwf_body(__isl_take isl_pw_qpolynomial_fold *pwf,
2435 void *user)
2437 struct isl_union_print_data *data;
2438 data = (struct isl_union_print_data *)user;
2440 if (!data->first)
2441 data->p = isl_printer_print_str(data->p, "; ");
2442 data->first = 0;
2444 data->p = isl_pwf_print_isl_body(data->p, pwf);
2445 isl_pw_qpolynomial_fold_free(pwf);
2447 return isl_stat_ok;
2450 static __isl_give isl_printer *print_union_pw_qpolynomial_fold_isl(
2451 __isl_take isl_printer *p,
2452 __isl_keep isl_union_pw_qpolynomial_fold *upwf)
2454 struct isl_union_print_data data;
2455 struct isl_print_space_data space_data = { 0 };
2456 isl_space *space;
2458 space = isl_union_pw_qpolynomial_fold_get_space(upwf);
2459 p = print_param_tuple(p, space, &space_data);
2460 isl_space_free(space);
2461 p = isl_printer_print_str(p, "{ ");
2462 data.p = p;
2463 data.first = 1;
2464 isl_union_pw_qpolynomial_fold_foreach_pw_qpolynomial_fold(upwf,
2465 &print_pwf_body, &data);
2466 p = data.p;
2467 p = isl_printer_print_str(p, " }");
2468 return p;
2471 __isl_give isl_printer *isl_printer_print_union_pw_qpolynomial_fold(
2472 __isl_take isl_printer *p,
2473 __isl_keep isl_union_pw_qpolynomial_fold *upwf)
2475 if (!p || !upwf)
2476 goto error;
2478 if (p->output_format == ISL_FORMAT_ISL)
2479 return print_union_pw_qpolynomial_fold_isl(p, upwf);
2480 isl_die(p->ctx, isl_error_invalid,
2481 "invalid output format for isl_union_pw_qpolynomial_fold",
2482 goto error);
2483 error:
2484 isl_printer_free(p);
2485 return NULL;
2488 /* Print the isl_constraint "c" to "p".
2490 __isl_give isl_printer *isl_printer_print_constraint(__isl_take isl_printer *p,
2491 __isl_keep isl_constraint *c)
2493 struct isl_print_space_data data = { 0 };
2494 isl_local_space *ls;
2495 isl_space *space;
2496 isl_bool exists;
2498 if (!p || !c)
2499 goto error;
2501 ls = isl_constraint_get_local_space(c);
2502 if (!ls)
2503 return isl_printer_free(p);
2504 space = isl_local_space_get_space(ls);
2505 p = print_param_tuple(p, space, &data);
2506 p = isl_printer_print_str(p, "{ ");
2507 p = isl_print_space(space, p, 0, &data);
2508 p = isl_printer_print_str(p, " : ");
2509 exists = need_exists(p, ls->div);
2510 if (exists < 0)
2511 p = isl_printer_free(p);
2512 if (exists >= 0 && exists)
2513 p = open_exists(p, space, ls->div, 0);
2514 p = print_affine_of_len(space, ls->div, p, c->v->el, c->v->size);
2515 if (isl_constraint_is_equality(c))
2516 p = isl_printer_print_str(p, " = 0");
2517 else
2518 p = isl_printer_print_str(p, " >= 0");
2519 if (exists >= 0 && exists)
2520 p = isl_printer_print_str(p, s_close_exists[0]);
2521 p = isl_printer_print_str(p, " }");
2522 isl_space_free(space);
2523 isl_local_space_free(ls);
2525 return p;
2526 error:
2527 isl_printer_free(p);
2528 return NULL;
2531 static __isl_give isl_printer *isl_printer_print_space_isl(
2532 __isl_take isl_printer *p, __isl_keep isl_space *space)
2534 struct isl_print_space_data data = { 0 };
2536 if (!space)
2537 goto error;
2539 p = print_param_tuple(p, space, &data);
2541 p = isl_printer_print_str(p, "{ ");
2542 if (isl_space_is_params(space))
2543 p = isl_printer_print_str(p, s_such_that[0]);
2544 else
2545 p = isl_print_space(space, p, 0, &data);
2546 p = isl_printer_print_str(p, " }");
2548 return p;
2549 error:
2550 isl_printer_free(p);
2551 return NULL;
2554 __isl_give isl_printer *isl_printer_print_space(__isl_take isl_printer *p,
2555 __isl_keep isl_space *space)
2557 if (!p || !space)
2558 return isl_printer_free(p);
2559 if (p->output_format == ISL_FORMAT_ISL)
2560 return isl_printer_print_space_isl(p, space);
2561 else if (p->output_format == ISL_FORMAT_OMEGA)
2562 return print_omega_parameters(space, p);
2564 isl_die(isl_space_get_ctx(space), isl_error_unsupported,
2565 "output format not supported for space",
2566 return isl_printer_free(p));
2569 __isl_give isl_printer *isl_printer_print_local_space(__isl_take isl_printer *p,
2570 __isl_keep isl_local_space *ls)
2572 struct isl_print_space_data data = { 0 };
2573 unsigned n_div;
2575 if (!ls)
2576 goto error;
2578 p = print_param_tuple(p, ls->dim, &data);
2579 p = isl_printer_print_str(p, "{ ");
2580 p = isl_print_space(ls->dim, p, 0, &data);
2581 n_div = isl_local_space_dim(ls, isl_dim_div);
2582 if (n_div > 0) {
2583 p = isl_printer_print_str(p, " : ");
2584 p = isl_printer_print_str(p, s_open_exists[0]);
2585 p = print_div_list(p, ls->dim, ls->div, 0, 1);
2586 p = isl_printer_print_str(p, s_close_exists[0]);
2587 } else if (isl_space_is_params(ls->dim))
2588 p = isl_printer_print_str(p, s_such_that[0]);
2589 p = isl_printer_print_str(p, " }");
2590 return p;
2591 error:
2592 isl_printer_free(p);
2593 return NULL;
2596 /* Print the (potentially rational) affine expression "aff" to "p",
2597 * with the variable names taken from "space".
2599 static __isl_give isl_printer *print_aff_body(__isl_take isl_printer *p,
2600 __isl_keep isl_space *space, __isl_keep isl_aff *aff)
2602 unsigned total;
2604 if (isl_aff_is_nan(aff))
2605 return isl_printer_print_str(p, "NaN");
2607 total = isl_local_space_dim(aff->ls, isl_dim_all);
2608 p = isl_printer_print_str(p, "(");
2609 p = print_affine_of_len(space, aff->ls->div, p,
2610 aff->v->el + 1, 1 + total);
2611 if (isl_int_is_one(aff->v->el[0]))
2612 p = isl_printer_print_str(p, ")");
2613 else {
2614 p = isl_printer_print_str(p, ")/");
2615 p = isl_printer_print_isl_int(p, aff->v->el[0]);
2618 return p;
2621 static __isl_give isl_printer *print_aff(__isl_take isl_printer *p,
2622 __isl_keep isl_aff *aff)
2624 struct isl_print_space_data data = { 0 };
2626 if (isl_space_is_params(aff->ls->dim))
2628 else {
2629 p = print_tuple(aff->ls->dim, p, isl_dim_set, &data);
2630 p = isl_printer_print_str(p, " -> ");
2632 p = isl_printer_print_str(p, "[");
2633 p = print_aff_body(p, aff->ls->dim, aff);
2634 p = isl_printer_print_str(p, "]");
2636 return p;
2639 static __isl_give isl_printer *print_aff_isl(__isl_take isl_printer *p,
2640 __isl_keep isl_aff *aff)
2642 struct isl_print_space_data data = { 0 };
2644 if (!aff)
2645 goto error;
2647 p = print_param_tuple(p, aff->ls->dim, &data);
2648 p = isl_printer_print_str(p, "{ ");
2649 p = print_aff(p, aff);
2650 p = isl_printer_print_str(p, " }");
2651 return p;
2652 error:
2653 isl_printer_free(p);
2654 return NULL;
2657 /* Print the body of an isl_pw_aff, i.e., a semicolon delimited
2658 * sequence of affine expressions, each followed by constraints.
2660 static __isl_give isl_printer *print_pw_aff_body(
2661 __isl_take isl_printer *p, __isl_keep isl_pw_aff *pa)
2663 int i;
2665 if (!pa)
2666 return isl_printer_free(p);
2668 for (i = 0; i < pa->n; ++i) {
2669 isl_space *space;
2671 if (i)
2672 p = isl_printer_print_str(p, "; ");
2673 p = print_aff(p, pa->p[i].aff);
2674 space = isl_aff_get_domain_space(pa->p[i].aff);
2675 p = print_disjuncts(set_to_map(pa->p[i].set), space, p, 0);
2676 isl_space_free(space);
2679 return p;
2682 static __isl_give isl_printer *print_pw_aff_isl(__isl_take isl_printer *p,
2683 __isl_keep isl_pw_aff *pwaff)
2685 struct isl_print_space_data data = { 0 };
2687 if (!pwaff)
2688 goto error;
2690 p = print_param_tuple(p, pwaff->dim, &data);
2691 p = isl_printer_print_str(p, "{ ");
2692 p = print_pw_aff_body(p, pwaff);
2693 p = isl_printer_print_str(p, " }");
2694 return p;
2695 error:
2696 isl_printer_free(p);
2697 return NULL;
2700 static __isl_give isl_printer *print_ls_affine_c(__isl_take isl_printer *p,
2701 __isl_keep isl_local_space *ls, isl_int *c);
2703 static __isl_give isl_printer *print_ls_name_c(__isl_take isl_printer *p,
2704 __isl_keep isl_local_space *ls, enum isl_dim_type type, unsigned pos)
2706 if (type == isl_dim_div) {
2707 p = isl_printer_print_str(p, "floord(");
2708 p = print_ls_affine_c(p, ls, ls->div->row[pos] + 1);
2709 p = isl_printer_print_str(p, ", ");
2710 p = isl_printer_print_isl_int(p, ls->div->row[pos][0]);
2711 p = isl_printer_print_str(p, ")");
2712 } else {
2713 const char *name;
2715 name = isl_space_get_dim_name(ls->dim, type, pos);
2716 if (!name)
2717 name = "UNNAMED";
2718 p = isl_printer_print_str(p, name);
2720 return p;
2723 static __isl_give isl_printer *print_ls_term_c(__isl_take isl_printer *p,
2724 __isl_keep isl_local_space *ls, isl_int c, unsigned pos)
2726 enum isl_dim_type type;
2728 if (!p || !ls)
2729 return isl_printer_free(p);
2731 if (pos == 0)
2732 return isl_printer_print_isl_int(p, c);
2734 if (isl_int_is_one(c))
2736 else if (isl_int_is_negone(c))
2737 p = isl_printer_print_str(p, "-");
2738 else {
2739 p = isl_printer_print_isl_int(p, c);
2740 p = isl_printer_print_str(p, "*");
2742 type = pos2type(ls->dim, &pos);
2743 p = print_ls_name_c(p, ls, type, pos);
2744 return p;
2747 static __isl_give isl_printer *print_ls_partial_affine_c(
2748 __isl_take isl_printer *p, __isl_keep isl_local_space *ls,
2749 isl_int *c, unsigned len)
2751 int i;
2752 int first;
2754 for (i = 0, first = 1; i < len; ++i) {
2755 int flip = 0;
2756 if (isl_int_is_zero(c[i]))
2757 continue;
2758 if (!first) {
2759 if (isl_int_is_neg(c[i])) {
2760 flip = 1;
2761 isl_int_neg(c[i], c[i]);
2762 p = isl_printer_print_str(p, " - ");
2763 } else
2764 p = isl_printer_print_str(p, " + ");
2766 first = 0;
2767 p = print_ls_term_c(p, ls, c[i], i);
2768 if (flip)
2769 isl_int_neg(c[i], c[i]);
2771 if (first)
2772 p = isl_printer_print_str(p, "0");
2773 return p;
2776 static __isl_give isl_printer *print_ls_affine_c(__isl_take isl_printer *p,
2777 __isl_keep isl_local_space *ls, isl_int *c)
2779 unsigned len = 1 + isl_local_space_dim(ls, isl_dim_all);
2780 return print_ls_partial_affine_c(p, ls, c, len);
2783 static __isl_give isl_printer *print_aff_c(__isl_take isl_printer *p,
2784 __isl_keep isl_aff *aff)
2786 unsigned total;
2788 total = isl_local_space_dim(aff->ls, isl_dim_all);
2789 if (!isl_int_is_one(aff->v->el[0]))
2790 p = isl_printer_print_str(p, "(");
2791 p = print_ls_partial_affine_c(p, aff->ls, aff->v->el + 1, 1 + total);
2792 if (!isl_int_is_one(aff->v->el[0])) {
2793 p = isl_printer_print_str(p, ")/");
2794 p = isl_printer_print_isl_int(p, aff->v->el[0]);
2796 return p;
2799 /* In the C format, we cannot express that "pwaff" may be undefined
2800 * on parts of the domain space. We therefore assume that the expression
2801 * will only be evaluated on its definition domain and compute the gist
2802 * of each cell with respect to this domain.
2804 static __isl_give isl_printer *print_pw_aff_c(__isl_take isl_printer *p,
2805 __isl_keep isl_pw_aff *pwaff)
2807 isl_set *domain;
2808 isl_ast_build *build;
2809 isl_ast_expr *expr;
2811 if (pwaff->n < 1)
2812 isl_die(p->ctx, isl_error_unsupported,
2813 "cannot print empty isl_pw_aff in C format",
2814 return isl_printer_free(p));
2816 domain = isl_pw_aff_domain(isl_pw_aff_copy(pwaff));
2817 build = isl_ast_build_from_context(domain);
2818 expr = isl_ast_build_expr_from_pw_aff(build, isl_pw_aff_copy(pwaff));
2819 p = isl_printer_print_ast_expr(p, expr);
2820 isl_ast_expr_free(expr);
2821 isl_ast_build_free(build);
2823 return p;
2826 __isl_give isl_printer *isl_printer_print_aff(__isl_take isl_printer *p,
2827 __isl_keep isl_aff *aff)
2829 if (!p || !aff)
2830 goto error;
2832 if (p->output_format == ISL_FORMAT_ISL)
2833 return print_aff_isl(p, aff);
2834 else if (p->output_format == ISL_FORMAT_C)
2835 return print_aff_c(p, aff);
2836 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
2837 goto error);
2838 error:
2839 isl_printer_free(p);
2840 return NULL;
2843 __isl_give isl_printer *isl_printer_print_pw_aff(__isl_take isl_printer *p,
2844 __isl_keep isl_pw_aff *pwaff)
2846 if (!p || !pwaff)
2847 goto error;
2849 if (p->output_format == ISL_FORMAT_ISL)
2850 return print_pw_aff_isl(p, pwaff);
2851 else if (p->output_format == ISL_FORMAT_C)
2852 return print_pw_aff_c(p, pwaff);
2853 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
2854 goto error);
2855 error:
2856 isl_printer_free(p);
2857 return NULL;
2860 /* Print "pa" in a sequence of isl_pw_affs delimited by semicolons.
2861 * Each isl_pw_aff itself is also printed as semicolon delimited
2862 * sequence of pieces.
2863 * If data->first = 1, then this is the first in the sequence.
2864 * Update data->first to tell the next element that it is not the first.
2866 static isl_stat print_pw_aff_body_wrap(__isl_take isl_pw_aff *pa,
2867 void *user)
2869 struct isl_union_print_data *data;
2870 data = (struct isl_union_print_data *) user;
2872 if (!data->first)
2873 data->p = isl_printer_print_str(data->p, "; ");
2874 data->first = 0;
2876 data->p = print_pw_aff_body(data->p, pa);
2877 isl_pw_aff_free(pa);
2879 return data->p ? isl_stat_ok : isl_stat_error;
2882 /* Print the body of an isl_union_pw_aff, i.e., a semicolon delimited
2883 * sequence of affine expressions, each followed by constraints,
2884 * with the sequence enclosed in braces.
2886 static __isl_give isl_printer *print_union_pw_aff_body(
2887 __isl_take isl_printer *p, __isl_keep isl_union_pw_aff *upa)
2889 struct isl_union_print_data data = { p, 1 };
2891 p = isl_printer_print_str(p, s_open_set[0]);
2892 data.p = p;
2893 if (isl_union_pw_aff_foreach_pw_aff(upa,
2894 &print_pw_aff_body_wrap, &data) < 0)
2895 data.p = isl_printer_free(p);
2896 p = data.p;
2897 p = isl_printer_print_str(p, s_close_set[0]);
2899 return p;
2902 /* Print the isl_union_pw_aff "upa" to "p" in isl format.
2904 * The individual isl_pw_affs are delimited by a semicolon.
2906 static __isl_give isl_printer *print_union_pw_aff_isl(
2907 __isl_take isl_printer *p, __isl_keep isl_union_pw_aff *upa)
2909 struct isl_print_space_data data = { 0 };
2910 isl_space *space;
2912 space = isl_union_pw_aff_get_space(upa);
2913 p = print_param_tuple(p, space, &data);
2914 isl_space_free(space);
2915 p = print_union_pw_aff_body(p, upa);
2916 return p;
2919 /* Print the isl_union_pw_aff "upa" to "p".
2921 * We currently only support an isl format.
2923 __isl_give isl_printer *isl_printer_print_union_pw_aff(
2924 __isl_take isl_printer *p, __isl_keep isl_union_pw_aff *upa)
2926 if (!p || !upa)
2927 return isl_printer_free(p);
2929 if (p->output_format == ISL_FORMAT_ISL)
2930 return print_union_pw_aff_isl(p, upa);
2931 isl_die(isl_printer_get_ctx(p), isl_error_unsupported,
2932 "unsupported output format", return isl_printer_free(p));
2935 /* Print dimension "pos" of data->space to "p".
2937 * data->user is assumed to be an isl_multi_aff.
2939 * If the current dimension is an output dimension, then print
2940 * the corresponding expression. Otherwise, print the name of the dimension.
2942 static __isl_give isl_printer *print_dim_ma(__isl_take isl_printer *p,
2943 struct isl_print_space_data *data, unsigned pos)
2945 isl_multi_aff *ma = data->user;
2947 if (data->type == isl_dim_out) {
2948 isl_space *space;
2950 space = isl_multi_aff_get_domain_space(ma);
2951 p = print_aff_body(p, space, ma->u.p[pos]);
2952 isl_space_free(space);
2953 } else {
2954 p = print_name(data->space, p, data->type, pos, data->latex);
2957 return p;
2960 static __isl_give isl_printer *print_multi_aff(__isl_take isl_printer *p,
2961 __isl_keep isl_multi_aff *maff)
2963 struct isl_print_space_data data = { 0 };
2965 data.print_dim = &print_dim_ma;
2966 data.user = maff;
2967 return isl_print_space(maff->space, p, 0, &data);
2970 static __isl_give isl_printer *print_multi_aff_isl(__isl_take isl_printer *p,
2971 __isl_keep isl_multi_aff *maff)
2973 struct isl_print_space_data data = { 0 };
2975 if (!maff)
2976 goto error;
2978 p = print_param_tuple(p, maff->space, &data);
2979 p = isl_printer_print_str(p, "{ ");
2980 p = print_multi_aff(p, maff);
2981 p = isl_printer_print_str(p, " }");
2982 return p;
2983 error:
2984 isl_printer_free(p);
2985 return NULL;
2988 __isl_give isl_printer *isl_printer_print_multi_aff(__isl_take isl_printer *p,
2989 __isl_keep isl_multi_aff *maff)
2991 if (!p || !maff)
2992 goto error;
2994 if (p->output_format == ISL_FORMAT_ISL)
2995 return print_multi_aff_isl(p, maff);
2996 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
2997 goto error);
2998 error:
2999 isl_printer_free(p);
3000 return NULL;
3003 static __isl_give isl_printer *print_pw_multi_aff_body(
3004 __isl_take isl_printer *p, __isl_keep isl_pw_multi_aff *pma)
3006 int i;
3008 if (!pma)
3009 goto error;
3011 for (i = 0; i < pma->n; ++i) {
3012 isl_space *space;
3014 if (i)
3015 p = isl_printer_print_str(p, "; ");
3016 p = print_multi_aff(p, pma->p[i].maff);
3017 space = isl_multi_aff_get_domain_space(pma->p[i].maff);
3018 p = print_disjuncts(set_to_map(pma->p[i].set), space, p, 0);
3019 isl_space_free(space);
3021 return p;
3022 error:
3023 isl_printer_free(p);
3024 return NULL;
3027 static __isl_give isl_printer *print_pw_multi_aff_isl(__isl_take isl_printer *p,
3028 __isl_keep isl_pw_multi_aff *pma)
3030 struct isl_print_space_data data = { 0 };
3032 if (!pma)
3033 goto error;
3035 p = print_param_tuple(p, pma->dim, &data);
3036 p = isl_printer_print_str(p, "{ ");
3037 p = print_pw_multi_aff_body(p, pma);
3038 p = isl_printer_print_str(p, " }");
3039 return p;
3040 error:
3041 isl_printer_free(p);
3042 return NULL;
3045 /* Print the unnamed, single-dimensional piecewise multi affine expression "pma"
3046 * to "p".
3048 static __isl_give isl_printer *print_unnamed_pw_multi_aff_c(
3049 __isl_take isl_printer *p, __isl_keep isl_pw_multi_aff *pma)
3051 int i;
3052 isl_space *space;
3054 space = isl_pw_multi_aff_get_domain_space(pma);
3055 for (i = 0; i < pma->n - 1; ++i) {
3056 p = isl_printer_print_str(p, "(");
3057 p = print_set_c(p, space, pma->p[i].set);
3058 p = isl_printer_print_str(p, ") ? (");
3059 p = print_aff_c(p, pma->p[i].maff->u.p[0]);
3060 p = isl_printer_print_str(p, ") : ");
3062 isl_space_free(space);
3064 return print_aff_c(p, pma->p[pma->n - 1].maff->u.p[0]);
3067 static __isl_give isl_printer *print_pw_multi_aff_c(__isl_take isl_printer *p,
3068 __isl_keep isl_pw_multi_aff *pma)
3070 int n;
3071 const char *name;
3073 if (!pma)
3074 goto error;
3075 if (pma->n < 1)
3076 isl_die(p->ctx, isl_error_unsupported,
3077 "cannot print empty isl_pw_multi_aff in C format",
3078 goto error);
3079 name = isl_pw_multi_aff_get_tuple_name(pma, isl_dim_out);
3080 if (!name && isl_pw_multi_aff_dim(pma, isl_dim_out) == 1)
3081 return print_unnamed_pw_multi_aff_c(p, pma);
3082 if (!name)
3083 isl_die(p->ctx, isl_error_unsupported,
3084 "cannot print unnamed isl_pw_multi_aff in C format",
3085 goto error);
3087 p = isl_printer_print_str(p, name);
3088 n = isl_pw_multi_aff_dim(pma, isl_dim_out);
3089 if (n != 0)
3090 isl_die(p->ctx, isl_error_unsupported,
3091 "not supported yet", goto error);
3093 return p;
3094 error:
3095 isl_printer_free(p);
3096 return NULL;
3099 __isl_give isl_printer *isl_printer_print_pw_multi_aff(
3100 __isl_take isl_printer *p, __isl_keep isl_pw_multi_aff *pma)
3102 if (!p || !pma)
3103 goto error;
3105 if (p->output_format == ISL_FORMAT_ISL)
3106 return print_pw_multi_aff_isl(p, pma);
3107 if (p->output_format == ISL_FORMAT_C)
3108 return print_pw_multi_aff_c(p, pma);
3109 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
3110 goto error);
3111 error:
3112 isl_printer_free(p);
3113 return NULL;
3116 static isl_stat print_pw_multi_aff_body_wrap(__isl_take isl_pw_multi_aff *pma,
3117 void *user)
3119 struct isl_union_print_data *data;
3120 data = (struct isl_union_print_data *) user;
3122 if (!data->first)
3123 data->p = isl_printer_print_str(data->p, "; ");
3124 data->first = 0;
3126 data->p = print_pw_multi_aff_body(data->p, pma);
3127 isl_pw_multi_aff_free(pma);
3129 return isl_stat_ok;
3132 static __isl_give isl_printer *print_union_pw_multi_aff_isl(
3133 __isl_take isl_printer *p, __isl_keep isl_union_pw_multi_aff *upma)
3135 struct isl_union_print_data data;
3136 struct isl_print_space_data space_data = { 0 };
3137 isl_space *space;
3139 space = isl_union_pw_multi_aff_get_space(upma);
3140 p = print_param_tuple(p, space, &space_data);
3141 isl_space_free(space);
3142 p = isl_printer_print_str(p, s_open_set[0]);
3143 data.p = p;
3144 data.first = 1;
3145 isl_union_pw_multi_aff_foreach_pw_multi_aff(upma,
3146 &print_pw_multi_aff_body_wrap, &data);
3147 p = data.p;
3148 p = isl_printer_print_str(p, s_close_set[0]);
3149 return p;
3152 __isl_give isl_printer *isl_printer_print_union_pw_multi_aff(
3153 __isl_take isl_printer *p, __isl_keep isl_union_pw_multi_aff *upma)
3155 if (!p || !upma)
3156 goto error;
3158 if (p->output_format == ISL_FORMAT_ISL)
3159 return print_union_pw_multi_aff_isl(p, upma);
3160 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
3161 goto error);
3162 error:
3163 isl_printer_free(p);
3164 return NULL;
3167 /* Print dimension "pos" of data->space to "p".
3169 * data->user is assumed to be an isl_multi_pw_aff.
3171 * If the current dimension is an output dimension, then print
3172 * the corresponding piecewise affine expression.
3173 * Otherwise, print the name of the dimension.
3175 static __isl_give isl_printer *print_dim_mpa(__isl_take isl_printer *p,
3176 struct isl_print_space_data *data, unsigned pos)
3178 int i;
3179 int need_parens;
3180 isl_space *space;
3181 isl_multi_pw_aff *mpa = data->user;
3182 isl_pw_aff *pa;
3184 if (data->type != isl_dim_out)
3185 return print_name(data->space, p, data->type, pos, data->latex);
3187 pa = mpa->u.p[pos];
3188 if (pa->n == 0)
3189 return isl_printer_print_str(p, "(0 : false)");
3191 need_parens = pa->n != 1 || !isl_set_plain_is_universe(pa->p[0].set);
3192 if (need_parens)
3193 p = isl_printer_print_str(p, "(");
3194 space = isl_multi_pw_aff_get_domain_space(mpa);
3195 for (i = 0; i < pa->n; ++i) {
3197 if (i)
3198 p = isl_printer_print_str(p, "; ");
3199 p = print_aff_body(p, space, pa->p[i].aff);
3200 p = print_disjuncts(pa->p[i].set, space, p, 0);
3202 isl_space_free(space);
3203 if (need_parens)
3204 p = isl_printer_print_str(p, ")");
3206 return p;
3209 /* Print "mpa" to "p" in isl format.
3211 * If "mpa" is zero-dimensional and has a non-trivial explicit domain,
3212 * then it is printed after the tuple of affine expressions.
3214 static __isl_give isl_printer *print_multi_pw_aff_isl(__isl_take isl_printer *p,
3215 __isl_keep isl_multi_pw_aff *mpa)
3217 struct isl_print_space_data data = { 0 };
3218 isl_bool has_domain;
3220 if (!mpa)
3221 return isl_printer_free(p);
3223 p = print_param_tuple(p, mpa->space, &data);
3224 p = isl_printer_print_str(p, "{ ");
3225 data.print_dim = &print_dim_mpa;
3226 data.user = mpa;
3227 p = isl_print_space(mpa->space, p, 0, &data);
3228 has_domain = isl_multi_pw_aff_has_non_trivial_domain(mpa);
3229 if (has_domain < 0)
3230 return isl_printer_free(p);
3231 if (has_domain) {
3232 isl_space *space;
3234 space = isl_space_domain(isl_space_copy(mpa->space));
3235 p = print_disjuncts_set(mpa->u.dom, space, p, 0);
3236 isl_space_free(space);
3238 p = isl_printer_print_str(p, " }");
3239 return p;
3242 __isl_give isl_printer *isl_printer_print_multi_pw_aff(
3243 __isl_take isl_printer *p, __isl_keep isl_multi_pw_aff *mpa)
3245 if (!p || !mpa)
3246 return isl_printer_free(p);
3248 if (p->output_format == ISL_FORMAT_ISL)
3249 return print_multi_pw_aff_isl(p, mpa);
3250 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
3251 return isl_printer_free(p));
3254 /* Print dimension "pos" of data->space to "p".
3256 * data->user is assumed to be an isl_multi_val.
3258 * If the current dimension is an output dimension, then print
3259 * the corresponding value. Otherwise, print the name of the dimension.
3261 static __isl_give isl_printer *print_dim_mv(__isl_take isl_printer *p,
3262 struct isl_print_space_data *data, unsigned pos)
3264 isl_multi_val *mv = data->user;
3266 if (data->type == isl_dim_out)
3267 return isl_printer_print_val(p, mv->u.p[pos]);
3268 else
3269 return print_name(data->space, p, data->type, pos, data->latex);
3272 /* Print the isl_multi_val "mv" to "p" in isl format.
3274 static __isl_give isl_printer *print_multi_val_isl(__isl_take isl_printer *p,
3275 __isl_keep isl_multi_val *mv)
3277 struct isl_print_space_data data = { 0 };
3279 if (!mv)
3280 return isl_printer_free(p);
3282 p = print_param_tuple(p, mv->space, &data);
3283 p = isl_printer_print_str(p, "{ ");
3284 data.print_dim = &print_dim_mv;
3285 data.user = mv;
3286 p = isl_print_space(mv->space, p, 0, &data);
3287 p = isl_printer_print_str(p, " }");
3288 return p;
3291 /* Print the isl_multi_val "mv" to "p".
3293 * Currently only supported in isl format.
3295 __isl_give isl_printer *isl_printer_print_multi_val(
3296 __isl_take isl_printer *p, __isl_keep isl_multi_val *mv)
3298 if (!p || !mv)
3299 return isl_printer_free(p);
3301 if (p->output_format == ISL_FORMAT_ISL)
3302 return print_multi_val_isl(p, mv);
3303 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
3304 return isl_printer_free(p));
3307 /* Print dimension "pos" of data->space to "p".
3309 * data->user is assumed to be an isl_multi_union_pw_aff.
3311 * The current dimension is necessarily a set dimension, so
3312 * we print the corresponding isl_union_pw_aff, including
3313 * the braces.
3315 static __isl_give isl_printer *print_union_pw_aff_dim(__isl_take isl_printer *p,
3316 struct isl_print_space_data *data, unsigned pos)
3318 isl_multi_union_pw_aff *mupa = data->user;
3319 isl_union_pw_aff *upa;
3321 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, pos);
3322 p = print_union_pw_aff_body(p, upa);
3323 isl_union_pw_aff_free(upa);
3325 return p;
3328 /* Print the isl_multi_union_pw_aff "mupa" to "p" in isl format.
3330 * If "mupa" is zero-dimensional and has a non-trivial explicit domain,
3331 * then it is printed after the tuple of affine expressions.
3332 * In order to clarify that this domain belongs to the expression,
3333 * the tuple along with the domain are placed inside parentheses.
3334 * If "mupa" has any parameters, then the opening parenthesis
3335 * appears after the parameter declarations.
3337 static __isl_give isl_printer *print_multi_union_pw_aff_isl(
3338 __isl_take isl_printer *p, __isl_keep isl_multi_union_pw_aff *mupa)
3340 struct isl_print_space_data data = { 0 };
3341 isl_bool has_domain;
3342 isl_space *space;
3344 if (!mupa)
3345 return isl_printer_free(p);
3346 has_domain = isl_multi_union_pw_aff_has_non_trivial_domain(mupa);
3347 if (has_domain < 0)
3348 return isl_printer_free(p);
3350 space = isl_multi_union_pw_aff_get_space(mupa);
3351 p = print_param_tuple(p, space, &data);
3353 if (has_domain)
3354 p = isl_printer_print_str(p, "(");
3356 data.print_dim = &print_union_pw_aff_dim;
3357 data.user = mupa;
3359 p = isl_print_space(space, p, 0, &data);
3360 isl_space_free(space);
3362 if (has_domain) {
3363 p = isl_printer_print_str(p, " : ");
3364 p = isl_printer_print_union_set_isl_body(p, mupa->u.dom);
3365 p = isl_printer_print_str(p, ")");
3368 return p;
3371 /* Print the isl_multi_union_pw_aff "mupa" to "p" in isl format.
3373 * We currently only support an isl format.
3375 __isl_give isl_printer *isl_printer_print_multi_union_pw_aff(
3376 __isl_take isl_printer *p, __isl_keep isl_multi_union_pw_aff *mupa)
3378 if (!p || !mupa)
3379 return isl_printer_free(p);
3381 if (p->output_format == ISL_FORMAT_ISL)
3382 return print_multi_union_pw_aff_isl(p, mupa);
3383 isl_die(isl_printer_get_ctx(p), isl_error_unsupported,
3384 "unsupported output format", return isl_printer_free(p));