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
17 #include <isl_ctx_private.h>
18 #include <isl_map_private.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>
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
)
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
);
92 static __isl_give isl_printer
*print_constraints_polylib(
93 struct isl_basic_map
*bmap
, __isl_take isl_printer
*p
)
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
);
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);
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
)
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
);
161 static __isl_give isl_printer
*isl_set_print_polylib(__isl_keep isl_set
*set
,
162 __isl_take isl_printer
*p
, int ext
)
164 return isl_map_print_polylib(set_to_map(set
), p
, ext
);
167 static int count_same_name(__isl_keep isl_space
*space
,
168 enum isl_dim_type type
, unsigned pos
, const char *name
)
174 for (t
= isl_dim_param
; t
<= type
&& t
<= isl_dim_out
; ++t
) {
175 s
= t
== type
? pos
: isl_space_dim(space
, t
);
176 for (p
= 0; p
< s
; ++p
) {
177 const char *n
= isl_space_get_dim_name(space
, t
, p
);
178 if (n
&& !strcmp(n
, name
))
185 /* Print the name of the variable of type "type" and position "pos"
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
,
196 name
= type
== isl_dim_div
? NULL
197 : isl_space_get_dim_name(space
, type
, pos
);
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
];
208 prefix
= s_output_prefix
[latex
];
209 snprintf(buffer
, sizeof(buffer
), "%s%d", prefix
, pos
);
212 primes
= count_same_name(space
, name
== buffer
? isl_dim_div
: type
,
214 p
= isl_printer_print_str(p
, name
);
216 p
= isl_printer_print_str(p
, "'");
220 static enum isl_dim_type
pos2type(__isl_keep isl_space
*space
, unsigned *pos
)
222 enum isl_dim_type type
;
223 unsigned n_in
= isl_space_dim(space
, isl_dim_in
);
224 unsigned n_out
= isl_space_dim(space
, isl_dim_out
);
225 unsigned nparam
= isl_space_dim(space
, isl_dim_param
);
227 if (*pos
< 1 + nparam
) {
228 type
= isl_dim_param
;
230 } else if (*pos
< 1 + nparam
+ n_in
) {
233 } else if (*pos
< 1 + nparam
+ n_in
+ n_out
) {
235 *pos
-= 1 + nparam
+ n_in
;
238 *pos
-= 1 + nparam
+ n_in
+ n_out
;
244 /* Can the div expression of the integer division at position "row" of "div"
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
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
;
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
;
272 return isl_printer_free(p
);
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
, "-");
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
, "*");
290 p
= print_div(space
, div
, pos
, p
);
292 p
= print_name(space
, p
, type
, pos
, latex
);
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
)
303 for (i
= 0, first
= 1; i
< len
; ++i
) {
305 if (isl_int_is_zero(c
[i
]))
308 if (isl_int_is_neg(c
[i
])) {
310 isl_int_neg(c
[i
], c
[i
]);
311 p
= isl_printer_print_str(p
, " - ");
313 p
= isl_printer_print_str(p
, " + ");
316 p
= print_term(dim
, div
, c
[i
], i
, p
, 0);
318 isl_int_neg(c
[i
], c
[i
]);
321 p
= isl_printer_print_str(p
, "0");
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
)
336 return isl_printer_free(p
);
337 n_div
= isl_mat_rows(div
);
338 len
= 1 + isl_space_dim(space
, isl_dim_all
) + n_div
;
339 return print_affine_of_len(space
, div
, p
, c
, len
);
342 /* offset is the offset of local_space inside data->type of data->space.
344 static __isl_give isl_printer
*print_nested_var_list(__isl_take isl_printer
*p
,
345 __isl_keep isl_space
*local_space
, enum isl_dim_type local_type
,
346 struct isl_print_space_data
*data
, int offset
)
350 if (data
->space
!= local_space
&& local_type
== isl_dim_out
)
351 offset
+= local_space
->n_in
;
353 for (i
= 0; i
< isl_space_dim(local_space
, local_type
); ++i
) {
355 p
= isl_printer_print_str(p
, ", ");
357 p
= data
->print_dim(p
, data
, offset
+ i
);
359 p
= print_name(data
->space
, p
, data
->type
, offset
+ i
,
365 static __isl_give isl_printer
*print_var_list(__isl_take isl_printer
*p
,
366 __isl_keep isl_space
*space
, enum isl_dim_type type
)
368 struct isl_print_space_data data
= { .space
= space
, .type
= type
};
370 return print_nested_var_list(p
, space
, type
, &data
, 0);
373 static __isl_give isl_printer
*print_nested_map_dim(__isl_take isl_printer
*p
,
374 __isl_keep isl_space
*local_dim
,
375 struct isl_print_space_data
*data
, int offset
);
377 static __isl_give isl_printer
*print_nested_tuple(__isl_take isl_printer
*p
,
378 __isl_keep isl_space
*local_space
, enum isl_dim_type local_type
,
379 struct isl_print_space_data
*data
, int offset
)
381 const char *name
= NULL
;
382 unsigned n
= isl_space_dim(local_space
, local_type
);
383 if ((local_type
== isl_dim_in
|| local_type
== isl_dim_out
)) {
384 name
= isl_space_get_tuple_name(local_space
, local_type
);
387 p
= isl_printer_print_str(p
, "\\mathrm{");
388 p
= isl_printer_print_str(p
, name
);
390 p
= isl_printer_print_str(p
, "}");
393 if (!data
->latex
|| n
!= 1 || name
)
394 p
= isl_printer_print_str(p
, s_open_list
[data
->latex
]);
395 if ((local_type
== isl_dim_in
|| local_type
== isl_dim_out
) &&
396 local_space
->nested
[local_type
- isl_dim_in
]) {
397 if (data
->space
!= local_space
&& local_type
== isl_dim_out
)
398 offset
+= local_space
->n_in
;
399 p
= print_nested_map_dim(p
,
400 local_space
->nested
[local_type
- isl_dim_in
],
403 p
= print_nested_var_list(p
, local_space
, local_type
, data
,
405 if (!data
->latex
|| n
!= 1 || name
)
406 p
= isl_printer_print_str(p
, s_close_list
[data
->latex
]);
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
)
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
);
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
);
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
);
449 static __isl_give isl_printer
*print_omega_parameters(
450 __isl_keep isl_space
*space
, __isl_take isl_printer
*p
)
452 if (isl_space_dim(space
, isl_dim_param
) == 0)
455 p
= isl_printer_start_line(p
);
456 p
= isl_printer_print_str(p
, "symbolic ");
457 p
= print_var_list(p
, space
, isl_dim_param
);
458 p
= isl_printer_print_str(p
, ";");
459 p
= isl_printer_end_line(p
);
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
)
476 if (isl_seq_last_non_zero(bmap
->ineq
[i
+ 1], 1 + total
) != last
)
480 is_div
= isl_basic_map_is_div_constraint(bmap
,
481 bmap
->ineq
[i
+ 1], last
- o_div
);
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
497 static const char *constraint_op(int sign
, int strict
, int latex
)
500 return sign
< 0 ? "<" : ">";
507 /* Print one side of a constraint "c" to "p", with
508 * the variable names taken from "space" and the integer division definitions
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
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
, " ");
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
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
);
559 /* Given an integer division
563 * at position "pos" in "div", print the corresponding modulo expression
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
,
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]);
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
,
608 enum isl_dim_type type
;
612 n_div
= isl_mat_rows(div
);
613 if (p
->output_format
== ISL_FORMAT_C
)
615 type
= pos2type(space
, &pos
);
616 if (type
!= isl_dim_div
)
618 can_print
= can_print_div_expr(p
, div
, pos
);
623 if (!isl_int_is_divisible_by(c
, div
->row
[pos
][0]))
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.
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
)
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
]);
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
);
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
);
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
,
685 n_div
= isl_mat_rows(div
);
686 div_pos
= print_as_modulo_pos(p
, space
, div
, last
, c
[last
]);
688 return isl_printer_free(p
);
690 return print_eq_mod_constraint(p
, space
, div
, div_pos
,
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,
710 * while an upper bound
718 * If the next constraint has an opposite sign for the same last coefficient,
719 * then it is printed as
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
)
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
);
749 bmap
= isl_basic_map_copy(bmap
);
752 bmap
= isl_basic_map_sort_constraints(bmap
);
756 c
= isl_vec_alloc(bmap
->ctx
, 1 + total
);
760 for (i
= bmap
->n_eq
- 1; i
>= 0; --i
) {
761 int l
= isl_seq_last_non_zero(bmap
->eq
[i
], 1 + total
);
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");
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
);
773 isl_seq_neg(c
->el
, bmap
->eq
[i
], 1 + total
);
774 p
= print_eq_constraint(p
, space
, div
, c
->el
, l
, latex
);
777 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
778 int l
= isl_seq_last_non_zero(bmap
->ineq
[i
], 1 + total
);
784 if (!dump
&& l
>= o_div
&&
785 can_print_div_expr(p
, div
, l
- o_div
)) {
787 is_div
= isl_basic_map_is_div_constraint(bmap
,
788 bmap
->ineq
[i
], l
- o_div
);
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]);
799 isl_seq_cpy(c
->el
, bmap
->ineq
[i
], 1 + total
);
801 isl_seq_neg(c
->el
, bmap
->ineq
[i
], 1 + total
);
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
,
810 op
= constraint_op(s
, strict
, latex
);
811 p
= print_constraint(p
, space
, div
, c
->el
, l
,
817 isl_basic_map_free(bmap
);
822 isl_basic_map_free(bmap
);
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
)
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
, ")");
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
)
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
))
868 p
= isl_printer_print_str(p
, ", ");
869 p
= print_name(space
, p
, isl_dim_div
, i
, latex
);
871 if (!can_print_div_expr(p
, div
, i
))
873 p
= isl_printer_print_str(p
, " = ");
874 p
= print_div(space
, div
, i
, 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
)
891 return isl_bool_error
;
892 n
= isl_mat_rows(div
);
894 return isl_bool_false
;
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.,
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
)
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
, ": ");
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
)
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);
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
)
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
);
962 div
= mark_all_unknown(div
);
963 p
= print_constraints(bmap
, space
, div
, p
, latex
);
966 if (exists
>= 0 && exists
)
967 p
= isl_printer_print_str(p
, s_close_exists
[latex
]);
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
))
983 p
= isl_printer_print_str(p
, ": ");
984 p
= print_disjunct(bmap
, space
, p
, latex
);
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
, " }");
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
, " }");
1013 static __isl_give isl_printer
*isl_map_print_omega(__isl_keep isl_map
*map
,
1014 __isl_take isl_printer
*p
)
1018 for (i
= 0; i
< map
->n
; ++i
) {
1020 p
= isl_printer_print_str(p
, " union ");
1021 p
= basic_map_print_omega(map
->p
[i
], p
);
1026 static __isl_give isl_printer
*isl_set_print_omega(__isl_keep isl_set
*set
,
1027 __isl_take isl_printer
*p
)
1031 for (i
= 0; i
< set
->n
; ++i
) {
1033 p
= isl_printer_print_str(p
, " union ");
1034 p
= basic_set_print_omega(set
->p
[i
], 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
)
1046 return isl_printer_free(p
);
1047 if (isl_space_dim(space
, isl_dim_param
) == 0)
1050 p
= print_tuple(space
, p
, isl_dim_param
, data
);
1051 p
= isl_printer_print_str(p
, s_to
[data
->latex
]);
1056 static __isl_give isl_printer
*isl_basic_map_print_isl(
1057 __isl_keep isl_basic_map
*bmap
, __isl_take isl_printer
*p
,
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
, " }");
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
)
1082 p
= isl_printer_print_str(p
, "false");
1083 for (i
= 0; i
< map
->n
; ++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
, ")");
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)
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
, ")");
1126 isl_printer_free(p
);
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
))
1144 p
= isl_printer_print_str(p
, s_such_that
[latex
]);
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
,
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
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
]);
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
{
1197 static void free_split(__isl_take
struct isl_aff_split
*split
, int n
)
1204 for (i
= 0; i
< n
; ++i
) {
1205 isl_basic_map_free(split
[i
].aff
);
1206 isl_map_free(split
[i
].map
);
1212 static __isl_give isl_basic_map
*get_aff(__isl_take isl_basic_map
*bmap
)
1215 unsigned nparam
, n_in
, n_out
, total
;
1217 bmap
= isl_basic_map_cow(bmap
);
1220 if (isl_basic_map_free_inequality(bmap
, bmap
->n_ineq
) < 0)
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
])))
1233 if (isl_basic_map_drop_equality(bmap
, i
) < 0)
1237 bmap
= isl_basic_map_finalize(bmap
);
1241 isl_basic_map_free(bmap
);
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
)
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
,
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
))
1273 if (isl_basic_map_drop_equality(bmap
, i
) < 0)
1281 isl_basic_map_free(bmap
);
1285 static __isl_give
struct isl_aff_split
*split_aff(__isl_keep isl_map
*map
)
1288 struct isl_aff_split
*split
;
1291 ctx
= isl_map_get_ctx(map
);
1292 split
= isl_calloc_array(ctx
, struct isl_aff_split
, map
->n
);
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
)
1307 if (isl_sort(split
, map
->n
, sizeof(struct isl_aff_split
),
1308 &aff_split_cmp
, NULL
) < 0)
1312 for (i
= n
- 1; i
>= 1; --i
) {
1313 if (!isl_basic_map_plain_is_equal(split
[i
- 1].aff
,
1316 isl_basic_map_free(split
[i
].aff
);
1317 split
[i
- 1].map
= isl_map_union(split
[i
- 1].map
,
1320 split
[i
] = split
[n
- 1];
1321 split
[n
- 1].aff
= NULL
;
1322 split
[n
- 1].map
= NULL
;
1328 free_split(split
, map
->n
);
1332 static int defining_equality(__isl_keep isl_basic_map
*eq
,
1333 __isl_keep isl_space
*dim
, enum isl_dim_type type
, int pos
)
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
)
1347 if (isl_int_is_one(eq
->eq
[i
][1 + pos
]))
1348 isl_seq_neg(eq
->eq
[i
], eq
->eq
[i
], 1 + total
);
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
;
1369 j
= defining_equality(eq
, data
->space
, data
->type
, pos
);
1371 if (isl_space_has_dim_name(data
->space
, data
->type
, pos
)) {
1372 p
= print_name(data
->space
, p
, data
->type
, pos
,
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
);
1379 p
= print_name(data
->space
, p
, data
->type
, pos
, data
->latex
);
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 };
1392 data
.print_dim
= &print_dim_eq
;
1393 for (i
= 0; i
< n
; ++i
) {
1396 rational
= split
[i
].map
->n
> 0 &&
1397 ISL_F_ISSET(split
[i
].map
->p
[0], ISL_BASIC_MAP_RATIONAL
);
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);
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
;
1416 return isl_printer_free(p
);
1417 if (!p
->dump
&& map
->n
> 0)
1418 split
= split_aff(map
);
1420 p
= print_split_map(p
, split
, map
->n
, map
->dim
);
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
);
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]);
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 };
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
;
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]);
1460 static __isl_give isl_printer
*isl_map_print_latex(__isl_keep isl_map
*map
,
1461 __isl_take isl_printer
*p
)
1464 struct isl_aff_split
*split
= NULL
;
1467 split
= split_aff(map
);
1470 return print_latex_map(map
, p
, NULL
);
1472 for (i
= 0; i
< map
->n
; ++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
);
1484 __isl_give isl_printer
*isl_printer_print_basic_map(__isl_take isl_printer
*p
,
1485 __isl_keep isl_basic_map
*bmap
)
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
);
1495 isl_printer_free(p
);
1499 __isl_give isl_printer
*isl_printer_print_basic_set(__isl_take isl_printer
*p
,
1500 __isl_keep isl_basic_set
*bset
)
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
);
1517 isl_printer_free(p
);
1521 __isl_give isl_printer
*isl_printer_print_set(__isl_take isl_printer
*p
,
1522 __isl_keep isl_set
*set
)
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
);
1538 isl_printer_free(p
);
1542 __isl_give isl_printer
*isl_printer_print_map(__isl_take isl_printer
*p
,
1543 __isl_keep isl_map
*map
)
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
);
1560 isl_printer_free(p
);
1564 struct isl_union_print_data
{
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
;
1575 data
->p
= isl_printer_print_str(data
->p
, "; ");
1578 data
->p
= isl_map_print_isl_body(map
, data
->p
);
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]);
1595 isl_union_map_foreach_map(umap
, &print_map_body
, &data
);
1597 p
= isl_printer_print_str(p
, s_close_set
[0]);
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 };
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
);
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
;
1633 data
->p
= isl_printer_print_str(data
->p
, " \\cup ");
1636 data
->p
= isl_map_print_latex(map
, data
->p
);
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
);
1651 __isl_give isl_printer
*isl_printer_print_union_map(__isl_take isl_printer
*p
,
1652 __isl_keep isl_union_map
*umap
)
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
);
1665 isl_printer_free(p
);
1669 __isl_give isl_printer
*isl_printer_print_union_set(__isl_take isl_printer
*p
,
1670 __isl_keep isl_union_set
*uset
)
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
);
1683 isl_printer_free(p
);
1687 static int upoly_rec_n_non_zero(__isl_keep
struct isl_upoly_rec
*rec
)
1692 for (i
= 0, n
= 0; i
< rec
->n
; ++i
)
1693 if (!isl_upoly_is_zero(rec
->p
[i
]))
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
;
1705 cst
= isl_upoly_as_cst(up
);
1708 neg
= !first
&& isl_int_is_neg(cst
->n
);
1710 p
= isl_printer_print_str(p
, 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");
1718 p
= isl_printer_print_isl_int(p
, cst
->n
);
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
);
1727 isl_printer_free(p
);
1731 static __isl_give isl_printer
*print_base(__isl_take isl_printer
*p
,
1732 __isl_keep isl_space
*space
, __isl_keep isl_mat
*div
, int var
)
1736 total
= isl_space_dim(space
, isl_dim_all
);
1738 p
= print_term(space
, NULL
, space
->ctx
->one
, 1 + var
, p
, 0);
1740 p
= print_div(space
, div
, var
- total
, 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
);
1750 if (p
->output_format
== ISL_FORMAT_C
) {
1752 for (i
= 1; i
< exp
; ++i
) {
1753 p
= isl_printer_print_str(p
, "*");
1754 p
= print_base(p
, dim
, div
, var
);
1757 p
= isl_printer_print_str(p
, "^");
1758 p
= isl_printer_print_int(p
, exp
);
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
)
1776 if (isl_upoly_is_cst(up
))
1777 return upoly_print_cst(up
, p
, 1);
1779 rec
= isl_upoly_as_rec(up
);
1782 n
= upoly_rec_n_non_zero(rec
);
1783 print_parens
= n
> 1;
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
]))
1789 if (isl_upoly_is_negone(rec
->p
[i
])) {
1791 p
= isl_printer_print_str(p
, "-1");
1793 p
= isl_printer_print_str(p
, "-");
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
);
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
);
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
);
1814 p
= isl_printer_print_str(p
, ")");
1817 isl_printer_free(p
);
1821 static __isl_give isl_printer
*print_qpolynomial(__isl_take isl_printer
*p
,
1822 __isl_keep isl_qpolynomial
*qp
)
1826 p
= upoly_print(qp
->upoly
, qp
->dim
, qp
->div
, p
);
1829 isl_printer_free(p
);
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 };
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
, " }");
1851 isl_printer_free(p
);
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
)
1864 isl_qpolynomial_get_den(qp
, &den
);
1865 if (!isl_int_is_one(den
)) {
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
);
1874 p
= upoly_print(qp
->upoly
, space
, qp
->div
, p
);
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
);
1886 __isl_give isl_printer
*isl_printer_print_qpolynomial(
1887 __isl_take isl_printer
*p
, __isl_keep isl_qpolynomial
*qp
)
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
);
1897 isl_die(qp
->dim
->ctx
, isl_error_unsupported
,
1898 "output format not supported for isl_qpolynomials",
1901 isl_printer_free(p
);
1905 void isl_qpolynomial_print(__isl_keep isl_qpolynomial
*qp
, FILE *out
,
1906 unsigned output_format
)
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
)
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
) {
1931 p
= isl_printer_print_str(p
, ", ");
1932 p
= print_qpolynomial(p
, fold
->qp
[i
]);
1934 p
= isl_printer_print_str(p
, ")");
1938 void isl_qpolynomial_fold_print(__isl_keep isl_qpolynomial_fold
*fold
,
1939 FILE *out
, unsigned output_format
)
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 };
1960 for (i
= 0; i
< pwqp
->n
; ++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
);
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 };
1986 p
= print_param_tuple(p
, pwqp
->dim
, &data
);
1987 p
= isl_printer_print_str(p
, "{ ");
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
, " }");
1999 isl_printer_free(p
);
2003 void isl_pw_qpolynomial_print(__isl_keep isl_pw_qpolynomial
*pwqp
, FILE *out
,
2004 unsigned output_format
)
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 };
2024 for (i
= 0; i
< pwf
->n
; ++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
);
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
, "{ ");
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
, " }");
2061 static __isl_give isl_printer
*print_affine_c(__isl_take isl_printer
*p
,
2062 __isl_keep isl_space
*space
, __isl_keep isl_basic_set
*bset
,
2065 static __isl_give isl_printer
*print_name_c(__isl_take isl_printer
*p
,
2066 __isl_keep isl_space
*dim
,
2067 __isl_keep isl_basic_set
*bset
, enum isl_dim_type type
, unsigned pos
)
2069 if (type
== isl_dim_div
) {
2070 p
= isl_printer_print_str(p
, "floord(");
2071 p
= print_affine_c(p
, dim
, bset
, bset
->div
[pos
] + 1);
2072 p
= isl_printer_print_str(p
, ", ");
2073 p
= isl_printer_print_isl_int(p
, bset
->div
[pos
][0]);
2074 p
= isl_printer_print_str(p
, ")");
2078 name
= isl_space_get_dim_name(dim
, type
, pos
);
2081 p
= isl_printer_print_str(p
, name
);
2086 static __isl_give isl_printer
*print_term_c(__isl_take isl_printer
*p
,
2087 __isl_keep isl_space
*space
,
2088 __isl_keep isl_basic_set
*bset
, isl_int c
, unsigned pos
)
2090 enum isl_dim_type type
;
2093 return isl_printer_free(p
);
2096 return isl_printer_print_isl_int(p
, c
);
2098 if (isl_int_is_one(c
))
2100 else if (isl_int_is_negone(c
))
2101 p
= isl_printer_print_str(p
, "-");
2103 p
= isl_printer_print_isl_int(p
, c
);
2104 p
= isl_printer_print_str(p
, "*");
2106 type
= pos2type(space
, &pos
);
2107 p
= print_name_c(p
, space
, bset
, type
, pos
);
2111 static __isl_give isl_printer
*print_partial_affine_c(__isl_take isl_printer
*p
,
2112 __isl_keep isl_space
*dim
,
2113 __isl_keep isl_basic_set
*bset
, isl_int
*c
, unsigned len
)
2118 for (i
= 0, first
= 1; i
< len
; ++i
) {
2120 if (isl_int_is_zero(c
[i
]))
2123 if (isl_int_is_neg(c
[i
])) {
2125 isl_int_neg(c
[i
], c
[i
]);
2126 p
= isl_printer_print_str(p
, " - ");
2128 p
= isl_printer_print_str(p
, " + ");
2131 p
= print_term_c(p
, dim
, bset
, c
[i
], i
);
2133 isl_int_neg(c
[i
], c
[i
]);
2136 p
= isl_printer_print_str(p
, "0");
2140 static __isl_give isl_printer
*print_affine_c(__isl_take isl_printer
*p
,
2141 __isl_keep isl_space
*space
, __isl_keep isl_basic_set
*bset
, isl_int
*c
)
2143 unsigned len
= 1 + isl_basic_set_total_dim(bset
);
2144 return print_partial_affine_c(p
, space
, bset
, c
, len
);
2147 /* We skip the constraint if it is implied by the div expression.
2149 * *first indicates whether this is the first constraint in the conjunction and
2150 * is updated if the constraint is actually printed.
2152 static __isl_give isl_printer
*print_constraint_c(__isl_take isl_printer
*p
,
2153 __isl_keep isl_space
*dim
,
2154 __isl_keep isl_basic_set
*bset
, isl_int
*c
, const char *op
, int *first
)
2160 o_div
= isl_basic_set_offset(bset
, isl_dim_div
);
2161 n_div
= isl_basic_set_dim(bset
, isl_dim_div
);
2162 div
= isl_seq_last_non_zero(c
+ o_div
, n_div
);
2164 isl_bool is_div
= isl_basic_set_is_div_constraint(bset
, c
, div
);
2166 return isl_printer_free(p
);
2172 p
= isl_printer_print_str(p
, " && ");
2174 p
= print_affine_c(p
, dim
, bset
, c
);
2175 p
= isl_printer_print_str(p
, " ");
2176 p
= isl_printer_print_str(p
, op
);
2177 p
= isl_printer_print_str(p
, " 0");
2184 static __isl_give isl_printer
*print_basic_set_c(__isl_take isl_printer
*p
,
2185 __isl_keep isl_space
*space
, __isl_keep isl_basic_set
*bset
)
2189 unsigned n_div
= isl_basic_set_dim(bset
, isl_dim_div
);
2190 unsigned total
= isl_basic_set_total_dim(bset
) - n_div
;
2192 for (i
= 0; i
< bset
->n_eq
; ++i
) {
2193 j
= isl_seq_last_non_zero(bset
->eq
[i
] + 1 + total
, n_div
);
2195 p
= print_constraint_c(p
, space
, bset
,
2196 bset
->eq
[i
], "==", &first
);
2199 p
= isl_printer_print_str(p
, " && ");
2200 p
= isl_printer_print_str(p
, "(");
2201 p
= print_partial_affine_c(p
, space
, bset
, bset
->eq
[i
],
2203 p
= isl_printer_print_str(p
, ") % ");
2204 p
= isl_printer_print_isl_int(p
,
2205 bset
->eq
[i
][1 + total
+ j
]);
2206 p
= isl_printer_print_str(p
, " == 0");
2210 for (i
= 0; i
< bset
->n_ineq
; ++i
)
2211 p
= print_constraint_c(p
, space
, bset
, bset
->ineq
[i
], ">=",
2216 static __isl_give isl_printer
*print_set_c(__isl_take isl_printer
*p
,
2217 __isl_keep isl_space
*space
, __isl_keep isl_set
*set
)
2222 return isl_printer_free(p
);
2225 p
= isl_printer_print_str(p
, "0");
2227 for (i
= 0; i
< set
->n
; ++i
) {
2229 p
= isl_printer_print_str(p
, " || ");
2231 p
= isl_printer_print_str(p
, "(");
2232 p
= print_basic_set_c(p
, space
, set
->p
[i
]);
2234 p
= isl_printer_print_str(p
, ")");
2239 /* Print the piecewise quasi-polynomial "pwqp" to "p" in C format.
2241 static __isl_give isl_printer
*print_pw_qpolynomial_c(
2242 __isl_take isl_printer
*p
, __isl_keep isl_pw_qpolynomial
*pwqp
)
2247 space
= isl_pw_qpolynomial_get_domain_space(pwqp
);
2248 if (pwqp
->n
== 1 && isl_set_plain_is_universe(pwqp
->p
[0].set
)) {
2249 p
= print_qpolynomial_c(p
, space
, pwqp
->p
[0].qp
);
2250 isl_space_free(space
);
2254 for (i
= 0; i
< pwqp
->n
; ++i
) {
2255 p
= isl_printer_print_str(p
, "(");
2256 p
= print_set_c(p
, space
, pwqp
->p
[i
].set
);
2257 p
= isl_printer_print_str(p
, ") ? (");
2258 p
= print_qpolynomial_c(p
, space
, pwqp
->p
[i
].qp
);
2259 p
= isl_printer_print_str(p
, ") : ");
2262 isl_space_free(space
);
2263 p
= isl_printer_print_str(p
, "0");
2267 __isl_give isl_printer
*isl_printer_print_pw_qpolynomial(
2268 __isl_take isl_printer
*p
, __isl_keep isl_pw_qpolynomial
*pwqp
)
2273 if (p
->output_format
== ISL_FORMAT_ISL
)
2274 return print_pw_qpolynomial_isl(p
, pwqp
);
2275 else if (p
->output_format
== ISL_FORMAT_C
)
2276 return print_pw_qpolynomial_c(p
, pwqp
);
2277 isl_assert(p
->ctx
, 0, goto error
);
2279 isl_printer_free(p
);
2283 static isl_stat
print_pwqp_body(__isl_take isl_pw_qpolynomial
*pwqp
, void *user
)
2285 struct isl_union_print_data
*data
;
2286 data
= (struct isl_union_print_data
*)user
;
2289 data
->p
= isl_printer_print_str(data
->p
, "; ");
2292 data
->p
= isl_pwqp_print_isl_body(data
->p
, pwqp
);
2293 isl_pw_qpolynomial_free(pwqp
);
2298 static __isl_give isl_printer
*print_union_pw_qpolynomial_isl(
2299 __isl_take isl_printer
*p
, __isl_keep isl_union_pw_qpolynomial
*upwqp
)
2301 struct isl_union_print_data data
;
2302 struct isl_print_space_data space_data
= { 0 };
2305 space
= isl_union_pw_qpolynomial_get_space(upwqp
);
2306 p
= print_param_tuple(p
, space
, &space_data
);
2307 isl_space_free(space
);
2308 p
= isl_printer_print_str(p
, "{ ");
2311 isl_union_pw_qpolynomial_foreach_pw_qpolynomial(upwqp
, &print_pwqp_body
,
2314 p
= isl_printer_print_str(p
, " }");
2318 __isl_give isl_printer
*isl_printer_print_union_pw_qpolynomial(
2319 __isl_take isl_printer
*p
, __isl_keep isl_union_pw_qpolynomial
*upwqp
)
2324 if (p
->output_format
== ISL_FORMAT_ISL
)
2325 return print_union_pw_qpolynomial_isl(p
, upwqp
);
2326 isl_die(p
->ctx
, isl_error_invalid
,
2327 "invalid output format for isl_union_pw_qpolynomial",
2330 isl_printer_free(p
);
2334 /* Print the quasi-polynomial reduction "fold" to "p" in C format,
2335 * with the variable names taken from the domain space "space".
2337 static __isl_give isl_printer
*print_qpolynomial_fold_c(
2338 __isl_take isl_printer
*p
, __isl_keep isl_space
*space
,
2339 __isl_keep isl_qpolynomial_fold
*fold
)
2343 for (i
= 0; i
< fold
->n
- 1; ++i
)
2344 if (fold
->type
== isl_fold_min
)
2345 p
= isl_printer_print_str(p
, "min(");
2346 else if (fold
->type
== isl_fold_max
)
2347 p
= isl_printer_print_str(p
, "max(");
2349 for (i
= 0; i
< fold
->n
; ++i
) {
2351 p
= isl_printer_print_str(p
, ", ");
2352 p
= print_qpolynomial_c(p
, space
, fold
->qp
[i
]);
2354 p
= isl_printer_print_str(p
, ")");
2359 __isl_give isl_printer
*isl_printer_print_qpolynomial_fold(
2360 __isl_take isl_printer
*p
, __isl_keep isl_qpolynomial_fold
*fold
)
2364 if (p
->output_format
== ISL_FORMAT_ISL
)
2365 return qpolynomial_fold_print(fold
, p
);
2366 else if (p
->output_format
== ISL_FORMAT_C
)
2367 return print_qpolynomial_fold_c(p
, fold
->dim
, fold
);
2368 isl_die(p
->ctx
, isl_error_unsupported
, "unsupported output format",
2371 isl_printer_free(p
);
2375 /* Print the piecewise quasi-polynomial reduction "pwf" to "p" in C format.
2377 static __isl_give isl_printer
*print_pw_qpolynomial_fold_c(
2378 __isl_take isl_printer
*p
, __isl_keep isl_pw_qpolynomial_fold
*pwf
)
2383 space
= isl_pw_qpolynomial_fold_get_domain_space(pwf
);
2384 if (pwf
->n
== 1 && isl_set_plain_is_universe(pwf
->p
[0].set
)) {
2385 p
= print_qpolynomial_fold_c(p
, space
, pwf
->p
[0].fold
);
2386 isl_space_free(space
);
2390 for (i
= 0; i
< pwf
->n
; ++i
) {
2391 p
= isl_printer_print_str(p
, "(");
2392 p
= print_set_c(p
, space
, pwf
->p
[i
].set
);
2393 p
= isl_printer_print_str(p
, ") ? (");
2394 p
= print_qpolynomial_fold_c(p
, space
, pwf
->p
[i
].fold
);
2395 p
= isl_printer_print_str(p
, ") : ");
2398 isl_space_free(space
);
2399 p
= isl_printer_print_str(p
, "0");
2403 __isl_give isl_printer
*isl_printer_print_pw_qpolynomial_fold(
2404 __isl_take isl_printer
*p
, __isl_keep isl_pw_qpolynomial_fold
*pwf
)
2409 if (p
->output_format
== ISL_FORMAT_ISL
)
2410 return print_pw_qpolynomial_fold_isl(p
, pwf
);
2411 else if (p
->output_format
== ISL_FORMAT_C
)
2412 return print_pw_qpolynomial_fold_c(p
, pwf
);
2413 isl_assert(p
->ctx
, 0, goto error
);
2415 isl_printer_free(p
);
2419 void isl_pw_qpolynomial_fold_print(__isl_keep isl_pw_qpolynomial_fold
*pwf
,
2420 FILE *out
, unsigned output_format
)
2427 p
= isl_printer_to_file(pwf
->dim
->ctx
, out
);
2428 p
= isl_printer_set_output_format(p
, output_format
);
2429 p
= isl_printer_print_pw_qpolynomial_fold(p
, pwf
);
2431 isl_printer_free(p
);
2434 static isl_stat
print_pwf_body(__isl_take isl_pw_qpolynomial_fold
*pwf
,
2437 struct isl_union_print_data
*data
;
2438 data
= (struct isl_union_print_data
*)user
;
2441 data
->p
= isl_printer_print_str(data
->p
, "; ");
2444 data
->p
= isl_pwf_print_isl_body(data
->p
, pwf
);
2445 isl_pw_qpolynomial_fold_free(pwf
);
2450 static __isl_give isl_printer
*print_union_pw_qpolynomial_fold_isl(
2451 __isl_take isl_printer
*p
,
2452 __isl_keep isl_union_pw_qpolynomial_fold
*upwf
)
2454 struct isl_union_print_data data
;
2455 struct isl_print_space_data space_data
= { 0 };
2458 space
= isl_union_pw_qpolynomial_fold_get_space(upwf
);
2459 p
= print_param_tuple(p
, space
, &space_data
);
2460 isl_space_free(space
);
2461 p
= isl_printer_print_str(p
, "{ ");
2464 isl_union_pw_qpolynomial_fold_foreach_pw_qpolynomial_fold(upwf
,
2465 &print_pwf_body
, &data
);
2467 p
= isl_printer_print_str(p
, " }");
2471 __isl_give isl_printer
*isl_printer_print_union_pw_qpolynomial_fold(
2472 __isl_take isl_printer
*p
,
2473 __isl_keep isl_union_pw_qpolynomial_fold
*upwf
)
2478 if (p
->output_format
== ISL_FORMAT_ISL
)
2479 return print_union_pw_qpolynomial_fold_isl(p
, upwf
);
2480 isl_die(p
->ctx
, isl_error_invalid
,
2481 "invalid output format for isl_union_pw_qpolynomial_fold",
2484 isl_printer_free(p
);
2488 /* Print the isl_constraint "c" to "p".
2490 __isl_give isl_printer
*isl_printer_print_constraint(__isl_take isl_printer
*p
,
2491 __isl_keep isl_constraint
*c
)
2493 struct isl_print_space_data data
= { 0 };
2494 isl_local_space
*ls
;
2501 ls
= isl_constraint_get_local_space(c
);
2503 return isl_printer_free(p
);
2504 space
= isl_local_space_get_space(ls
);
2505 p
= print_param_tuple(p
, space
, &data
);
2506 p
= isl_printer_print_str(p
, "{ ");
2507 p
= isl_print_space(space
, p
, 0, &data
);
2508 p
= isl_printer_print_str(p
, " : ");
2509 exists
= need_exists(p
, ls
->div
);
2511 p
= isl_printer_free(p
);
2512 if (exists
>= 0 && exists
)
2513 p
= open_exists(p
, space
, ls
->div
, 0);
2514 p
= print_affine_of_len(space
, ls
->div
, p
, c
->v
->el
, c
->v
->size
);
2515 if (isl_constraint_is_equality(c
))
2516 p
= isl_printer_print_str(p
, " = 0");
2518 p
= isl_printer_print_str(p
, " >= 0");
2519 if (exists
>= 0 && exists
)
2520 p
= isl_printer_print_str(p
, s_close_exists
[0]);
2521 p
= isl_printer_print_str(p
, " }");
2522 isl_space_free(space
);
2523 isl_local_space_free(ls
);
2527 isl_printer_free(p
);
2531 static __isl_give isl_printer
*isl_printer_print_space_isl(
2532 __isl_take isl_printer
*p
, __isl_keep isl_space
*space
)
2534 struct isl_print_space_data data
= { 0 };
2539 p
= print_param_tuple(p
, space
, &data
);
2541 p
= isl_printer_print_str(p
, "{ ");
2542 if (isl_space_is_params(space
))
2543 p
= isl_printer_print_str(p
, s_such_that
[0]);
2545 p
= isl_print_space(space
, p
, 0, &data
);
2546 p
= isl_printer_print_str(p
, " }");
2550 isl_printer_free(p
);
2554 __isl_give isl_printer
*isl_printer_print_space(__isl_take isl_printer
*p
,
2555 __isl_keep isl_space
*space
)
2558 return isl_printer_free(p
);
2559 if (p
->output_format
== ISL_FORMAT_ISL
)
2560 return isl_printer_print_space_isl(p
, space
);
2561 else if (p
->output_format
== ISL_FORMAT_OMEGA
)
2562 return print_omega_parameters(space
, p
);
2564 isl_die(isl_space_get_ctx(space
), isl_error_unsupported
,
2565 "output format not supported for space",
2566 return isl_printer_free(p
));
2569 __isl_give isl_printer
*isl_printer_print_local_space(__isl_take isl_printer
*p
,
2570 __isl_keep isl_local_space
*ls
)
2572 struct isl_print_space_data data
= { 0 };
2578 p
= print_param_tuple(p
, ls
->dim
, &data
);
2579 p
= isl_printer_print_str(p
, "{ ");
2580 p
= isl_print_space(ls
->dim
, p
, 0, &data
);
2581 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
2583 p
= isl_printer_print_str(p
, " : ");
2584 p
= isl_printer_print_str(p
, s_open_exists
[0]);
2585 p
= print_div_list(p
, ls
->dim
, ls
->div
, 0, 1);
2586 p
= isl_printer_print_str(p
, s_close_exists
[0]);
2587 } else if (isl_space_is_params(ls
->dim
))
2588 p
= isl_printer_print_str(p
, s_such_that
[0]);
2589 p
= isl_printer_print_str(p
, " }");
2592 isl_printer_free(p
);
2596 /* Print the (potentially rational) affine expression "aff" to "p",
2597 * with the variable names taken from "space".
2599 static __isl_give isl_printer
*print_aff_body(__isl_take isl_printer
*p
,
2600 __isl_keep isl_space
*space
, __isl_keep isl_aff
*aff
)
2604 if (isl_aff_is_nan(aff
))
2605 return isl_printer_print_str(p
, "NaN");
2607 total
= isl_local_space_dim(aff
->ls
, isl_dim_all
);
2608 p
= isl_printer_print_str(p
, "(");
2609 p
= print_affine_of_len(space
, aff
->ls
->div
, p
,
2610 aff
->v
->el
+ 1, 1 + total
);
2611 if (isl_int_is_one(aff
->v
->el
[0]))
2612 p
= isl_printer_print_str(p
, ")");
2614 p
= isl_printer_print_str(p
, ")/");
2615 p
= isl_printer_print_isl_int(p
, aff
->v
->el
[0]);
2621 static __isl_give isl_printer
*print_aff(__isl_take isl_printer
*p
,
2622 __isl_keep isl_aff
*aff
)
2624 struct isl_print_space_data data
= { 0 };
2626 if (isl_space_is_params(aff
->ls
->dim
))
2629 p
= print_tuple(aff
->ls
->dim
, p
, isl_dim_set
, &data
);
2630 p
= isl_printer_print_str(p
, " -> ");
2632 p
= isl_printer_print_str(p
, "[");
2633 p
= print_aff_body(p
, aff
->ls
->dim
, aff
);
2634 p
= isl_printer_print_str(p
, "]");
2639 static __isl_give isl_printer
*print_aff_isl(__isl_take isl_printer
*p
,
2640 __isl_keep isl_aff
*aff
)
2642 struct isl_print_space_data data
= { 0 };
2647 p
= print_param_tuple(p
, aff
->ls
->dim
, &data
);
2648 p
= isl_printer_print_str(p
, "{ ");
2649 p
= print_aff(p
, aff
);
2650 p
= isl_printer_print_str(p
, " }");
2653 isl_printer_free(p
);
2657 /* Print the body of an isl_pw_aff, i.e., a semicolon delimited
2658 * sequence of affine expressions, each followed by constraints.
2660 static __isl_give isl_printer
*print_pw_aff_body(
2661 __isl_take isl_printer
*p
, __isl_keep isl_pw_aff
*pa
)
2666 return isl_printer_free(p
);
2668 for (i
= 0; i
< pa
->n
; ++i
) {
2672 p
= isl_printer_print_str(p
, "; ");
2673 p
= print_aff(p
, pa
->p
[i
].aff
);
2674 space
= isl_aff_get_domain_space(pa
->p
[i
].aff
);
2675 p
= print_disjuncts(set_to_map(pa
->p
[i
].set
), space
, p
, 0);
2676 isl_space_free(space
);
2682 static __isl_give isl_printer
*print_pw_aff_isl(__isl_take isl_printer
*p
,
2683 __isl_keep isl_pw_aff
*pwaff
)
2685 struct isl_print_space_data data
= { 0 };
2690 p
= print_param_tuple(p
, pwaff
->dim
, &data
);
2691 p
= isl_printer_print_str(p
, "{ ");
2692 p
= print_pw_aff_body(p
, pwaff
);
2693 p
= isl_printer_print_str(p
, " }");
2696 isl_printer_free(p
);
2700 static __isl_give isl_printer
*print_ls_affine_c(__isl_take isl_printer
*p
,
2701 __isl_keep isl_local_space
*ls
, isl_int
*c
);
2703 static __isl_give isl_printer
*print_ls_name_c(__isl_take isl_printer
*p
,
2704 __isl_keep isl_local_space
*ls
, enum isl_dim_type type
, unsigned pos
)
2706 if (type
== isl_dim_div
) {
2707 p
= isl_printer_print_str(p
, "floord(");
2708 p
= print_ls_affine_c(p
, ls
, ls
->div
->row
[pos
] + 1);
2709 p
= isl_printer_print_str(p
, ", ");
2710 p
= isl_printer_print_isl_int(p
, ls
->div
->row
[pos
][0]);
2711 p
= isl_printer_print_str(p
, ")");
2715 name
= isl_space_get_dim_name(ls
->dim
, type
, pos
);
2718 p
= isl_printer_print_str(p
, name
);
2723 static __isl_give isl_printer
*print_ls_term_c(__isl_take isl_printer
*p
,
2724 __isl_keep isl_local_space
*ls
, isl_int c
, unsigned pos
)
2726 enum isl_dim_type type
;
2729 return isl_printer_free(p
);
2732 return isl_printer_print_isl_int(p
, c
);
2734 if (isl_int_is_one(c
))
2736 else if (isl_int_is_negone(c
))
2737 p
= isl_printer_print_str(p
, "-");
2739 p
= isl_printer_print_isl_int(p
, c
);
2740 p
= isl_printer_print_str(p
, "*");
2742 type
= pos2type(ls
->dim
, &pos
);
2743 p
= print_ls_name_c(p
, ls
, type
, pos
);
2747 static __isl_give isl_printer
*print_ls_partial_affine_c(
2748 __isl_take isl_printer
*p
, __isl_keep isl_local_space
*ls
,
2749 isl_int
*c
, unsigned len
)
2754 for (i
= 0, first
= 1; i
< len
; ++i
) {
2756 if (isl_int_is_zero(c
[i
]))
2759 if (isl_int_is_neg(c
[i
])) {
2761 isl_int_neg(c
[i
], c
[i
]);
2762 p
= isl_printer_print_str(p
, " - ");
2764 p
= isl_printer_print_str(p
, " + ");
2767 p
= print_ls_term_c(p
, ls
, c
[i
], i
);
2769 isl_int_neg(c
[i
], c
[i
]);
2772 p
= isl_printer_print_str(p
, "0");
2776 static __isl_give isl_printer
*print_ls_affine_c(__isl_take isl_printer
*p
,
2777 __isl_keep isl_local_space
*ls
, isl_int
*c
)
2779 unsigned len
= 1 + isl_local_space_dim(ls
, isl_dim_all
);
2780 return print_ls_partial_affine_c(p
, ls
, c
, len
);
2783 static __isl_give isl_printer
*print_aff_c(__isl_take isl_printer
*p
,
2784 __isl_keep isl_aff
*aff
)
2788 total
= isl_local_space_dim(aff
->ls
, isl_dim_all
);
2789 if (!isl_int_is_one(aff
->v
->el
[0]))
2790 p
= isl_printer_print_str(p
, "(");
2791 p
= print_ls_partial_affine_c(p
, aff
->ls
, aff
->v
->el
+ 1, 1 + total
);
2792 if (!isl_int_is_one(aff
->v
->el
[0])) {
2793 p
= isl_printer_print_str(p
, ")/");
2794 p
= isl_printer_print_isl_int(p
, aff
->v
->el
[0]);
2799 /* In the C format, we cannot express that "pwaff" may be undefined
2800 * on parts of the domain space. We therefore assume that the expression
2801 * will only be evaluated on its definition domain and compute the gist
2802 * of each cell with respect to this domain.
2804 static __isl_give isl_printer
*print_pw_aff_c(__isl_take isl_printer
*p
,
2805 __isl_keep isl_pw_aff
*pwaff
)
2808 isl_ast_build
*build
;
2812 isl_die(p
->ctx
, isl_error_unsupported
,
2813 "cannot print empty isl_pw_aff in C format",
2814 return isl_printer_free(p
));
2816 domain
= isl_pw_aff_domain(isl_pw_aff_copy(pwaff
));
2817 build
= isl_ast_build_from_context(domain
);
2818 expr
= isl_ast_build_expr_from_pw_aff(build
, isl_pw_aff_copy(pwaff
));
2819 p
= isl_printer_print_ast_expr(p
, expr
);
2820 isl_ast_expr_free(expr
);
2821 isl_ast_build_free(build
);
2826 __isl_give isl_printer
*isl_printer_print_aff(__isl_take isl_printer
*p
,
2827 __isl_keep isl_aff
*aff
)
2832 if (p
->output_format
== ISL_FORMAT_ISL
)
2833 return print_aff_isl(p
, aff
);
2834 else if (p
->output_format
== ISL_FORMAT_C
)
2835 return print_aff_c(p
, aff
);
2836 isl_die(p
->ctx
, isl_error_unsupported
, "unsupported output format",
2839 isl_printer_free(p
);
2843 __isl_give isl_printer
*isl_printer_print_pw_aff(__isl_take isl_printer
*p
,
2844 __isl_keep isl_pw_aff
*pwaff
)
2849 if (p
->output_format
== ISL_FORMAT_ISL
)
2850 return print_pw_aff_isl(p
, pwaff
);
2851 else if (p
->output_format
== ISL_FORMAT_C
)
2852 return print_pw_aff_c(p
, pwaff
);
2853 isl_die(p
->ctx
, isl_error_unsupported
, "unsupported output format",
2856 isl_printer_free(p
);
2860 /* Print "pa" in a sequence of isl_pw_affs delimited by semicolons.
2861 * Each isl_pw_aff itself is also printed as semicolon delimited
2862 * sequence of pieces.
2863 * If data->first = 1, then this is the first in the sequence.
2864 * Update data->first to tell the next element that it is not the first.
2866 static isl_stat
print_pw_aff_body_wrap(__isl_take isl_pw_aff
*pa
,
2869 struct isl_union_print_data
*data
;
2870 data
= (struct isl_union_print_data
*) user
;
2873 data
->p
= isl_printer_print_str(data
->p
, "; ");
2876 data
->p
= print_pw_aff_body(data
->p
, pa
);
2877 isl_pw_aff_free(pa
);
2879 return data
->p
? isl_stat_ok
: isl_stat_error
;
2882 /* Print the body of an isl_union_pw_aff, i.e., a semicolon delimited
2883 * sequence of affine expressions, each followed by constraints,
2884 * with the sequence enclosed in braces.
2886 static __isl_give isl_printer
*print_union_pw_aff_body(
2887 __isl_take isl_printer
*p
, __isl_keep isl_union_pw_aff
*upa
)
2889 struct isl_union_print_data data
= { p
, 1 };
2891 p
= isl_printer_print_str(p
, s_open_set
[0]);
2893 if (isl_union_pw_aff_foreach_pw_aff(upa
,
2894 &print_pw_aff_body_wrap
, &data
) < 0)
2895 data
.p
= isl_printer_free(p
);
2897 p
= isl_printer_print_str(p
, s_close_set
[0]);
2902 /* Print the isl_union_pw_aff "upa" to "p" in isl format.
2904 * The individual isl_pw_affs are delimited by a semicolon.
2906 static __isl_give isl_printer
*print_union_pw_aff_isl(
2907 __isl_take isl_printer
*p
, __isl_keep isl_union_pw_aff
*upa
)
2909 struct isl_print_space_data data
= { 0 };
2912 space
= isl_union_pw_aff_get_space(upa
);
2913 p
= print_param_tuple(p
, space
, &data
);
2914 isl_space_free(space
);
2915 p
= print_union_pw_aff_body(p
, upa
);
2919 /* Print the isl_union_pw_aff "upa" to "p".
2921 * We currently only support an isl format.
2923 __isl_give isl_printer
*isl_printer_print_union_pw_aff(
2924 __isl_take isl_printer
*p
, __isl_keep isl_union_pw_aff
*upa
)
2927 return isl_printer_free(p
);
2929 if (p
->output_format
== ISL_FORMAT_ISL
)
2930 return print_union_pw_aff_isl(p
, upa
);
2931 isl_die(isl_printer_get_ctx(p
), isl_error_unsupported
,
2932 "unsupported output format", return isl_printer_free(p
));
2935 /* Print dimension "pos" of data->space to "p".
2937 * data->user is assumed to be an isl_multi_aff.
2939 * If the current dimension is an output dimension, then print
2940 * the corresponding expression. Otherwise, print the name of the dimension.
2942 static __isl_give isl_printer
*print_dim_ma(__isl_take isl_printer
*p
,
2943 struct isl_print_space_data
*data
, unsigned pos
)
2945 isl_multi_aff
*ma
= data
->user
;
2947 if (data
->type
== isl_dim_out
) {
2950 space
= isl_multi_aff_get_domain_space(ma
);
2951 p
= print_aff_body(p
, space
, ma
->u
.p
[pos
]);
2952 isl_space_free(space
);
2954 p
= print_name(data
->space
, p
, data
->type
, pos
, data
->latex
);
2960 static __isl_give isl_printer
*print_multi_aff(__isl_take isl_printer
*p
,
2961 __isl_keep isl_multi_aff
*maff
)
2963 struct isl_print_space_data data
= { 0 };
2965 data
.print_dim
= &print_dim_ma
;
2967 return isl_print_space(maff
->space
, p
, 0, &data
);
2970 static __isl_give isl_printer
*print_multi_aff_isl(__isl_take isl_printer
*p
,
2971 __isl_keep isl_multi_aff
*maff
)
2973 struct isl_print_space_data data
= { 0 };
2978 p
= print_param_tuple(p
, maff
->space
, &data
);
2979 p
= isl_printer_print_str(p
, "{ ");
2980 p
= print_multi_aff(p
, maff
);
2981 p
= isl_printer_print_str(p
, " }");
2984 isl_printer_free(p
);
2988 __isl_give isl_printer
*isl_printer_print_multi_aff(__isl_take isl_printer
*p
,
2989 __isl_keep isl_multi_aff
*maff
)
2994 if (p
->output_format
== ISL_FORMAT_ISL
)
2995 return print_multi_aff_isl(p
, maff
);
2996 isl_die(p
->ctx
, isl_error_unsupported
, "unsupported output format",
2999 isl_printer_free(p
);
3003 static __isl_give isl_printer
*print_pw_multi_aff_body(
3004 __isl_take isl_printer
*p
, __isl_keep isl_pw_multi_aff
*pma
)
3011 for (i
= 0; i
< pma
->n
; ++i
) {
3015 p
= isl_printer_print_str(p
, "; ");
3016 p
= print_multi_aff(p
, pma
->p
[i
].maff
);
3017 space
= isl_multi_aff_get_domain_space(pma
->p
[i
].maff
);
3018 p
= print_disjuncts(set_to_map(pma
->p
[i
].set
), space
, p
, 0);
3019 isl_space_free(space
);
3023 isl_printer_free(p
);
3027 static __isl_give isl_printer
*print_pw_multi_aff_isl(__isl_take isl_printer
*p
,
3028 __isl_keep isl_pw_multi_aff
*pma
)
3030 struct isl_print_space_data data
= { 0 };
3035 p
= print_param_tuple(p
, pma
->dim
, &data
);
3036 p
= isl_printer_print_str(p
, "{ ");
3037 p
= print_pw_multi_aff_body(p
, pma
);
3038 p
= isl_printer_print_str(p
, " }");
3041 isl_printer_free(p
);
3045 /* Print the unnamed, single-dimensional piecewise multi affine expression "pma"
3048 static __isl_give isl_printer
*print_unnamed_pw_multi_aff_c(
3049 __isl_take isl_printer
*p
, __isl_keep isl_pw_multi_aff
*pma
)
3054 space
= isl_pw_multi_aff_get_domain_space(pma
);
3055 for (i
= 0; i
< pma
->n
- 1; ++i
) {
3056 p
= isl_printer_print_str(p
, "(");
3057 p
= print_set_c(p
, space
, pma
->p
[i
].set
);
3058 p
= isl_printer_print_str(p
, ") ? (");
3059 p
= print_aff_c(p
, pma
->p
[i
].maff
->u
.p
[0]);
3060 p
= isl_printer_print_str(p
, ") : ");
3062 isl_space_free(space
);
3064 return print_aff_c(p
, pma
->p
[pma
->n
- 1].maff
->u
.p
[0]);
3067 static __isl_give isl_printer
*print_pw_multi_aff_c(__isl_take isl_printer
*p
,
3068 __isl_keep isl_pw_multi_aff
*pma
)
3076 isl_die(p
->ctx
, isl_error_unsupported
,
3077 "cannot print empty isl_pw_multi_aff in C format",
3079 name
= isl_pw_multi_aff_get_tuple_name(pma
, isl_dim_out
);
3080 if (!name
&& isl_pw_multi_aff_dim(pma
, isl_dim_out
) == 1)
3081 return print_unnamed_pw_multi_aff_c(p
, pma
);
3083 isl_die(p
->ctx
, isl_error_unsupported
,
3084 "cannot print unnamed isl_pw_multi_aff in C format",
3087 p
= isl_printer_print_str(p
, name
);
3088 n
= isl_pw_multi_aff_dim(pma
, isl_dim_out
);
3090 isl_die(p
->ctx
, isl_error_unsupported
,
3091 "not supported yet", goto error
);
3095 isl_printer_free(p
);
3099 __isl_give isl_printer
*isl_printer_print_pw_multi_aff(
3100 __isl_take isl_printer
*p
, __isl_keep isl_pw_multi_aff
*pma
)
3105 if (p
->output_format
== ISL_FORMAT_ISL
)
3106 return print_pw_multi_aff_isl(p
, pma
);
3107 if (p
->output_format
== ISL_FORMAT_C
)
3108 return print_pw_multi_aff_c(p
, pma
);
3109 isl_die(p
->ctx
, isl_error_unsupported
, "unsupported output format",
3112 isl_printer_free(p
);
3116 static isl_stat
print_pw_multi_aff_body_wrap(__isl_take isl_pw_multi_aff
*pma
,
3119 struct isl_union_print_data
*data
;
3120 data
= (struct isl_union_print_data
*) user
;
3123 data
->p
= isl_printer_print_str(data
->p
, "; ");
3126 data
->p
= print_pw_multi_aff_body(data
->p
, pma
);
3127 isl_pw_multi_aff_free(pma
);
3132 static __isl_give isl_printer
*print_union_pw_multi_aff_isl(
3133 __isl_take isl_printer
*p
, __isl_keep isl_union_pw_multi_aff
*upma
)
3135 struct isl_union_print_data data
;
3136 struct isl_print_space_data space_data
= { 0 };
3139 space
= isl_union_pw_multi_aff_get_space(upma
);
3140 p
= print_param_tuple(p
, space
, &space_data
);
3141 isl_space_free(space
);
3142 p
= isl_printer_print_str(p
, s_open_set
[0]);
3145 isl_union_pw_multi_aff_foreach_pw_multi_aff(upma
,
3146 &print_pw_multi_aff_body_wrap
, &data
);
3148 p
= isl_printer_print_str(p
, s_close_set
[0]);
3152 __isl_give isl_printer
*isl_printer_print_union_pw_multi_aff(
3153 __isl_take isl_printer
*p
, __isl_keep isl_union_pw_multi_aff
*upma
)
3158 if (p
->output_format
== ISL_FORMAT_ISL
)
3159 return print_union_pw_multi_aff_isl(p
, upma
);
3160 isl_die(p
->ctx
, isl_error_unsupported
, "unsupported output format",
3163 isl_printer_free(p
);
3167 /* Print dimension "pos" of data->space to "p".
3169 * data->user is assumed to be an isl_multi_pw_aff.
3171 * If the current dimension is an output dimension, then print
3172 * the corresponding piecewise affine expression.
3173 * Otherwise, print the name of the dimension.
3175 static __isl_give isl_printer
*print_dim_mpa(__isl_take isl_printer
*p
,
3176 struct isl_print_space_data
*data
, unsigned pos
)
3181 isl_multi_pw_aff
*mpa
= data
->user
;
3184 if (data
->type
!= isl_dim_out
)
3185 return print_name(data
->space
, p
, data
->type
, pos
, data
->latex
);
3189 return isl_printer_print_str(p
, "(0 : false)");
3191 need_parens
= pa
->n
!= 1 || !isl_set_plain_is_universe(pa
->p
[0].set
);
3193 p
= isl_printer_print_str(p
, "(");
3194 space
= isl_multi_pw_aff_get_domain_space(mpa
);
3195 for (i
= 0; i
< pa
->n
; ++i
) {
3198 p
= isl_printer_print_str(p
, "; ");
3199 p
= print_aff_body(p
, space
, pa
->p
[i
].aff
);
3200 p
= print_disjuncts(pa
->p
[i
].set
, space
, p
, 0);
3202 isl_space_free(space
);
3204 p
= isl_printer_print_str(p
, ")");
3209 /* Print "mpa" to "p" in isl format.
3211 * If "mpa" is zero-dimensional and has a non-trivial explicit domain,
3212 * then it is printed after the tuple of affine expressions.
3214 static __isl_give isl_printer
*print_multi_pw_aff_isl(__isl_take isl_printer
*p
,
3215 __isl_keep isl_multi_pw_aff
*mpa
)
3217 struct isl_print_space_data data
= { 0 };
3218 isl_bool has_domain
;
3221 return isl_printer_free(p
);
3223 p
= print_param_tuple(p
, mpa
->space
, &data
);
3224 p
= isl_printer_print_str(p
, "{ ");
3225 data
.print_dim
= &print_dim_mpa
;
3227 p
= isl_print_space(mpa
->space
, p
, 0, &data
);
3228 has_domain
= isl_multi_pw_aff_has_non_trivial_domain(mpa
);
3230 return isl_printer_free(p
);
3234 space
= isl_space_domain(isl_space_copy(mpa
->space
));
3235 p
= print_disjuncts_set(mpa
->u
.dom
, space
, p
, 0);
3236 isl_space_free(space
);
3238 p
= isl_printer_print_str(p
, " }");
3242 __isl_give isl_printer
*isl_printer_print_multi_pw_aff(
3243 __isl_take isl_printer
*p
, __isl_keep isl_multi_pw_aff
*mpa
)
3246 return isl_printer_free(p
);
3248 if (p
->output_format
== ISL_FORMAT_ISL
)
3249 return print_multi_pw_aff_isl(p
, mpa
);
3250 isl_die(p
->ctx
, isl_error_unsupported
, "unsupported output format",
3251 return isl_printer_free(p
));
3254 /* Print dimension "pos" of data->space to "p".
3256 * data->user is assumed to be an isl_multi_val.
3258 * If the current dimension is an output dimension, then print
3259 * the corresponding value. Otherwise, print the name of the dimension.
3261 static __isl_give isl_printer
*print_dim_mv(__isl_take isl_printer
*p
,
3262 struct isl_print_space_data
*data
, unsigned pos
)
3264 isl_multi_val
*mv
= data
->user
;
3266 if (data
->type
== isl_dim_out
)
3267 return isl_printer_print_val(p
, mv
->u
.p
[pos
]);
3269 return print_name(data
->space
, p
, data
->type
, pos
, data
->latex
);
3272 /* Print the isl_multi_val "mv" to "p" in isl format.
3274 static __isl_give isl_printer
*print_multi_val_isl(__isl_take isl_printer
*p
,
3275 __isl_keep isl_multi_val
*mv
)
3277 struct isl_print_space_data data
= { 0 };
3280 return isl_printer_free(p
);
3282 p
= print_param_tuple(p
, mv
->space
, &data
);
3283 p
= isl_printer_print_str(p
, "{ ");
3284 data
.print_dim
= &print_dim_mv
;
3286 p
= isl_print_space(mv
->space
, p
, 0, &data
);
3287 p
= isl_printer_print_str(p
, " }");
3291 /* Print the isl_multi_val "mv" to "p".
3293 * Currently only supported in isl format.
3295 __isl_give isl_printer
*isl_printer_print_multi_val(
3296 __isl_take isl_printer
*p
, __isl_keep isl_multi_val
*mv
)
3299 return isl_printer_free(p
);
3301 if (p
->output_format
== ISL_FORMAT_ISL
)
3302 return print_multi_val_isl(p
, mv
);
3303 isl_die(p
->ctx
, isl_error_unsupported
, "unsupported output format",
3304 return isl_printer_free(p
));
3307 /* Print dimension "pos" of data->space to "p".
3309 * data->user is assumed to be an isl_multi_union_pw_aff.
3311 * The current dimension is necessarily a set dimension, so
3312 * we print the corresponding isl_union_pw_aff, including
3315 static __isl_give isl_printer
*print_union_pw_aff_dim(__isl_take isl_printer
*p
,
3316 struct isl_print_space_data
*data
, unsigned pos
)
3318 isl_multi_union_pw_aff
*mupa
= data
->user
;
3319 isl_union_pw_aff
*upa
;
3321 upa
= isl_multi_union_pw_aff_get_union_pw_aff(mupa
, pos
);
3322 p
= print_union_pw_aff_body(p
, upa
);
3323 isl_union_pw_aff_free(upa
);
3328 /* Print the isl_multi_union_pw_aff "mupa" to "p" in isl format.
3330 * If "mupa" is zero-dimensional and has a non-trivial explicit domain,
3331 * then it is printed after the tuple of affine expressions.
3332 * In order to clarify that this domain belongs to the expression,
3333 * the tuple along with the domain are placed inside parentheses.
3334 * If "mupa" has any parameters, then the opening parenthesis
3335 * appears after the parameter declarations.
3337 static __isl_give isl_printer
*print_multi_union_pw_aff_isl(
3338 __isl_take isl_printer
*p
, __isl_keep isl_multi_union_pw_aff
*mupa
)
3340 struct isl_print_space_data data
= { 0 };
3341 isl_bool has_domain
;
3345 return isl_printer_free(p
);
3346 has_domain
= isl_multi_union_pw_aff_has_non_trivial_domain(mupa
);
3348 return isl_printer_free(p
);
3350 space
= isl_multi_union_pw_aff_get_space(mupa
);
3351 p
= print_param_tuple(p
, space
, &data
);
3354 p
= isl_printer_print_str(p
, "(");
3356 data
.print_dim
= &print_union_pw_aff_dim
;
3359 p
= isl_print_space(space
, p
, 0, &data
);
3360 isl_space_free(space
);
3363 p
= isl_printer_print_str(p
, " : ");
3364 p
= isl_printer_print_union_set_isl_body(p
, mupa
->u
.dom
);
3365 p
= isl_printer_print_str(p
, ")");
3371 /* Print the isl_multi_union_pw_aff "mupa" to "p" in isl format.
3373 * We currently only support an isl format.
3375 __isl_give isl_printer
*isl_printer_print_multi_union_pw_aff(
3376 __isl_take isl_printer
*p
, __isl_keep isl_multi_union_pw_aff
*mupa
)
3379 return isl_printer_free(p
);
3381 if (p
->output_format
== ISL_FORMAT_ISL
)
3382 return print_multi_union_pw_aff_isl(p
, mupa
);
3383 isl_die(isl_printer_get_ctx(p
), isl_error_unsupported
,
3384 "unsupported output format", return isl_printer_free(p
));