isl_map_simplify.c: isl_basic_map_eliminate_vars: drop redundant mark removal
[isl.git] / isl_output.c
blob338077bc14efd53b309736c92662188a01809e2e
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 *dim,
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(dim, t);
176 for (p = 0; p < s; ++p) {
177 const char *n = isl_space_get_dim_name(dim, 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 *dim, unsigned *pos)
222 enum isl_dim_type type;
223 unsigned n_in = isl_space_dim(dim, isl_dim_in);
224 unsigned n_out = isl_space_dim(dim, isl_dim_out);
225 unsigned nparam = isl_space_dim(dim, 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_dim 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_dim, enum isl_dim_type local_type,
346 struct isl_print_space_data *data, int offset)
348 int i;
350 if (data->space != local_dim && local_type == isl_dim_out)
351 offset += local_dim->n_in;
353 for (i = 0; i < isl_space_dim(local_dim, 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_dim, 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_dim, local_type);
383 if ((local_type == isl_dim_in || local_type == isl_dim_out)) {
384 name = isl_space_get_tuple_name(local_dim, 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_dim->nested[local_type - isl_dim_in]) {
397 if (data->space != local_dim && local_type == isl_dim_out)
398 offset += local_dim->n_in;
399 p = print_nested_map_dim(p,
400 local_dim->nested[local_type - isl_dim_in],
401 data, offset);
402 } else
403 p = print_nested_var_list(p, local_dim, 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(__isl_keep isl_space *dim,
450 __isl_take isl_printer *p)
452 if (isl_space_dim(dim, 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, dim, 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 upoly_rec_n_non_zero(__isl_keep struct isl_upoly_rec *rec)
1689 int i;
1690 int n;
1692 for (i = 0, n = 0; i < rec->n; ++i)
1693 if (!isl_upoly_is_zero(rec->p[i]))
1694 ++n;
1696 return n;
1699 static __isl_give isl_printer *upoly_print_cst(__isl_keep struct isl_upoly *up,
1700 __isl_take isl_printer *p, int first)
1702 struct isl_upoly_cst *cst;
1703 int neg;
1705 cst = isl_upoly_as_cst(up);
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 *dim, __isl_keep isl_mat *div, int var)
1734 unsigned total;
1736 total = isl_space_dim(dim, isl_dim_all);
1737 if (var < total)
1738 p = print_term(dim, NULL, dim->ctx->one, 1 + var, p, 0);
1739 else
1740 p = print_div(dim, 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 "up" defined over the domain space "space" and
1764 * local variables defined by "div" to "p".
1766 static __isl_give isl_printer *upoly_print(__isl_keep struct isl_upoly *up,
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 struct isl_upoly_rec *rec;
1773 if (!p || !up || !space || !div)
1774 goto error;
1776 if (isl_upoly_is_cst(up))
1777 return upoly_print_cst(up, p, 1);
1779 rec = isl_upoly_as_rec(up);
1780 if (!rec)
1781 goto error;
1782 n = upoly_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_upoly_is_zero(rec->p[i]))
1788 continue;
1789 if (isl_upoly_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_upoly_is_cst(rec->p[i]) &&
1797 !isl_upoly_is_one(rec->p[i]))
1798 p = upoly_print_cst(rec->p[i], p, first);
1799 else {
1800 if (!first)
1801 p = isl_printer_print_str(p, " + ");
1802 if (i == 0 || !isl_upoly_is_one(rec->p[i]))
1803 p = upoly_print(rec->p[i], space, div, p);
1805 first = 0;
1806 if (i == 0)
1807 continue;
1808 if (!isl_upoly_is_one(rec->p[i]) &&
1809 !isl_upoly_is_negone(rec->p[i]))
1810 p = isl_printer_print_str(p, " * ");
1811 p = print_pow(p, space, div, rec->up.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 = upoly_print(qp->upoly, 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 = upoly_print(qp->upoly, 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 *dim, __isl_keep isl_basic_set *bset, isl_int *c);
2064 static __isl_give isl_printer *print_name_c(__isl_take isl_printer *p,
2065 __isl_keep isl_space *dim,
2066 __isl_keep isl_basic_set *bset, enum isl_dim_type type, unsigned pos)
2068 if (type == isl_dim_div) {
2069 p = isl_printer_print_str(p, "floord(");
2070 p = print_affine_c(p, dim, bset, bset->div[pos] + 1);
2071 p = isl_printer_print_str(p, ", ");
2072 p = isl_printer_print_isl_int(p, bset->div[pos][0]);
2073 p = isl_printer_print_str(p, ")");
2074 } else {
2075 const char *name;
2077 name = isl_space_get_dim_name(dim, type, pos);
2078 if (!name)
2079 name = "UNNAMED";
2080 p = isl_printer_print_str(p, name);
2082 return p;
2085 static __isl_give isl_printer *print_term_c(__isl_take isl_printer *p,
2086 __isl_keep isl_space *space,
2087 __isl_keep isl_basic_set *bset, isl_int c, unsigned pos)
2089 enum isl_dim_type type;
2091 if (!p || !space)
2092 return isl_printer_free(p);
2094 if (pos == 0)
2095 return isl_printer_print_isl_int(p, c);
2097 if (isl_int_is_one(c))
2099 else if (isl_int_is_negone(c))
2100 p = isl_printer_print_str(p, "-");
2101 else {
2102 p = isl_printer_print_isl_int(p, c);
2103 p = isl_printer_print_str(p, "*");
2105 type = pos2type(space, &pos);
2106 p = print_name_c(p, space, bset, type, pos);
2107 return p;
2110 static __isl_give isl_printer *print_partial_affine_c(__isl_take isl_printer *p,
2111 __isl_keep isl_space *dim,
2112 __isl_keep isl_basic_set *bset, isl_int *c, unsigned len)
2114 int i;
2115 int first;
2117 for (i = 0, first = 1; i < len; ++i) {
2118 int flip = 0;
2119 if (isl_int_is_zero(c[i]))
2120 continue;
2121 if (!first) {
2122 if (isl_int_is_neg(c[i])) {
2123 flip = 1;
2124 isl_int_neg(c[i], c[i]);
2125 p = isl_printer_print_str(p, " - ");
2126 } else
2127 p = isl_printer_print_str(p, " + ");
2129 first = 0;
2130 p = print_term_c(p, dim, bset, c[i], i);
2131 if (flip)
2132 isl_int_neg(c[i], c[i]);
2134 if (first)
2135 p = isl_printer_print_str(p, "0");
2136 return p;
2139 static __isl_give isl_printer *print_affine_c(__isl_take isl_printer *p,
2140 __isl_keep isl_space *dim, __isl_keep isl_basic_set *bset, isl_int *c)
2142 unsigned len = 1 + isl_basic_set_total_dim(bset);
2143 return print_partial_affine_c(p, dim, bset, c, len);
2146 /* We skip the constraint if it is implied by the div expression.
2148 * *first indicates whether this is the first constraint in the conjunction and
2149 * is updated if the constraint is actually printed.
2151 static __isl_give isl_printer *print_constraint_c(__isl_take isl_printer *p,
2152 __isl_keep isl_space *dim,
2153 __isl_keep isl_basic_set *bset, isl_int *c, const char *op, int *first)
2155 unsigned o_div;
2156 unsigned n_div;
2157 int div;
2159 o_div = isl_basic_set_offset(bset, isl_dim_div);
2160 n_div = isl_basic_set_dim(bset, isl_dim_div);
2161 div = isl_seq_last_non_zero(c + o_div, n_div);
2162 if (div >= 0) {
2163 isl_bool is_div = isl_basic_set_is_div_constraint(bset, c, div);
2164 if (is_div < 0)
2165 return isl_printer_free(p);
2166 if (is_div)
2167 return p;
2170 if (!*first)
2171 p = isl_printer_print_str(p, " && ");
2173 p = print_affine_c(p, dim, bset, c);
2174 p = isl_printer_print_str(p, " ");
2175 p = isl_printer_print_str(p, op);
2176 p = isl_printer_print_str(p, " 0");
2178 *first = 0;
2180 return p;
2183 static __isl_give isl_printer *print_basic_set_c(__isl_take isl_printer *p,
2184 __isl_keep isl_space *dim, __isl_keep isl_basic_set *bset)
2186 int i, j;
2187 int first = 1;
2188 unsigned n_div = isl_basic_set_dim(bset, isl_dim_div);
2189 unsigned total = isl_basic_set_total_dim(bset) - n_div;
2191 for (i = 0; i < bset->n_eq; ++i) {
2192 j = isl_seq_last_non_zero(bset->eq[i] + 1 + total, n_div);
2193 if (j < 0)
2194 p = print_constraint_c(p, dim, bset,
2195 bset->eq[i], "==", &first);
2196 else {
2197 if (i)
2198 p = isl_printer_print_str(p, " && ");
2199 p = isl_printer_print_str(p, "(");
2200 p = print_partial_affine_c(p, dim, bset, bset->eq[i],
2201 1 + total + j);
2202 p = isl_printer_print_str(p, ") % ");
2203 p = isl_printer_print_isl_int(p,
2204 bset->eq[i][1 + total + j]);
2205 p = isl_printer_print_str(p, " == 0");
2206 first = 0;
2209 for (i = 0; i < bset->n_ineq; ++i)
2210 p = print_constraint_c(p, dim, bset, bset->ineq[i], ">=",
2211 &first);
2212 return p;
2215 static __isl_give isl_printer *print_set_c(__isl_take isl_printer *p,
2216 __isl_keep isl_space *dim, __isl_keep isl_set *set)
2218 int i;
2220 if (!set)
2221 return isl_printer_free(p);
2223 if (set->n == 0)
2224 p = isl_printer_print_str(p, "0");
2226 for (i = 0; i < set->n; ++i) {
2227 if (i)
2228 p = isl_printer_print_str(p, " || ");
2229 if (set->n > 1)
2230 p = isl_printer_print_str(p, "(");
2231 p = print_basic_set_c(p, dim, set->p[i]);
2232 if (set->n > 1)
2233 p = isl_printer_print_str(p, ")");
2235 return p;
2238 /* Print the piecewise quasi-polynomial "pwqp" to "p" in C format.
2240 static __isl_give isl_printer *print_pw_qpolynomial_c(
2241 __isl_take isl_printer *p, __isl_keep isl_pw_qpolynomial *pwqp)
2243 int i;
2244 isl_space *space;
2246 space = isl_pw_qpolynomial_get_domain_space(pwqp);
2247 if (pwqp->n == 1 && isl_set_plain_is_universe(pwqp->p[0].set)) {
2248 p = print_qpolynomial_c(p, space, pwqp->p[0].qp);
2249 isl_space_free(space);
2250 return p;
2253 for (i = 0; i < pwqp->n; ++i) {
2254 p = isl_printer_print_str(p, "(");
2255 p = print_set_c(p, space, pwqp->p[i].set);
2256 p = isl_printer_print_str(p, ") ? (");
2257 p = print_qpolynomial_c(p, space, pwqp->p[i].qp);
2258 p = isl_printer_print_str(p, ") : ");
2261 isl_space_free(space);
2262 p = isl_printer_print_str(p, "0");
2263 return p;
2266 __isl_give isl_printer *isl_printer_print_pw_qpolynomial(
2267 __isl_take isl_printer *p, __isl_keep isl_pw_qpolynomial *pwqp)
2269 if (!p || !pwqp)
2270 goto error;
2272 if (p->output_format == ISL_FORMAT_ISL)
2273 return print_pw_qpolynomial_isl(p, pwqp);
2274 else if (p->output_format == ISL_FORMAT_C)
2275 return print_pw_qpolynomial_c(p, pwqp);
2276 isl_assert(p->ctx, 0, goto error);
2277 error:
2278 isl_printer_free(p);
2279 return NULL;
2282 static isl_stat print_pwqp_body(__isl_take isl_pw_qpolynomial *pwqp, void *user)
2284 struct isl_union_print_data *data;
2285 data = (struct isl_union_print_data *)user;
2287 if (!data->first)
2288 data->p = isl_printer_print_str(data->p, "; ");
2289 data->first = 0;
2291 data->p = isl_pwqp_print_isl_body(data->p, pwqp);
2292 isl_pw_qpolynomial_free(pwqp);
2294 return isl_stat_ok;
2297 static __isl_give isl_printer *print_union_pw_qpolynomial_isl(
2298 __isl_take isl_printer *p, __isl_keep isl_union_pw_qpolynomial *upwqp)
2300 struct isl_union_print_data data;
2301 struct isl_print_space_data space_data = { 0 };
2302 isl_space *space;
2304 space = isl_union_pw_qpolynomial_get_space(upwqp);
2305 p = print_param_tuple(p, space, &space_data);
2306 isl_space_free(space);
2307 p = isl_printer_print_str(p, "{ ");
2308 data.p = p;
2309 data.first = 1;
2310 isl_union_pw_qpolynomial_foreach_pw_qpolynomial(upwqp, &print_pwqp_body,
2311 &data);
2312 p = data.p;
2313 p = isl_printer_print_str(p, " }");
2314 return p;
2317 __isl_give isl_printer *isl_printer_print_union_pw_qpolynomial(
2318 __isl_take isl_printer *p, __isl_keep isl_union_pw_qpolynomial *upwqp)
2320 if (!p || !upwqp)
2321 goto error;
2323 if (p->output_format == ISL_FORMAT_ISL)
2324 return print_union_pw_qpolynomial_isl(p, upwqp);
2325 isl_die(p->ctx, isl_error_invalid,
2326 "invalid output format for isl_union_pw_qpolynomial",
2327 goto error);
2328 error:
2329 isl_printer_free(p);
2330 return NULL;
2333 /* Print the quasi-polynomial reduction "fold" to "p" in C format,
2334 * with the variable names taken from the domain space "space".
2336 static __isl_give isl_printer *print_qpolynomial_fold_c(
2337 __isl_take isl_printer *p, __isl_keep isl_space *space,
2338 __isl_keep isl_qpolynomial_fold *fold)
2340 int i;
2342 for (i = 0; i < fold->n - 1; ++i)
2343 if (fold->type == isl_fold_min)
2344 p = isl_printer_print_str(p, "min(");
2345 else if (fold->type == isl_fold_max)
2346 p = isl_printer_print_str(p, "max(");
2348 for (i = 0; i < fold->n; ++i) {
2349 if (i)
2350 p = isl_printer_print_str(p, ", ");
2351 p = print_qpolynomial_c(p, space, fold->qp[i]);
2352 if (i)
2353 p = isl_printer_print_str(p, ")");
2355 return p;
2358 __isl_give isl_printer *isl_printer_print_qpolynomial_fold(
2359 __isl_take isl_printer *p, __isl_keep isl_qpolynomial_fold *fold)
2361 if (!p || !fold)
2362 goto error;
2363 if (p->output_format == ISL_FORMAT_ISL)
2364 return qpolynomial_fold_print(fold, p);
2365 else if (p->output_format == ISL_FORMAT_C)
2366 return print_qpolynomial_fold_c(p, fold->dim, fold);
2367 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
2368 goto error);
2369 error:
2370 isl_printer_free(p);
2371 return NULL;
2374 /* Print the piecewise quasi-polynomial reduction "pwf" to "p" in C format.
2376 static __isl_give isl_printer *print_pw_qpolynomial_fold_c(
2377 __isl_take isl_printer *p, __isl_keep isl_pw_qpolynomial_fold *pwf)
2379 int i;
2380 isl_space *space;
2382 space = isl_pw_qpolynomial_fold_get_domain_space(pwf);
2383 if (pwf->n == 1 && isl_set_plain_is_universe(pwf->p[0].set)) {
2384 p = print_qpolynomial_fold_c(p, space, pwf->p[0].fold);
2385 isl_space_free(space);
2386 return p;
2389 for (i = 0; i < pwf->n; ++i) {
2390 p = isl_printer_print_str(p, "(");
2391 p = print_set_c(p, space, pwf->p[i].set);
2392 p = isl_printer_print_str(p, ") ? (");
2393 p = print_qpolynomial_fold_c(p, space, pwf->p[i].fold);
2394 p = isl_printer_print_str(p, ") : ");
2397 isl_space_free(space);
2398 p = isl_printer_print_str(p, "0");
2399 return p;
2402 __isl_give isl_printer *isl_printer_print_pw_qpolynomial_fold(
2403 __isl_take isl_printer *p, __isl_keep isl_pw_qpolynomial_fold *pwf)
2405 if (!p || !pwf)
2406 goto error;
2408 if (p->output_format == ISL_FORMAT_ISL)
2409 return print_pw_qpolynomial_fold_isl(p, pwf);
2410 else if (p->output_format == ISL_FORMAT_C)
2411 return print_pw_qpolynomial_fold_c(p, pwf);
2412 isl_assert(p->ctx, 0, goto error);
2413 error:
2414 isl_printer_free(p);
2415 return NULL;
2418 void isl_pw_qpolynomial_fold_print(__isl_keep isl_pw_qpolynomial_fold *pwf,
2419 FILE *out, unsigned output_format)
2421 isl_printer *p;
2423 if (!pwf)
2424 return;
2426 p = isl_printer_to_file(pwf->dim->ctx, out);
2427 p = isl_printer_set_output_format(p, output_format);
2428 p = isl_printer_print_pw_qpolynomial_fold(p, pwf);
2430 isl_printer_free(p);
2433 static isl_stat print_pwf_body(__isl_take isl_pw_qpolynomial_fold *pwf,
2434 void *user)
2436 struct isl_union_print_data *data;
2437 data = (struct isl_union_print_data *)user;
2439 if (!data->first)
2440 data->p = isl_printer_print_str(data->p, "; ");
2441 data->first = 0;
2443 data->p = isl_pwf_print_isl_body(data->p, pwf);
2444 isl_pw_qpolynomial_fold_free(pwf);
2446 return isl_stat_ok;
2449 static __isl_give isl_printer *print_union_pw_qpolynomial_fold_isl(
2450 __isl_take isl_printer *p,
2451 __isl_keep isl_union_pw_qpolynomial_fold *upwf)
2453 struct isl_union_print_data data;
2454 struct isl_print_space_data space_data = { 0 };
2455 isl_space *space;
2457 space = isl_union_pw_qpolynomial_fold_get_space(upwf);
2458 p = print_param_tuple(p, space, &space_data);
2459 isl_space_free(space);
2460 p = isl_printer_print_str(p, "{ ");
2461 data.p = p;
2462 data.first = 1;
2463 isl_union_pw_qpolynomial_fold_foreach_pw_qpolynomial_fold(upwf,
2464 &print_pwf_body, &data);
2465 p = data.p;
2466 p = isl_printer_print_str(p, " }");
2467 return p;
2470 __isl_give isl_printer *isl_printer_print_union_pw_qpolynomial_fold(
2471 __isl_take isl_printer *p,
2472 __isl_keep isl_union_pw_qpolynomial_fold *upwf)
2474 if (!p || !upwf)
2475 goto error;
2477 if (p->output_format == ISL_FORMAT_ISL)
2478 return print_union_pw_qpolynomial_fold_isl(p, upwf);
2479 isl_die(p->ctx, isl_error_invalid,
2480 "invalid output format for isl_union_pw_qpolynomial_fold",
2481 goto error);
2482 error:
2483 isl_printer_free(p);
2484 return NULL;
2487 /* Print the isl_constraint "c" to "p".
2489 __isl_give isl_printer *isl_printer_print_constraint(__isl_take isl_printer *p,
2490 __isl_keep isl_constraint *c)
2492 struct isl_print_space_data data = { 0 };
2493 isl_local_space *ls;
2494 isl_space *space;
2495 isl_bool exists;
2497 if (!p || !c)
2498 goto error;
2500 ls = isl_constraint_get_local_space(c);
2501 if (!ls)
2502 return isl_printer_free(p);
2503 space = isl_local_space_get_space(ls);
2504 p = print_param_tuple(p, space, &data);
2505 p = isl_printer_print_str(p, "{ ");
2506 p = isl_print_space(space, p, 0, &data);
2507 p = isl_printer_print_str(p, " : ");
2508 exists = need_exists(p, ls->div);
2509 if (exists < 0)
2510 p = isl_printer_free(p);
2511 if (exists >= 0 && exists)
2512 p = open_exists(p, space, ls->div, 0);
2513 p = print_affine_of_len(space, ls->div, p, c->v->el, c->v->size);
2514 if (isl_constraint_is_equality(c))
2515 p = isl_printer_print_str(p, " = 0");
2516 else
2517 p = isl_printer_print_str(p, " >= 0");
2518 if (exists >= 0 && exists)
2519 p = isl_printer_print_str(p, s_close_exists[0]);
2520 p = isl_printer_print_str(p, " }");
2521 isl_space_free(space);
2522 isl_local_space_free(ls);
2524 return p;
2525 error:
2526 isl_printer_free(p);
2527 return NULL;
2530 static __isl_give isl_printer *isl_printer_print_space_isl(
2531 __isl_take isl_printer *p, __isl_keep isl_space *space)
2533 struct isl_print_space_data data = { 0 };
2535 if (!space)
2536 goto error;
2538 p = print_param_tuple(p, space, &data);
2540 p = isl_printer_print_str(p, "{ ");
2541 if (isl_space_is_params(space))
2542 p = isl_printer_print_str(p, s_such_that[0]);
2543 else
2544 p = isl_print_space(space, p, 0, &data);
2545 p = isl_printer_print_str(p, " }");
2547 return p;
2548 error:
2549 isl_printer_free(p);
2550 return NULL;
2553 __isl_give isl_printer *isl_printer_print_space(__isl_take isl_printer *p,
2554 __isl_keep isl_space *space)
2556 if (!p || !space)
2557 return isl_printer_free(p);
2558 if (p->output_format == ISL_FORMAT_ISL)
2559 return isl_printer_print_space_isl(p, space);
2560 else if (p->output_format == ISL_FORMAT_OMEGA)
2561 return print_omega_parameters(space, p);
2563 isl_die(isl_space_get_ctx(space), isl_error_unsupported,
2564 "output format not supported for space",
2565 return isl_printer_free(p));
2568 __isl_give isl_printer *isl_printer_print_local_space(__isl_take isl_printer *p,
2569 __isl_keep isl_local_space *ls)
2571 struct isl_print_space_data data = { 0 };
2572 unsigned n_div;
2574 if (!ls)
2575 goto error;
2577 p = print_param_tuple(p, ls->dim, &data);
2578 p = isl_printer_print_str(p, "{ ");
2579 p = isl_print_space(ls->dim, p, 0, &data);
2580 n_div = isl_local_space_dim(ls, isl_dim_div);
2581 if (n_div > 0) {
2582 p = isl_printer_print_str(p, " : ");
2583 p = isl_printer_print_str(p, s_open_exists[0]);
2584 p = print_div_list(p, ls->dim, ls->div, 0, 1);
2585 p = isl_printer_print_str(p, s_close_exists[0]);
2586 } else if (isl_space_is_params(ls->dim))
2587 p = isl_printer_print_str(p, s_such_that[0]);
2588 p = isl_printer_print_str(p, " }");
2589 return p;
2590 error:
2591 isl_printer_free(p);
2592 return NULL;
2595 /* Print the (potentially rational) affine expression "aff" to "p",
2596 * with the variable names taken from "space".
2598 static __isl_give isl_printer *print_aff_body(__isl_take isl_printer *p,
2599 __isl_keep isl_space *space, __isl_keep isl_aff *aff)
2601 unsigned total;
2603 if (isl_aff_is_nan(aff))
2604 return isl_printer_print_str(p, "NaN");
2606 total = isl_local_space_dim(aff->ls, isl_dim_all);
2607 p = isl_printer_print_str(p, "(");
2608 p = print_affine_of_len(space, aff->ls->div, p,
2609 aff->v->el + 1, 1 + total);
2610 if (isl_int_is_one(aff->v->el[0]))
2611 p = isl_printer_print_str(p, ")");
2612 else {
2613 p = isl_printer_print_str(p, ")/");
2614 p = isl_printer_print_isl_int(p, aff->v->el[0]);
2617 return p;
2620 static __isl_give isl_printer *print_aff(__isl_take isl_printer *p,
2621 __isl_keep isl_aff *aff)
2623 struct isl_print_space_data data = { 0 };
2625 if (isl_space_is_params(aff->ls->dim))
2627 else {
2628 p = print_tuple(aff->ls->dim, p, isl_dim_set, &data);
2629 p = isl_printer_print_str(p, " -> ");
2631 p = isl_printer_print_str(p, "[");
2632 p = print_aff_body(p, aff->ls->dim, aff);
2633 p = isl_printer_print_str(p, "]");
2635 return p;
2638 static __isl_give isl_printer *print_aff_isl(__isl_take isl_printer *p,
2639 __isl_keep isl_aff *aff)
2641 struct isl_print_space_data data = { 0 };
2643 if (!aff)
2644 goto error;
2646 p = print_param_tuple(p, aff->ls->dim, &data);
2647 p = isl_printer_print_str(p, "{ ");
2648 p = print_aff(p, aff);
2649 p = isl_printer_print_str(p, " }");
2650 return p;
2651 error:
2652 isl_printer_free(p);
2653 return NULL;
2656 /* Print the body of an isl_pw_aff, i.e., a semicolon delimited
2657 * sequence of affine expressions, each followed by constraints.
2659 static __isl_give isl_printer *print_pw_aff_body(
2660 __isl_take isl_printer *p, __isl_keep isl_pw_aff *pa)
2662 int i;
2664 if (!pa)
2665 return isl_printer_free(p);
2667 for (i = 0; i < pa->n; ++i) {
2668 isl_space *space;
2670 if (i)
2671 p = isl_printer_print_str(p, "; ");
2672 p = print_aff(p, pa->p[i].aff);
2673 space = isl_aff_get_domain_space(pa->p[i].aff);
2674 p = print_disjuncts(set_to_map(pa->p[i].set), space, p, 0);
2675 isl_space_free(space);
2678 return p;
2681 static __isl_give isl_printer *print_pw_aff_isl(__isl_take isl_printer *p,
2682 __isl_keep isl_pw_aff *pwaff)
2684 struct isl_print_space_data data = { 0 };
2686 if (!pwaff)
2687 goto error;
2689 p = print_param_tuple(p, pwaff->dim, &data);
2690 p = isl_printer_print_str(p, "{ ");
2691 p = print_pw_aff_body(p, pwaff);
2692 p = isl_printer_print_str(p, " }");
2693 return p;
2694 error:
2695 isl_printer_free(p);
2696 return NULL;
2699 static __isl_give isl_printer *print_ls_affine_c(__isl_take isl_printer *p,
2700 __isl_keep isl_local_space *ls, isl_int *c);
2702 static __isl_give isl_printer *print_ls_name_c(__isl_take isl_printer *p,
2703 __isl_keep isl_local_space *ls, enum isl_dim_type type, unsigned pos)
2705 if (type == isl_dim_div) {
2706 p = isl_printer_print_str(p, "floord(");
2707 p = print_ls_affine_c(p, ls, ls->div->row[pos] + 1);
2708 p = isl_printer_print_str(p, ", ");
2709 p = isl_printer_print_isl_int(p, ls->div->row[pos][0]);
2710 p = isl_printer_print_str(p, ")");
2711 } else {
2712 const char *name;
2714 name = isl_space_get_dim_name(ls->dim, type, pos);
2715 if (!name)
2716 name = "UNNAMED";
2717 p = isl_printer_print_str(p, name);
2719 return p;
2722 static __isl_give isl_printer *print_ls_term_c(__isl_take isl_printer *p,
2723 __isl_keep isl_local_space *ls, isl_int c, unsigned pos)
2725 enum isl_dim_type type;
2727 if (!p || !ls)
2728 return isl_printer_free(p);
2730 if (pos == 0)
2731 return isl_printer_print_isl_int(p, c);
2733 if (isl_int_is_one(c))
2735 else if (isl_int_is_negone(c))
2736 p = isl_printer_print_str(p, "-");
2737 else {
2738 p = isl_printer_print_isl_int(p, c);
2739 p = isl_printer_print_str(p, "*");
2741 type = pos2type(ls->dim, &pos);
2742 p = print_ls_name_c(p, ls, type, pos);
2743 return p;
2746 static __isl_give isl_printer *print_ls_partial_affine_c(
2747 __isl_take isl_printer *p, __isl_keep isl_local_space *ls,
2748 isl_int *c, unsigned len)
2750 int i;
2751 int first;
2753 for (i = 0, first = 1; i < len; ++i) {
2754 int flip = 0;
2755 if (isl_int_is_zero(c[i]))
2756 continue;
2757 if (!first) {
2758 if (isl_int_is_neg(c[i])) {
2759 flip = 1;
2760 isl_int_neg(c[i], c[i]);
2761 p = isl_printer_print_str(p, " - ");
2762 } else
2763 p = isl_printer_print_str(p, " + ");
2765 first = 0;
2766 p = print_ls_term_c(p, ls, c[i], i);
2767 if (flip)
2768 isl_int_neg(c[i], c[i]);
2770 if (first)
2771 p = isl_printer_print_str(p, "0");
2772 return p;
2775 static __isl_give isl_printer *print_ls_affine_c(__isl_take isl_printer *p,
2776 __isl_keep isl_local_space *ls, isl_int *c)
2778 unsigned len = 1 + isl_local_space_dim(ls, isl_dim_all);
2779 return print_ls_partial_affine_c(p, ls, c, len);
2782 static __isl_give isl_printer *print_aff_c(__isl_take isl_printer *p,
2783 __isl_keep isl_aff *aff)
2785 unsigned total;
2787 total = isl_local_space_dim(aff->ls, isl_dim_all);
2788 if (!isl_int_is_one(aff->v->el[0]))
2789 p = isl_printer_print_str(p, "(");
2790 p = print_ls_partial_affine_c(p, aff->ls, aff->v->el + 1, 1 + total);
2791 if (!isl_int_is_one(aff->v->el[0])) {
2792 p = isl_printer_print_str(p, ")/");
2793 p = isl_printer_print_isl_int(p, aff->v->el[0]);
2795 return p;
2798 /* In the C format, we cannot express that "pwaff" may be undefined
2799 * on parts of the domain space. We therefore assume that the expression
2800 * will only be evaluated on its definition domain and compute the gist
2801 * of each cell with respect to this domain.
2803 static __isl_give isl_printer *print_pw_aff_c(__isl_take isl_printer *p,
2804 __isl_keep isl_pw_aff *pwaff)
2806 isl_set *domain;
2807 isl_ast_build *build;
2808 isl_ast_expr *expr;
2810 if (pwaff->n < 1)
2811 isl_die(p->ctx, isl_error_unsupported,
2812 "cannot print empty isl_pw_aff in C format",
2813 return isl_printer_free(p));
2815 domain = isl_pw_aff_domain(isl_pw_aff_copy(pwaff));
2816 build = isl_ast_build_from_context(domain);
2817 expr = isl_ast_build_expr_from_pw_aff(build, isl_pw_aff_copy(pwaff));
2818 p = isl_printer_print_ast_expr(p, expr);
2819 isl_ast_expr_free(expr);
2820 isl_ast_build_free(build);
2822 return p;
2825 __isl_give isl_printer *isl_printer_print_aff(__isl_take isl_printer *p,
2826 __isl_keep isl_aff *aff)
2828 if (!p || !aff)
2829 goto error;
2831 if (p->output_format == ISL_FORMAT_ISL)
2832 return print_aff_isl(p, aff);
2833 else if (p->output_format == ISL_FORMAT_C)
2834 return print_aff_c(p, aff);
2835 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
2836 goto error);
2837 error:
2838 isl_printer_free(p);
2839 return NULL;
2842 __isl_give isl_printer *isl_printer_print_pw_aff(__isl_take isl_printer *p,
2843 __isl_keep isl_pw_aff *pwaff)
2845 if (!p || !pwaff)
2846 goto error;
2848 if (p->output_format == ISL_FORMAT_ISL)
2849 return print_pw_aff_isl(p, pwaff);
2850 else if (p->output_format == ISL_FORMAT_C)
2851 return print_pw_aff_c(p, pwaff);
2852 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
2853 goto error);
2854 error:
2855 isl_printer_free(p);
2856 return NULL;
2859 /* Print "pa" in a sequence of isl_pw_affs delimited by semicolons.
2860 * Each isl_pw_aff itself is also printed as semicolon delimited
2861 * sequence of pieces.
2862 * If data->first = 1, then this is the first in the sequence.
2863 * Update data->first to tell the next element that it is not the first.
2865 static isl_stat print_pw_aff_body_wrap(__isl_take isl_pw_aff *pa,
2866 void *user)
2868 struct isl_union_print_data *data;
2869 data = (struct isl_union_print_data *) user;
2871 if (!data->first)
2872 data->p = isl_printer_print_str(data->p, "; ");
2873 data->first = 0;
2875 data->p = print_pw_aff_body(data->p, pa);
2876 isl_pw_aff_free(pa);
2878 return data->p ? isl_stat_ok : isl_stat_error;
2881 /* Print the body of an isl_union_pw_aff, i.e., a semicolon delimited
2882 * sequence of affine expressions, each followed by constraints,
2883 * with the sequence enclosed in braces.
2885 static __isl_give isl_printer *print_union_pw_aff_body(
2886 __isl_take isl_printer *p, __isl_keep isl_union_pw_aff *upa)
2888 struct isl_union_print_data data = { p, 1 };
2890 p = isl_printer_print_str(p, s_open_set[0]);
2891 data.p = p;
2892 if (isl_union_pw_aff_foreach_pw_aff(upa,
2893 &print_pw_aff_body_wrap, &data) < 0)
2894 data.p = isl_printer_free(p);
2895 p = data.p;
2896 p = isl_printer_print_str(p, s_close_set[0]);
2898 return p;
2901 /* Print the isl_union_pw_aff "upa" to "p" in isl format.
2903 * The individual isl_pw_affs are delimited by a semicolon.
2905 static __isl_give isl_printer *print_union_pw_aff_isl(
2906 __isl_take isl_printer *p, __isl_keep isl_union_pw_aff *upa)
2908 struct isl_print_space_data data = { 0 };
2909 isl_space *space;
2911 space = isl_union_pw_aff_get_space(upa);
2912 p = print_param_tuple(p, space, &data);
2913 isl_space_free(space);
2914 p = print_union_pw_aff_body(p, upa);
2915 return p;
2918 /* Print the isl_union_pw_aff "upa" to "p".
2920 * We currently only support an isl format.
2922 __isl_give isl_printer *isl_printer_print_union_pw_aff(
2923 __isl_take isl_printer *p, __isl_keep isl_union_pw_aff *upa)
2925 if (!p || !upa)
2926 return isl_printer_free(p);
2928 if (p->output_format == ISL_FORMAT_ISL)
2929 return print_union_pw_aff_isl(p, upa);
2930 isl_die(isl_printer_get_ctx(p), isl_error_unsupported,
2931 "unsupported output format", return isl_printer_free(p));
2934 /* Print dimension "pos" of data->space to "p".
2936 * data->user is assumed to be an isl_multi_aff.
2938 * If the current dimension is an output dimension, then print
2939 * the corresponding expression. Otherwise, print the name of the dimension.
2941 static __isl_give isl_printer *print_dim_ma(__isl_take isl_printer *p,
2942 struct isl_print_space_data *data, unsigned pos)
2944 isl_multi_aff *ma = data->user;
2946 if (data->type == isl_dim_out) {
2947 isl_space *space;
2949 space = isl_multi_aff_get_domain_space(ma);
2950 p = print_aff_body(p, space, ma->u.p[pos]);
2951 isl_space_free(space);
2952 } else {
2953 p = print_name(data->space, p, data->type, pos, data->latex);
2956 return p;
2959 static __isl_give isl_printer *print_multi_aff(__isl_take isl_printer *p,
2960 __isl_keep isl_multi_aff *maff)
2962 struct isl_print_space_data data = { 0 };
2964 data.print_dim = &print_dim_ma;
2965 data.user = maff;
2966 return isl_print_space(maff->space, p, 0, &data);
2969 static __isl_give isl_printer *print_multi_aff_isl(__isl_take isl_printer *p,
2970 __isl_keep isl_multi_aff *maff)
2972 struct isl_print_space_data data = { 0 };
2974 if (!maff)
2975 goto error;
2977 p = print_param_tuple(p, maff->space, &data);
2978 p = isl_printer_print_str(p, "{ ");
2979 p = print_multi_aff(p, maff);
2980 p = isl_printer_print_str(p, " }");
2981 return p;
2982 error:
2983 isl_printer_free(p);
2984 return NULL;
2987 __isl_give isl_printer *isl_printer_print_multi_aff(__isl_take isl_printer *p,
2988 __isl_keep isl_multi_aff *maff)
2990 if (!p || !maff)
2991 goto error;
2993 if (p->output_format == ISL_FORMAT_ISL)
2994 return print_multi_aff_isl(p, maff);
2995 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
2996 goto error);
2997 error:
2998 isl_printer_free(p);
2999 return NULL;
3002 static __isl_give isl_printer *print_pw_multi_aff_body(
3003 __isl_take isl_printer *p, __isl_keep isl_pw_multi_aff *pma)
3005 int i;
3007 if (!pma)
3008 goto error;
3010 for (i = 0; i < pma->n; ++i) {
3011 isl_space *space;
3013 if (i)
3014 p = isl_printer_print_str(p, "; ");
3015 p = print_multi_aff(p, pma->p[i].maff);
3016 space = isl_multi_aff_get_domain_space(pma->p[i].maff);
3017 p = print_disjuncts(set_to_map(pma->p[i].set), space, p, 0);
3018 isl_space_free(space);
3020 return p;
3021 error:
3022 isl_printer_free(p);
3023 return NULL;
3026 static __isl_give isl_printer *print_pw_multi_aff_isl(__isl_take isl_printer *p,
3027 __isl_keep isl_pw_multi_aff *pma)
3029 struct isl_print_space_data data = { 0 };
3031 if (!pma)
3032 goto error;
3034 p = print_param_tuple(p, pma->dim, &data);
3035 p = isl_printer_print_str(p, "{ ");
3036 p = print_pw_multi_aff_body(p, pma);
3037 p = isl_printer_print_str(p, " }");
3038 return p;
3039 error:
3040 isl_printer_free(p);
3041 return NULL;
3044 /* Print the unnamed, single-dimensional piecewise multi affine expression "pma"
3045 * to "p".
3047 static __isl_give isl_printer *print_unnamed_pw_multi_aff_c(
3048 __isl_take isl_printer *p, __isl_keep isl_pw_multi_aff *pma)
3050 int i;
3051 isl_space *space;
3053 space = isl_pw_multi_aff_get_domain_space(pma);
3054 for (i = 0; i < pma->n - 1; ++i) {
3055 p = isl_printer_print_str(p, "(");
3056 p = print_set_c(p, space, pma->p[i].set);
3057 p = isl_printer_print_str(p, ") ? (");
3058 p = print_aff_c(p, pma->p[i].maff->u.p[0]);
3059 p = isl_printer_print_str(p, ") : ");
3061 isl_space_free(space);
3063 return print_aff_c(p, pma->p[pma->n - 1].maff->u.p[0]);
3066 static __isl_give isl_printer *print_pw_multi_aff_c(__isl_take isl_printer *p,
3067 __isl_keep isl_pw_multi_aff *pma)
3069 int n;
3070 const char *name;
3072 if (!pma)
3073 goto error;
3074 if (pma->n < 1)
3075 isl_die(p->ctx, isl_error_unsupported,
3076 "cannot print empty isl_pw_multi_aff in C format",
3077 goto error);
3078 name = isl_pw_multi_aff_get_tuple_name(pma, isl_dim_out);
3079 if (!name && isl_pw_multi_aff_dim(pma, isl_dim_out) == 1)
3080 return print_unnamed_pw_multi_aff_c(p, pma);
3081 if (!name)
3082 isl_die(p->ctx, isl_error_unsupported,
3083 "cannot print unnamed isl_pw_multi_aff in C format",
3084 goto error);
3086 p = isl_printer_print_str(p, name);
3087 n = isl_pw_multi_aff_dim(pma, isl_dim_out);
3088 if (n != 0)
3089 isl_die(p->ctx, isl_error_unsupported,
3090 "not supported yet", goto error);
3092 return p;
3093 error:
3094 isl_printer_free(p);
3095 return NULL;
3098 __isl_give isl_printer *isl_printer_print_pw_multi_aff(
3099 __isl_take isl_printer *p, __isl_keep isl_pw_multi_aff *pma)
3101 if (!p || !pma)
3102 goto error;
3104 if (p->output_format == ISL_FORMAT_ISL)
3105 return print_pw_multi_aff_isl(p, pma);
3106 if (p->output_format == ISL_FORMAT_C)
3107 return print_pw_multi_aff_c(p, pma);
3108 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
3109 goto error);
3110 error:
3111 isl_printer_free(p);
3112 return NULL;
3115 static isl_stat print_pw_multi_aff_body_wrap(__isl_take isl_pw_multi_aff *pma,
3116 void *user)
3118 struct isl_union_print_data *data;
3119 data = (struct isl_union_print_data *) user;
3121 if (!data->first)
3122 data->p = isl_printer_print_str(data->p, "; ");
3123 data->first = 0;
3125 data->p = print_pw_multi_aff_body(data->p, pma);
3126 isl_pw_multi_aff_free(pma);
3128 return isl_stat_ok;
3131 static __isl_give isl_printer *print_union_pw_multi_aff_isl(
3132 __isl_take isl_printer *p, __isl_keep isl_union_pw_multi_aff *upma)
3134 struct isl_union_print_data data;
3135 struct isl_print_space_data space_data = { 0 };
3136 isl_space *space;
3138 space = isl_union_pw_multi_aff_get_space(upma);
3139 p = print_param_tuple(p, space, &space_data);
3140 isl_space_free(space);
3141 p = isl_printer_print_str(p, s_open_set[0]);
3142 data.p = p;
3143 data.first = 1;
3144 isl_union_pw_multi_aff_foreach_pw_multi_aff(upma,
3145 &print_pw_multi_aff_body_wrap, &data);
3146 p = data.p;
3147 p = isl_printer_print_str(p, s_close_set[0]);
3148 return p;
3151 __isl_give isl_printer *isl_printer_print_union_pw_multi_aff(
3152 __isl_take isl_printer *p, __isl_keep isl_union_pw_multi_aff *upma)
3154 if (!p || !upma)
3155 goto error;
3157 if (p->output_format == ISL_FORMAT_ISL)
3158 return print_union_pw_multi_aff_isl(p, upma);
3159 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
3160 goto error);
3161 error:
3162 isl_printer_free(p);
3163 return NULL;
3166 /* Print dimension "pos" of data->space to "p".
3168 * data->user is assumed to be an isl_multi_pw_aff.
3170 * If the current dimension is an output dimension, then print
3171 * the corresponding piecewise affine expression.
3172 * Otherwise, print the name of the dimension.
3174 static __isl_give isl_printer *print_dim_mpa(__isl_take isl_printer *p,
3175 struct isl_print_space_data *data, unsigned pos)
3177 int i;
3178 int need_parens;
3179 isl_space *space;
3180 isl_multi_pw_aff *mpa = data->user;
3181 isl_pw_aff *pa;
3183 if (data->type != isl_dim_out)
3184 return print_name(data->space, p, data->type, pos, data->latex);
3186 pa = mpa->u.p[pos];
3187 if (pa->n == 0)
3188 return isl_printer_print_str(p, "(0 : false)");
3190 need_parens = pa->n != 1 || !isl_set_plain_is_universe(pa->p[0].set);
3191 if (need_parens)
3192 p = isl_printer_print_str(p, "(");
3193 space = isl_multi_pw_aff_get_domain_space(mpa);
3194 for (i = 0; i < pa->n; ++i) {
3196 if (i)
3197 p = isl_printer_print_str(p, "; ");
3198 p = print_aff_body(p, space, pa->p[i].aff);
3199 p = print_disjuncts(pa->p[i].set, space, p, 0);
3201 isl_space_free(space);
3202 if (need_parens)
3203 p = isl_printer_print_str(p, ")");
3205 return p;
3208 /* Print "mpa" to "p" in isl format.
3210 * If "mpa" is zero-dimensional and has a non-trivial explicit domain,
3211 * then it is printed after the tuple of affine expressions.
3213 static __isl_give isl_printer *print_multi_pw_aff_isl(__isl_take isl_printer *p,
3214 __isl_keep isl_multi_pw_aff *mpa)
3216 struct isl_print_space_data data = { 0 };
3217 isl_bool has_domain;
3219 if (!mpa)
3220 return isl_printer_free(p);
3222 p = print_param_tuple(p, mpa->space, &data);
3223 p = isl_printer_print_str(p, "{ ");
3224 data.print_dim = &print_dim_mpa;
3225 data.user = mpa;
3226 p = isl_print_space(mpa->space, p, 0, &data);
3227 has_domain = isl_multi_pw_aff_has_non_trivial_domain(mpa);
3228 if (has_domain < 0)
3229 return isl_printer_free(p);
3230 if (has_domain) {
3231 isl_space *space;
3233 space = isl_space_domain(isl_space_copy(mpa->space));
3234 p = print_disjuncts_set(mpa->u.dom, space, p, 0);
3235 isl_space_free(space);
3237 p = isl_printer_print_str(p, " }");
3238 return p;
3241 __isl_give isl_printer *isl_printer_print_multi_pw_aff(
3242 __isl_take isl_printer *p, __isl_keep isl_multi_pw_aff *mpa)
3244 if (!p || !mpa)
3245 return isl_printer_free(p);
3247 if (p->output_format == ISL_FORMAT_ISL)
3248 return print_multi_pw_aff_isl(p, mpa);
3249 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
3250 return isl_printer_free(p));
3253 /* Print dimension "pos" of data->space to "p".
3255 * data->user is assumed to be an isl_multi_val.
3257 * If the current dimension is an output dimension, then print
3258 * the corresponding value. Otherwise, print the name of the dimension.
3260 static __isl_give isl_printer *print_dim_mv(__isl_take isl_printer *p,
3261 struct isl_print_space_data *data, unsigned pos)
3263 isl_multi_val *mv = data->user;
3265 if (data->type == isl_dim_out)
3266 return isl_printer_print_val(p, mv->u.p[pos]);
3267 else
3268 return print_name(data->space, p, data->type, pos, data->latex);
3271 /* Print the isl_multi_val "mv" to "p" in isl format.
3273 static __isl_give isl_printer *print_multi_val_isl(__isl_take isl_printer *p,
3274 __isl_keep isl_multi_val *mv)
3276 struct isl_print_space_data data = { 0 };
3278 if (!mv)
3279 return isl_printer_free(p);
3281 p = print_param_tuple(p, mv->space, &data);
3282 p = isl_printer_print_str(p, "{ ");
3283 data.print_dim = &print_dim_mv;
3284 data.user = mv;
3285 p = isl_print_space(mv->space, p, 0, &data);
3286 p = isl_printer_print_str(p, " }");
3287 return p;
3290 /* Print the isl_multi_val "mv" to "p".
3292 * Currently only supported in isl format.
3294 __isl_give isl_printer *isl_printer_print_multi_val(
3295 __isl_take isl_printer *p, __isl_keep isl_multi_val *mv)
3297 if (!p || !mv)
3298 return isl_printer_free(p);
3300 if (p->output_format == ISL_FORMAT_ISL)
3301 return print_multi_val_isl(p, mv);
3302 isl_die(p->ctx, isl_error_unsupported, "unsupported output format",
3303 return isl_printer_free(p));
3306 /* Print dimension "pos" of data->space to "p".
3308 * data->user is assumed to be an isl_multi_union_pw_aff.
3310 * The current dimension is necessarily a set dimension, so
3311 * we print the corresponding isl_union_pw_aff, including
3312 * the braces.
3314 static __isl_give isl_printer *print_union_pw_aff_dim(__isl_take isl_printer *p,
3315 struct isl_print_space_data *data, unsigned pos)
3317 isl_multi_union_pw_aff *mupa = data->user;
3318 isl_union_pw_aff *upa;
3320 upa = isl_multi_union_pw_aff_get_union_pw_aff(mupa, pos);
3321 p = print_union_pw_aff_body(p, upa);
3322 isl_union_pw_aff_free(upa);
3324 return p;
3327 /* Print the isl_multi_union_pw_aff "mupa" to "p" in isl format.
3329 * If "mupa" is zero-dimensional and has a non-trivial explicit domain,
3330 * then it is printed after the tuple of affine expressions.
3331 * In order to clarify that this domain belongs to the expression,
3332 * the tuple along with the domain are placed inside parentheses.
3333 * If "mupa" has any parameters, then the opening parenthesis
3334 * appears after the parameter declarations.
3336 static __isl_give isl_printer *print_multi_union_pw_aff_isl(
3337 __isl_take isl_printer *p, __isl_keep isl_multi_union_pw_aff *mupa)
3339 struct isl_print_space_data data = { 0 };
3340 isl_bool has_domain;
3341 isl_space *space;
3343 if (!mupa)
3344 return isl_printer_free(p);
3345 has_domain = isl_multi_union_pw_aff_has_non_trivial_domain(mupa);
3346 if (has_domain < 0)
3347 return isl_printer_free(p);
3349 space = isl_multi_union_pw_aff_get_space(mupa);
3350 p = print_param_tuple(p, space, &data);
3352 if (has_domain)
3353 p = isl_printer_print_str(p, "(");
3355 data.print_dim = &print_union_pw_aff_dim;
3356 data.user = mupa;
3358 p = isl_print_space(space, p, 0, &data);
3359 isl_space_free(space);
3361 if (has_domain) {
3362 p = isl_printer_print_str(p, " : ");
3363 p = isl_printer_print_union_set_isl_body(p, mupa->u.dom);
3364 p = isl_printer_print_str(p, ")");
3367 return p;
3370 /* Print the isl_multi_union_pw_aff "mupa" to "p" in isl format.
3372 * We currently only support an isl format.
3374 __isl_give isl_printer *isl_printer_print_multi_union_pw_aff(
3375 __isl_take isl_printer *p, __isl_keep isl_multi_union_pw_aff *mupa)
3377 if (!p || !mupa)
3378 return isl_printer_free(p);
3380 if (p->output_format == ISL_FORMAT_ISL)
3381 return print_multi_union_pw_aff_isl(p, mupa);
3382 isl_die(isl_printer_get_ctx(p), isl_error_unsupported,
3383 "unsupported output format", return isl_printer_free(p));