66dbaa01ab45932c3684a7ca204a6934983a6145
[platform/upstream/isl.git] / isl_transitive_closure.c
1 /*
2  * Copyright 2010      INRIA Saclay
3  *
4  * Use of this software is governed by the GNU LGPLv2.1 license
5  *
6  * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
7  * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
8  * 91893 Orsay, France 
9  */
10
11 #include "isl_map.h"
12 #include "isl_map_private.h"
13 #include "isl_seq.h"
14 #include <isl_lp.h>
15  
16 /* Given a map that represents a path with the length of the path
17  * encoded as the difference between the last output coordindate
18  * and the last input coordinate, set this length to either
19  * exactly "length" (if "exactly" is set) or at least "length"
20  * (if "exactly" is not set).
21  */
22 static __isl_give isl_map *set_path_length(__isl_take isl_map *map,
23         int exactly, int length)
24 {
25         struct isl_dim *dim;
26         struct isl_basic_map *bmap;
27         unsigned d;
28         unsigned nparam;
29         int k;
30         isl_int *c;
31
32         if (!map)
33                 return NULL;
34
35         dim = isl_map_get_dim(map);
36         d = isl_dim_size(dim, isl_dim_in);
37         nparam = isl_dim_size(dim, isl_dim_param);
38         bmap = isl_basic_map_alloc_dim(dim, 0, 1, 1);
39         if (exactly) {
40                 k = isl_basic_map_alloc_equality(bmap);
41                 c = bmap->eq[k];
42         } else {
43                 k = isl_basic_map_alloc_inequality(bmap);
44                 c = bmap->ineq[k];
45         }
46         if (k < 0)
47                 goto error;
48         isl_seq_clr(c, 1 + isl_basic_map_total_dim(bmap));
49         isl_int_set_si(c[0], -length);
50         isl_int_set_si(c[1 + nparam + d - 1], -1);
51         isl_int_set_si(c[1 + nparam + d + d - 1], 1);
52
53         bmap = isl_basic_map_finalize(bmap);
54         map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
55
56         return map;
57 error:
58         isl_basic_map_free(bmap);
59         isl_map_free(map);
60         return NULL;
61 }
62
63 /* Check whether the overapproximation of the power of "map" is exactly
64  * the power of "map".  Let R be "map" and A_k the overapproximation.
65  * The approximation is exact if
66  *
67  *      A_1 = R
68  *      A_k = A_{k-1} \circ R                   k >= 2
69  *
70  * Since A_k is known to be an overapproximation, we only need to check
71  *
72  *      A_1 \subset R
73  *      A_k \subset A_{k-1} \circ R             k >= 2
74  *
75  * In practice, "app" has an extra input and output coordinate
76  * to encode the length of the path.  So, we first need to add
77  * this coordinate to "map" and set the length of the path to
78  * one.
79  */
80 static int check_power_exactness(__isl_take isl_map *map,
81         __isl_take isl_map *app)
82 {
83         int exact;
84         isl_map *app_1;
85         isl_map *app_2;
86
87         map = isl_map_add(map, isl_dim_in, 1);
88         map = isl_map_add(map, isl_dim_out, 1);
89         map = set_path_length(map, 1, 1);
90
91         app_1 = set_path_length(isl_map_copy(app), 1, 1);
92
93         exact = isl_map_is_subset(app_1, map);
94         isl_map_free(app_1);
95
96         if (!exact || exact < 0) {
97                 isl_map_free(app);
98                 isl_map_free(map);
99                 return exact;
100         }
101
102         app_1 = set_path_length(isl_map_copy(app), 0, 1);
103         app_2 = set_path_length(app, 0, 2);
104         app_1 = isl_map_apply_range(map, app_1);
105
106         exact = isl_map_is_subset(app_2, app_1);
107
108         isl_map_free(app_1);
109         isl_map_free(app_2);
110
111         return exact;
112 }
113
114 /* Check whether the overapproximation of the power of "map" is exactly
115  * the power of "map", possibly after projecting out the power (if "project"
116  * is set).
117  *
118  * If "project" is set and if "steps" can only result in acyclic paths,
119  * then we check
120  *
121  *      A = R \cup (A \circ R)
122  *
123  * where A is the overapproximation with the power projected out, i.e.,
124  * an overapproximation of the transitive closure.
125  * More specifically, since A is known to be an overapproximation, we check
126  *
127  *      A \subset R \cup (A \circ R)
128  *
129  * Otherwise, we check if the power is exact.
130  *
131  * Note that "app" has an extra input and output coordinate to encode
132  * the length of the part.  If we are only interested in the transitive
133  * closure, then we can simply project out these coordinates first.
134  */
135 static int check_exactness(__isl_take isl_map *map, __isl_take isl_map *app,
136         int project)
137 {
138         isl_map *test;
139         int exact;
140         unsigned d;
141
142         if (!project)
143                 return check_power_exactness(map, app);
144
145         d = isl_map_dim(map, isl_dim_in);
146         app = set_path_length(app, 0, 1);
147         app = isl_map_project_out(app, isl_dim_in, d, 1);
148         app = isl_map_project_out(app, isl_dim_out, d, 1);
149
150         test = isl_map_apply_range(isl_map_copy(map), isl_map_copy(app));
151         test = isl_map_union(test, isl_map_copy(map));
152
153         exact = isl_map_is_subset(app, test);
154
155         isl_map_free(app);
156         isl_map_free(test);
157
158         isl_map_free(map);
159
160         return exact;
161 error:
162         isl_map_free(app);
163         isl_map_free(map);
164         return -1;
165 }
166
167 /*
168  * The transitive closure implementation is based on the paper
169  * "Computing the Transitive Closure of a Union of Affine Integer
170  * Tuple Relations" by Anna Beletska, Denis Barthou, Wlodzimierz Bielecki and
171  * Albert Cohen.
172  */
173
174 /* Given a set of n offsets v_i (the rows of "steps"), construct a relation
175  * of the given dimension specification (Z^{n+1} -> Z^{n+1})
176  * that maps an element x to any element that can be reached
177  * by taking a non-negative number of steps along any of
178  * the extended offsets v'_i = [v_i 1].
179  * That is, construct
180  *
181  * { [x] -> [y] : exists k_i >= 0, y = x + \sum_i k_i v'_i }
182  *
183  * For any element in this relation, the number of steps taken
184  * is equal to the difference in the final coordinates.
185  */
186 static __isl_give isl_map *path_along_steps(__isl_take isl_dim *dim,
187         __isl_keep isl_mat *steps)
188 {
189         int i, j, k;
190         struct isl_basic_map *path = NULL;
191         unsigned d;
192         unsigned n;
193         unsigned nparam;
194
195         if (!dim || !steps)
196                 goto error;
197
198         d = isl_dim_size(dim, isl_dim_in);
199         n = steps->n_row;
200         nparam = isl_dim_size(dim, isl_dim_param);
201
202         path = isl_basic_map_alloc_dim(isl_dim_copy(dim), n, d, n);
203
204         for (i = 0; i < n; ++i) {
205                 k = isl_basic_map_alloc_div(path);
206                 if (k < 0)
207                         goto error;
208                 isl_assert(steps->ctx, i == k, goto error);
209                 isl_int_set_si(path->div[k][0], 0);
210         }
211
212         for (i = 0; i < d; ++i) {
213                 k = isl_basic_map_alloc_equality(path);
214                 if (k < 0)
215                         goto error;
216                 isl_seq_clr(path->eq[k], 1 + isl_basic_map_total_dim(path));
217                 isl_int_set_si(path->eq[k][1 + nparam + i], 1);
218                 isl_int_set_si(path->eq[k][1 + nparam + d + i], -1);
219                 if (i == d - 1)
220                         for (j = 0; j < n; ++j)
221                                 isl_int_set_si(path->eq[k][1 + nparam + 2 * d + j], 1);
222                 else
223                         for (j = 0; j < n; ++j)
224                                 isl_int_set(path->eq[k][1 + nparam + 2 * d + j],
225                                             steps->row[j][i]);
226         }
227
228         for (i = 0; i < n; ++i) {
229                 k = isl_basic_map_alloc_inequality(path);
230                 if (k < 0)
231                         goto error;
232                 isl_seq_clr(path->ineq[k], 1 + isl_basic_map_total_dim(path));
233                 isl_int_set_si(path->ineq[k][1 + nparam + 2 * d + i], 1);
234         }
235
236         isl_dim_free(dim);
237
238         path = isl_basic_map_simplify(path);
239         path = isl_basic_map_finalize(path);
240         return isl_map_from_basic_map(path);
241 error:
242         isl_dim_free(dim);
243         isl_basic_map_free(path);
244         return NULL;
245 }
246
247 #define IMPURE          0
248 #define PURE_PARAM      1
249 #define PURE_VAR        2
250 #define MIXED           3
251
252 /* Return PURE_PARAM if only the coefficients of the parameters are non-zero.
253  * Return PURE_VAR if only the coefficients of the set variables are non-zero.
254  * Return MIXED if only the coefficients of the parameters and the set
255  *      variables are non-zero and if moreover the parametric constant
256  *      can never attain positive values.
257  * Return IMPURE otherwise.
258  */
259 static int purity(__isl_keep isl_basic_set *bset, isl_int *c, int *div_purity,
260         int eq)
261 {
262         unsigned d;
263         unsigned n_div;
264         unsigned nparam;
265         int k;
266         int empty;
267         int i;
268         int p = 0, v = 0;
269
270         n_div = isl_basic_set_dim(bset, isl_dim_div);
271         d = isl_basic_set_dim(bset, isl_dim_set);
272         nparam = isl_basic_set_dim(bset, isl_dim_param);
273
274         for (i = 0; i < n_div; ++i) {
275                 if (isl_int_is_zero(c[1 + nparam + d + i]))
276                         continue;
277                 switch (div_purity[i]) {
278                 case PURE_PARAM: p = 1; break;
279                 case PURE_VAR: v = 1; break;
280                 default: return IMPURE;
281                 }
282         }
283         if (!p && isl_seq_first_non_zero(c + 1, nparam) == -1)
284                 return PURE_VAR;
285         if (!v && isl_seq_first_non_zero(c + 1 + nparam, d) == -1)
286                 return PURE_PARAM;
287         if (eq)
288                 return IMPURE;
289
290         bset = isl_basic_set_copy(bset);
291         bset = isl_basic_set_cow(bset);
292         bset = isl_basic_set_extend_constraints(bset, 0, 1);
293         k = isl_basic_set_alloc_inequality(bset);
294         if (k < 0)
295                 goto error;
296         isl_seq_clr(bset->ineq[k], 1 + isl_basic_set_total_dim(bset));
297         isl_seq_cpy(bset->ineq[k], c, 1 + nparam);
298         for (i = 0; i < n_div; ++i) {
299                 if (div_purity[i] != PURE_PARAM)
300                         continue;
301                 isl_int_set(bset->ineq[k][1 + nparam + d + i],
302                             c[1 + nparam + d + i]);
303         }
304         isl_int_sub_ui(bset->ineq[k][0], bset->ineq[k][0], 1);
305         empty = isl_basic_set_is_empty(bset);
306         isl_basic_set_free(bset);
307
308         return empty < 0 ? -1 : empty ? MIXED : IMPURE;
309 error:
310         isl_basic_set_free(bset);
311         return -1;
312 }
313
314 /* Return an array of integers indicating the type of each div in bset.
315  * If the div is (recursively) defined in terms of only the parameters,
316  * then the type is PURE_PARAM.
317  * If the div is (recursively) defined in terms of only the set variables,
318  * then the type is PURE_VAR.
319  * Otherwise, the type is IMPURE.
320  */
321 static __isl_give int *get_div_purity(__isl_keep isl_basic_set *bset)
322 {
323         int i, j;
324         int *div_purity;
325         unsigned d;
326         unsigned n_div;
327         unsigned nparam;
328
329         if (!bset)
330                 return NULL;
331
332         n_div = isl_basic_set_dim(bset, isl_dim_div);
333         d = isl_basic_set_dim(bset, isl_dim_set);
334         nparam = isl_basic_set_dim(bset, isl_dim_param);
335
336         div_purity = isl_alloc_array(bset->ctx, int, n_div);
337         if (!div_purity)
338                 return NULL;
339
340         for (i = 0; i < bset->n_div; ++i) {
341                 int p = 0, v = 0;
342                 if (isl_int_is_zero(bset->div[i][0])) {
343                         div_purity[i] = IMPURE;
344                         continue;
345                 }
346                 if (isl_seq_first_non_zero(bset->div[i] + 2, nparam) != -1)
347                         p = 1;
348                 if (isl_seq_first_non_zero(bset->div[i] + 2 + nparam, d) != -1)
349                         v = 1;
350                 for (j = 0; j < i; ++j) {
351                         if (isl_int_is_zero(bset->div[i][2 + nparam + d + j]))
352                                 continue;
353                         switch (div_purity[j]) {
354                         case PURE_PARAM: p = 1; break;
355                         case PURE_VAR: v = 1; break;
356                         default: p = v = 1; break;
357                         }
358                 }
359                 div_purity[i] = v ? p ? IMPURE : PURE_VAR : PURE_PARAM;
360         }
361
362         return div_purity;
363 }
364
365 /* Given a path with the as yet unconstrained length at position "pos",
366  * check if setting the length to zero results in only the identity
367  * mapping.
368  */
369 int empty_path_is_identity(__isl_keep isl_basic_map *path, unsigned pos)
370 {
371         isl_basic_map *test = NULL;
372         isl_basic_map *id = NULL;
373         int k;
374         int is_id;
375
376         test = isl_basic_map_copy(path);
377         test = isl_basic_map_extend_constraints(test, 1, 0);
378         k = isl_basic_map_alloc_equality(test);
379         if (k < 0)
380                 goto error;
381         isl_seq_clr(test->eq[k], 1 + isl_basic_map_total_dim(test));
382         isl_int_set_si(test->eq[k][pos], 1);
383         id = isl_basic_map_identity(isl_dim_domain(isl_basic_map_get_dim(path)));
384         is_id = isl_basic_map_is_subset(test, id);
385         isl_basic_map_free(test);
386         isl_basic_map_free(id);
387         return is_id;
388 error:
389         isl_basic_map_free(test);
390         return -1;
391 }
392
393 __isl_give isl_basic_map *add_delta_constraints(__isl_take isl_basic_map *path,
394         __isl_keep isl_basic_set *delta, unsigned off, unsigned nparam,
395         unsigned d, int *div_purity, int eq)
396 {
397         int i, k;
398         int n = eq ? delta->n_eq : delta->n_ineq;
399         isl_int **delta_c = eq ? delta->eq : delta->ineq;
400         isl_int **path_c = eq ? path->eq : path->ineq;
401         unsigned n_div;
402
403         n_div = isl_basic_set_dim(delta, isl_dim_div);
404
405         for (i = 0; i < n; ++i) {
406                 int p = purity(delta, delta_c[i], div_purity, eq);
407                 if (p < 0)
408                         goto error;
409                 if (p == IMPURE)
410                         continue;
411                 if (eq)
412                         k = isl_basic_map_alloc_equality(path);
413                 else
414                         k = isl_basic_map_alloc_inequality(path);
415                 if (k < 0)
416                         goto error;
417                 isl_seq_clr(path_c[k], 1 + isl_basic_map_total_dim(path));
418                 if (p == PURE_VAR) {
419                         isl_seq_cpy(path_c[k] + off,
420                                     delta_c[i] + 1 + nparam, d);
421                         isl_int_set(path_c[k][off + d], delta_c[i][0]);
422                 } else if (p == PURE_PARAM) {
423                         isl_seq_cpy(path_c[k], delta_c[i], 1 + nparam);
424                 } else {
425                         isl_seq_cpy(path_c[k] + off,
426                                     delta_c[i] + 1 + nparam, d);
427                         isl_seq_cpy(path_c[k], delta_c[i], 1 + nparam);
428                 }
429                 isl_seq_cpy(path_c[k] + off - n_div,
430                             delta_c[i] + 1 + nparam + d, n_div);
431         }
432
433         return path;
434 error:
435         isl_basic_map_free(path);
436         return NULL;
437 }
438
439 /* Given a set of offsets "delta", construct a relation of the
440  * given dimension specification (Z^{n+1} -> Z^{n+1}) that
441  * is an overapproximation of the relations that
442  * maps an element x to any element that can be reached
443  * by taking a non-negative number of steps along any of
444  * the elements in "delta".
445  * That is, construct an approximation of
446  *
447  *      { [x] -> [y] : exists f \in \delta, k \in Z :
448  *                                      y = x + k [f, 1] and k >= 0 }
449  *
450  * For any element in this relation, the number of steps taken
451  * is equal to the difference in the final coordinates.
452  *
453  * In particular, let delta be defined as
454  *
455  *      \delta = [p] -> { [x] : A x + a >= and B p + b >= 0 and
456  *                              C x + C'p + c >= 0 and
457  *                              D x + D'p + d >= 0 }
458  *
459  * where the constraints C x + C'p + c >= 0 are such that the parametric
460  * constant term of each constraint j, "C_j x + C'_j p + c_j",
461  * can never attain positive values, then the relation is constructed as
462  *
463  *      { [x] -> [y] : exists [f, k] \in Z^{n+1} : y = x + f and
464  *                      A f + k a >= 0 and B p + b >= 0 and
465  *                      C f + C'p + c >= 0 and k >= 1 }
466  *      union { [x] -> [x] }
467  *
468  * If the zero-length paths happen to correspond exactly to the identity
469  * mapping, then we return
470  *
471  *      { [x] -> [y] : exists [f, k] \in Z^{n+1} : y = x + f and
472  *                      A f + k a >= 0 and B p + b >= 0 and
473  *                      C f + C'p + c >= 0 and k >= 0 }
474  *
475  * instead.
476  *
477  * Existentially quantified variables in \delta are handled by
478  * classifying them as independent of the parameters, purely
479  * parameter dependent and others.  Constraints containing
480  * any of the other existentially quantified variables are removed.
481  * This is safe, but leads to an additional overapproximation.
482  */
483 static __isl_give isl_map *path_along_delta(__isl_take isl_dim *dim,
484         __isl_take isl_basic_set *delta)
485 {
486         isl_basic_map *path = NULL;
487         unsigned d;
488         unsigned n_div;
489         unsigned nparam;
490         unsigned off;
491         int i, k;
492         int is_id;
493         int *div_purity = NULL;
494
495         if (!delta)
496                 goto error;
497         n_div = isl_basic_set_dim(delta, isl_dim_div);
498         d = isl_basic_set_dim(delta, isl_dim_set);
499         nparam = isl_basic_set_dim(delta, isl_dim_param);
500         path = isl_basic_map_alloc_dim(isl_dim_copy(dim), n_div + d + 1,
501                         d + 1 + delta->n_eq, delta->n_ineq + 1);
502         off = 1 + nparam + 2 * (d + 1) + n_div;
503
504         for (i = 0; i < n_div + d + 1; ++i) {
505                 k = isl_basic_map_alloc_div(path);
506                 if (k < 0)
507                         goto error;
508                 isl_int_set_si(path->div[k][0], 0);
509         }
510
511         for (i = 0; i < d + 1; ++i) {
512                 k = isl_basic_map_alloc_equality(path);
513                 if (k < 0)
514                         goto error;
515                 isl_seq_clr(path->eq[k], 1 + isl_basic_map_total_dim(path));
516                 isl_int_set_si(path->eq[k][1 + nparam + i], 1);
517                 isl_int_set_si(path->eq[k][1 + nparam + d + 1 + i], -1);
518                 isl_int_set_si(path->eq[k][off + i], 1);
519         }
520
521         div_purity = get_div_purity(delta);
522         if (!div_purity)
523                 goto error;
524
525         path = add_delta_constraints(path, delta, off, nparam, d, div_purity, 1);
526         path = add_delta_constraints(path, delta, off, nparam, d, div_purity, 0);
527
528         is_id = empty_path_is_identity(path, off + d);
529         if (is_id < 0)
530                 goto error;
531
532         k = isl_basic_map_alloc_inequality(path);
533         if (k < 0)
534                 goto error;
535         isl_seq_clr(path->ineq[k], 1 + isl_basic_map_total_dim(path));
536         if (!is_id)
537                 isl_int_set_si(path->ineq[k][0], -1);
538         isl_int_set_si(path->ineq[k][off + d], 1);
539                         
540         free(div_purity);
541         isl_basic_set_free(delta);
542         path = isl_basic_map_finalize(path);
543         if (is_id) {
544                 isl_dim_free(dim);
545                 return isl_map_from_basic_map(path);
546         }
547         return isl_basic_map_union(path,
548                                 isl_basic_map_identity(isl_dim_domain(dim)));
549 error:
550         free(div_purity);
551         isl_dim_free(dim);
552         isl_basic_set_free(delta);
553         isl_basic_map_free(path);
554         return NULL;
555 }
556
557 /* Given a dimenion specification Z^{n+1} -> Z^{n+1} and a parameter "param",
558  * construct a map that equates the parameter to the difference
559  * in the final coordinates and imposes that this difference is positive.
560  * That is, construct
561  *
562  *      { [x,x_s] -> [y,y_s] : k = y_s - x_s > 0 }
563  */
564 static __isl_give isl_map *equate_parameter_to_length(__isl_take isl_dim *dim,
565         unsigned param)
566 {
567         struct isl_basic_map *bmap;
568         unsigned d;
569         unsigned nparam;
570         int k;
571
572         d = isl_dim_size(dim, isl_dim_in);
573         nparam = isl_dim_size(dim, isl_dim_param);
574         bmap = isl_basic_map_alloc_dim(dim, 0, 1, 1);
575         k = isl_basic_map_alloc_equality(bmap);
576         if (k < 0)
577                 goto error;
578         isl_seq_clr(bmap->eq[k], 1 + isl_basic_map_total_dim(bmap));
579         isl_int_set_si(bmap->eq[k][1 + param], -1);
580         isl_int_set_si(bmap->eq[k][1 + nparam + d - 1], -1);
581         isl_int_set_si(bmap->eq[k][1 + nparam + d + d - 1], 1);
582
583         k = isl_basic_map_alloc_inequality(bmap);
584         if (k < 0)
585                 goto error;
586         isl_seq_clr(bmap->ineq[k], 1 + isl_basic_map_total_dim(bmap));
587         isl_int_set_si(bmap->ineq[k][1 + param], 1);
588         isl_int_set_si(bmap->ineq[k][0], -1);
589
590         bmap = isl_basic_map_finalize(bmap);
591         return isl_map_from_basic_map(bmap);
592 error:
593         isl_basic_map_free(bmap);
594         return NULL;
595 }
596
597 /* Check whether "path" is acyclic, where the last coordinates of domain
598  * and range of path encode the number of steps taken.
599  * That is, check whether
600  *
601  *      { d | d = y - x and (x,y) in path }
602  *
603  * does not contain any element with positive last coordinate (positive length)
604  * and zero remaining coordinates (cycle).
605  */
606 static int is_acyclic(__isl_take isl_map *path)
607 {
608         int i;
609         int acyclic;
610         unsigned dim;
611         struct isl_set *delta;
612
613         delta = isl_map_deltas(path);
614         dim = isl_set_dim(delta, isl_dim_set);
615         for (i = 0; i < dim; ++i) {
616                 if (i == dim -1)
617                         delta = isl_set_lower_bound_si(delta, isl_dim_set, i, 1);
618                 else
619                         delta = isl_set_fix_si(delta, isl_dim_set, i, 0);
620         }
621
622         acyclic = isl_set_is_empty(delta);
623         isl_set_free(delta);
624
625         return acyclic;
626 }
627
628 /* Given a union of basic maps R = \cup_i R_i \subseteq D \times D
629  * and a dimension specification (Z^{n+1} -> Z^{n+1}),
630  * construct a map that is an overapproximation of the map
631  * that takes an element from the space D \times Z to another
632  * element from the same space, such that the first n coordinates of the
633  * difference between them is a sum of differences between images
634  * and pre-images in one of the R_i and such that the last coordinate
635  * is equal to the number of steps taken.
636  * That is, let
637  *
638  *      \Delta_i = { y - x | (x, y) in R_i }
639  *
640  * then the constructed map is an overapproximation of
641  *
642  *      { (x) -> (x + d) | \exists k_i >= 0, \delta_i \in \Delta_i :
643  *                              d = (\sum_i k_i \delta_i, \sum_i k_i) }
644  *
645  * The elements of the singleton \Delta_i's are collected as the
646  * rows of the steps matrix.  For all these \Delta_i's together,
647  * a single path is constructed.
648  * For each of the other \Delta_i's, we compute an overapproximation
649  * of the paths along elements of \Delta_i.
650  * Since each of these paths performs an addition, composition is
651  * symmetric and we can simply compose all resulting paths in any order.
652  */
653 static __isl_give isl_map *construct_extended_path(__isl_take isl_dim *dim,
654         __isl_keep isl_map *map, int *project)
655 {
656         struct isl_mat *steps = NULL;
657         struct isl_map *path = NULL;
658         unsigned d;
659         int i, j, n;
660
661         d = isl_map_dim(map, isl_dim_in);
662
663         path = isl_map_identity(isl_dim_domain(isl_dim_copy(dim)));
664
665         steps = isl_mat_alloc(map->ctx, map->n, d);
666         if (!steps)
667                 goto error;
668
669         n = 0;
670         for (i = 0; i < map->n; ++i) {
671                 struct isl_basic_set *delta;
672
673                 delta = isl_basic_map_deltas(isl_basic_map_copy(map->p[i]));
674
675                 for (j = 0; j < d; ++j) {
676                         int fixed;
677
678                         fixed = isl_basic_set_fast_dim_is_fixed(delta, j,
679                                                             &steps->row[n][j]);
680                         if (fixed < 0) {
681                                 isl_basic_set_free(delta);
682                                 goto error;
683                         }
684                         if (!fixed)
685                                 break;
686                 }
687
688
689                 if (j < d) {
690                         path = isl_map_apply_range(path,
691                                 path_along_delta(isl_dim_copy(dim), delta));
692                         path = isl_map_coalesce(path);
693                 } else {
694                         isl_basic_set_free(delta);
695                         ++n;
696                 }
697         }
698
699         if (n > 0) {
700                 steps->n_row = n;
701                 path = isl_map_apply_range(path,
702                                 path_along_steps(isl_dim_copy(dim), steps));
703         }
704
705         if (project && *project) {
706                 *project = is_acyclic(isl_map_copy(path));
707                 if (*project < 0)
708                         goto error;
709         }
710
711         isl_dim_free(dim);
712         isl_mat_free(steps);
713         return path;
714 error:
715         isl_dim_free(dim);
716         isl_mat_free(steps);
717         isl_map_free(path);
718         return NULL;
719 }
720
721 static int isl_set_overlaps(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
722 {
723         isl_set *i;
724         int no_overlap;
725
726         i = isl_set_intersect(isl_set_copy(set1), isl_set_copy(set2));
727         no_overlap = isl_set_is_empty(i);
728         isl_set_free(i);
729
730         return no_overlap < 0 ? -1 : !no_overlap;
731 }
732
733 /* Given a union of basic maps R = \cup_i R_i \subseteq D \times D
734  * and a dimension specification (Z^{n+1} -> Z^{n+1}),
735  * construct a map that is an overapproximation of the map
736  * that takes an element from the dom R \times Z to an
737  * element from ran R \times Z, such that the first n coordinates of the
738  * difference between them is a sum of differences between images
739  * and pre-images in one of the R_i and such that the last coordinate
740  * is equal to the number of steps taken.
741  * That is, let
742  *
743  *      \Delta_i = { y - x | (x, y) in R_i }
744  *
745  * then the constructed map is an overapproximation of
746  *
747  *      { (x) -> (x + d) | \exists k_i >= 1, \delta_i \in \Delta_i :
748  *                              d = (\sum_i k_i \delta_i, \sum_i k_i) and
749  *                              x in dom R and x + d in ran R }
750  */
751 static __isl_give isl_map *construct_component(__isl_take isl_dim *dim,
752         __isl_keep isl_map *map, int *exact, int project)
753 {
754         struct isl_set *domain = NULL;
755         struct isl_set *range = NULL;
756         struct isl_map *app = NULL;
757         struct isl_map *path = NULL;
758
759         domain = isl_map_domain(isl_map_copy(map));
760         domain = isl_set_coalesce(domain);
761         range = isl_map_range(isl_map_copy(map));
762         range = isl_set_coalesce(range);
763         if (!isl_set_overlaps(domain, range)) {
764                 isl_set_free(domain);
765                 isl_set_free(range);
766                 isl_dim_free(dim);
767
768                 map = isl_map_copy(map);
769                 map = isl_map_add(map, isl_dim_in, 1);
770                 map = isl_map_add(map, isl_dim_out, 1);
771                 map = set_path_length(map, 1, 1);
772                 return map;
773         }
774         app = isl_map_from_domain_and_range(domain, range);
775         app = isl_map_add(app, isl_dim_in, 1);
776         app = isl_map_add(app, isl_dim_out, 1);
777
778         path = construct_extended_path(isl_dim_copy(dim), map,
779                                         exact && *exact ? &project : NULL);
780         app = isl_map_intersect(app, path);
781
782         if (exact && *exact &&
783             (*exact = check_exactness(isl_map_copy(map), isl_map_copy(app),
784                                       project)) < 0)
785                 goto error;
786
787         isl_dim_free(dim);
788         app = set_path_length(app, 0, 1);
789         return app;
790 error:
791         isl_dim_free(dim);
792         isl_map_free(app);
793         return NULL;
794 }
795
796 /* Call construct_component and, if "project" is set, project out
797  * the final coordinates.
798  */
799 static __isl_give isl_map *construct_projected_component(
800         __isl_take isl_dim *dim,
801         __isl_keep isl_map *map, int *exact, int project)
802 {
803         isl_map *app;
804         unsigned d;
805
806         if (!dim)
807                 return NULL;
808         d = isl_dim_size(dim, isl_dim_in);
809
810         app = construct_component(dim, map, exact, project);
811         if (project) {
812                 app = isl_map_project_out(app, isl_dim_in, d - 1, 1);
813                 app = isl_map_project_out(app, isl_dim_out, d - 1, 1);
814         }
815         return app;
816 }
817
818 /* Structure for representing the nodes in the graph being traversed
819  * using Tarjan's algorithm.
820  * index represents the order in which nodes are visited.
821  * min_index is the index of the root of a (sub)component.
822  * on_stack indicates whether the node is currently on the stack.
823  */
824 struct basic_map_sort_node {
825         int index;
826         int min_index;
827         int on_stack;
828 };
829 /* Structure for representing the graph being traversed
830  * using Tarjan's algorithm.
831  * len is the number of nodes
832  * node is an array of nodes
833  * stack contains the nodes on the path from the root to the current node
834  * sp is the stack pointer
835  * index is the index of the last node visited
836  * order contains the elements of the components separated by -1
837  * op represents the current position in order
838  */
839 struct basic_map_sort {
840         int len;
841         struct basic_map_sort_node *node;
842         int *stack;
843         int sp;
844         int index;
845         int *order;
846         int op;
847 };
848
849 static void basic_map_sort_free(struct basic_map_sort *s)
850 {
851         if (!s)
852                 return;
853         free(s->node);
854         free(s->stack);
855         free(s->order);
856         free(s);
857 }
858
859 static struct basic_map_sort *basic_map_sort_alloc(struct isl_ctx *ctx, int len)
860 {
861         struct basic_map_sort *s;
862         int i;
863
864         s = isl_calloc_type(ctx, struct basic_map_sort);
865         if (!s)
866                 return NULL;
867         s->len = len;
868         s->node = isl_alloc_array(ctx, struct basic_map_sort_node, len);
869         if (!s->node)
870                 goto error;
871         for (i = 0; i < len; ++i)
872                 s->node[i].index = -1;
873         s->stack = isl_alloc_array(ctx, int, len);
874         if (!s->stack)
875                 goto error;
876         s->order = isl_alloc_array(ctx, int, 2 * len);
877         if (!s->order)
878                 goto error;
879
880         s->sp = 0;
881         s->index = 0;
882         s->op = 0;
883
884         return s;
885 error:
886         basic_map_sort_free(s);
887         return NULL;
888 }
889
890 /* Check whether in the computation of the transitive closure
891  * "bmap1" (R_1) should follow (or be part of the same component as)
892  * "bmap2" (R_2).
893  *
894  * That is check whether
895  *
896  *      R_1 \circ R_2
897  *
898  * is a subset of
899  *
900  *      R_2 \circ R_1
901  *
902  * If so, then there is no reason for R_1 to immediately follow R_2
903  * in any path.
904  */
905 static int basic_map_follows(__isl_keep isl_basic_map *bmap1,
906         __isl_keep isl_basic_map *bmap2)
907 {
908         struct isl_map *map12 = NULL;
909         struct isl_map *map21 = NULL;
910         int subset;
911
912         map21 = isl_map_from_basic_map(
913                         isl_basic_map_apply_range(
914                                 isl_basic_map_copy(bmap2),
915                                 isl_basic_map_copy(bmap1)));
916         subset = isl_map_is_empty(map21);
917         if (subset < 0)
918                 goto error;
919         if (subset) {
920                 isl_map_free(map21);
921                 return 0;
922         }
923
924         map12 = isl_map_from_basic_map(
925                         isl_basic_map_apply_range(
926                                 isl_basic_map_copy(bmap1),
927                                 isl_basic_map_copy(bmap2)));
928
929         subset = isl_map_is_subset(map21, map12);
930
931         isl_map_free(map12);
932         isl_map_free(map21);
933
934         return subset < 0 ? -1 : !subset;
935 error:
936         isl_map_free(map21);
937         return -1;
938 }
939
940 /* Perform Tarjan's algorithm for computing the strongly connected components
941  * in the graph with the disjuncts of "map" as vertices and with an
942  * edge between any pair of disjuncts such that the first has
943  * to be applied after the second.
944  */
945 static int power_components_tarjan(struct basic_map_sort *s,
946         __isl_keep isl_map *map, int i)
947 {
948         int j;
949
950         s->node[i].index = s->index;
951         s->node[i].min_index = s->index;
952         s->node[i].on_stack = 1;
953         s->index++;
954         s->stack[s->sp++] = i;
955
956         for (j = s->len - 1; j >= 0; --j) {
957                 int f;
958
959                 if (j == i)
960                         continue;
961                 if (s->node[j].index >= 0 &&
962                         (!s->node[j].on_stack ||
963                          s->node[j].index > s->node[i].min_index))
964                         continue;
965
966                 f = basic_map_follows(map->p[i], map->p[j]);
967                 if (f < 0)
968                         return -1;
969                 if (!f)
970                         continue;
971
972                 if (s->node[j].index < 0) {
973                         power_components_tarjan(s, map, j);
974                         if (s->node[j].min_index < s->node[i].min_index)
975                                 s->node[i].min_index = s->node[j].min_index;
976                 } else if (s->node[j].index < s->node[i].min_index)
977                         s->node[i].min_index = s->node[j].index;
978         }
979
980         if (s->node[i].index != s->node[i].min_index)
981                 return 0;
982
983         do {
984                 j = s->stack[--s->sp];
985                 s->node[j].on_stack = 0;
986                 s->order[s->op++] = j;
987         } while (j != i);
988         s->order[s->op++] = -1;
989
990         return 0;
991 }
992
993 /* Given a union of basic maps R = \cup_i R_i \subseteq D \times D
994  * and a dimension specification (Z^{n+1} -> Z^{n+1}),
995  * construct a map that is an overapproximation of the map
996  * that takes an element from the dom R \times Z to an
997  * element from ran R \times Z, such that the first n coordinates of the
998  * difference between them is a sum of differences between images
999  * and pre-images in one of the R_i and such that the last coordinate
1000  * is equal to the number of steps taken.
1001  * If "project" is set, then these final coordinates are not included,
1002  * i.e., a relation of type Z^n -> Z^n is returned.
1003  * That is, let
1004  *
1005  *      \Delta_i = { y - x | (x, y) in R_i }
1006  *
1007  * then the constructed map is an overapproximation of
1008  *
1009  *      { (x) -> (x + d) | \exists k_i >= 0, \delta_i \in \Delta_i :
1010  *                              d = (\sum_i k_i \delta_i, \sum_i k_i) and
1011  *                              x in dom R and x + d in ran R }
1012  *
1013  * or
1014  *
1015  *      { (x) -> (x + d) | \exists k_i >= 0, \delta_i \in \Delta_i :
1016  *                              d = (\sum_i k_i \delta_i) and
1017  *                              x in dom R and x + d in ran R }
1018  *
1019  * if "project" is set.
1020  *
1021  * We first split the map into strongly connected components, perform
1022  * the above on each component and then join the results in the correct
1023  * order, at each join also taking in the union of both arguments
1024  * to allow for paths that do not go through one of the two arguments.
1025  */
1026 static __isl_give isl_map *construct_power_components(__isl_take isl_dim *dim,
1027         __isl_keep isl_map *map, int *exact, int project)
1028 {
1029         int i, n;
1030         struct isl_map *path = NULL;
1031         struct basic_map_sort *s = NULL;
1032
1033         if (!map)
1034                 goto error;
1035         if (map->n <= 1)
1036                 return construct_projected_component(dim, map, exact, project);
1037
1038         s = basic_map_sort_alloc(map->ctx, map->n);
1039         if (!s)
1040                 goto error;
1041         for (i = map->n - 1; i >= 0; --i) {
1042                 if (s->node[i].index >= 0)
1043                         continue;
1044                 if (power_components_tarjan(s, map, i) < 0)
1045                         goto error;
1046         }
1047
1048         i = 0;
1049         n = map->n;
1050         if (project)
1051                 path = isl_map_empty(isl_map_get_dim(map));
1052         else
1053                 path = isl_map_empty(isl_dim_copy(dim));
1054         while (n) {
1055                 struct isl_map *comp;
1056                 isl_map *path_comp, *path_comb;
1057                 comp = isl_map_alloc_dim(isl_map_get_dim(map), n, 0);
1058                 while (s->order[i] != -1) {
1059                         comp = isl_map_add_basic_map(comp,
1060                                     isl_basic_map_copy(map->p[s->order[i]]));
1061                         --n;
1062                         ++i;
1063                 }
1064                 path_comp = construct_projected_component(isl_dim_copy(dim),
1065                                                 comp, exact, project);
1066                 path_comb = isl_map_apply_range(isl_map_copy(path),
1067                                                 isl_map_copy(path_comp));
1068                 path = isl_map_union(path, path_comp);
1069                 path = isl_map_union(path, path_comb);
1070                 isl_map_free(comp);
1071                 ++i;
1072         }
1073
1074         basic_map_sort_free(s);
1075         isl_dim_free(dim);
1076
1077         return path;
1078 error:
1079         basic_map_sort_free(s);
1080         isl_dim_free(dim);
1081         return NULL;
1082 }
1083
1084 /* Given a union of basic maps R = \cup_i R_i \subseteq D \times D,
1085  * construct a map that is an overapproximation of the map
1086  * that takes an element from the space D to another
1087  * element from the same space, such that the difference between
1088  * them is a strictly positive sum of differences between images
1089  * and pre-images in one of the R_i.
1090  * The number of differences in the sum is equated to parameter "param".
1091  * That is, let
1092  *
1093  *      \Delta_i = { y - x | (x, y) in R_i }
1094  *
1095  * then the constructed map is an overapproximation of
1096  *
1097  *      { (x) -> (x + d) | \exists k_i >= 0, \delta_i \in \Delta_i :
1098  *                              d = \sum_i k_i \delta_i and k = \sum_i k_i > 0 }
1099  * or
1100  *
1101  *      { (x) -> (x + d) | \exists k_i >= 0, \delta_i \in \Delta_i :
1102  *                              d = \sum_i k_i \delta_i and \sum_i k_i > 0 }
1103  *
1104  * if "project" is set.
1105  *
1106  * If "project" is not set, then
1107  * we first construct an extended mapping with an extra coordinate
1108  * that indicates the number of steps taken.  In particular,
1109  * the difference in the last coordinate is equal to the number
1110  * of steps taken to move from a domain element to the corresponding
1111  * image element(s).
1112  * In the final step, this difference is equated to the parameter "param"
1113  * and made positive.  The extra coordinates are subsequently projected out.
1114  */
1115 static __isl_give isl_map *construct_power(__isl_keep isl_map *map,
1116         unsigned param, int *exact, int project)
1117 {
1118         struct isl_map *app = NULL;
1119         struct isl_map *diff;
1120         struct isl_dim *dim = NULL;
1121         unsigned d;
1122
1123         if (!map)
1124                 return NULL;
1125
1126         dim = isl_map_get_dim(map);
1127
1128         d = isl_dim_size(dim, isl_dim_in);
1129         dim = isl_dim_add(dim, isl_dim_in, 1);
1130         dim = isl_dim_add(dim, isl_dim_out, 1);
1131
1132         app = construct_power_components(isl_dim_copy(dim), map,
1133                                         exact, project);
1134
1135         if (project) {
1136                 isl_dim_free(dim);
1137         } else {
1138                 diff = equate_parameter_to_length(dim, param);
1139                 app = isl_map_intersect(app, diff);
1140                 app = isl_map_project_out(app, isl_dim_in, d, 1);
1141                 app = isl_map_project_out(app, isl_dim_out, d, 1);
1142         }
1143
1144         return app;
1145 }
1146
1147 /* Compute the positive powers of "map", or an overapproximation.
1148  * The power is given by parameter "param".  If the result is exact,
1149  * then *exact is set to 1.
1150  *
1151  * If project is set, then we are actually interested in the transitive
1152  * closure, so we can use a more relaxed exactness check.
1153  * The lengths of the paths are also projected out instead of being
1154  * equated to "param" (which is then ignored in this case).
1155  */
1156 static __isl_give isl_map *map_power(__isl_take isl_map *map, unsigned param,
1157         int *exact, int project)
1158 {
1159         struct isl_map *app = NULL;
1160
1161         if (exact)
1162                 *exact = 1;
1163
1164         map = isl_map_coalesce(map);
1165         if (!map)
1166                 return NULL;
1167
1168         if (isl_map_fast_is_empty(map))
1169                 return map;
1170
1171         isl_assert(map->ctx, project || param < isl_map_dim(map, isl_dim_param),
1172                 goto error);
1173         isl_assert(map->ctx,
1174                 isl_map_dim(map, isl_dim_in) == isl_map_dim(map, isl_dim_out),
1175                 goto error);
1176
1177         app = construct_power(map, param, exact, project);
1178
1179         isl_map_free(map);
1180         return app;
1181 error:
1182         isl_map_free(map);
1183         isl_map_free(app);
1184         return NULL;
1185 }
1186
1187 /* Compute the positive powers of "map", or an overapproximation.
1188  * The power is given by parameter "param".  If the result is exact,
1189  * then *exact is set to 1.
1190  */
1191 __isl_give isl_map *isl_map_power(__isl_take isl_map *map, unsigned param,
1192         int *exact)
1193 {
1194         return map_power(map, param, exact, 0);
1195 }
1196
1197 /* Check whether equality i of bset is a pure stride constraint
1198  * on a single dimensions, i.e., of the form
1199  *
1200  *      v = k e
1201  *
1202  * with k a constant and e an existentially quantified variable.
1203  */
1204 static int is_eq_stride(__isl_keep isl_basic_set *bset, int i)
1205 {
1206         int k;
1207         unsigned nparam;
1208         unsigned d;
1209         unsigned n_div;
1210         int pos1;
1211         int pos2;
1212
1213         if (!bset)
1214                 return -1;
1215
1216         if (!isl_int_is_zero(bset->eq[i][0]))
1217                 return 0;
1218
1219         nparam = isl_basic_set_dim(bset, isl_dim_param);
1220         d = isl_basic_set_dim(bset, isl_dim_set);
1221         n_div = isl_basic_set_dim(bset, isl_dim_div);
1222
1223         if (isl_seq_first_non_zero(bset->eq[i] + 1, nparam) != -1)
1224                 return 0;
1225         pos1 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam, d);
1226         if (pos1 == -1)
1227                 return 0;
1228         if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + pos1 + 1, 
1229                                         d - pos1 - 1) != -1)
1230                 return 0;
1231
1232         pos2 = isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d, n_div);
1233         if (pos2 == -1)
1234                 return 0;
1235         if (isl_seq_first_non_zero(bset->eq[i] + 1 + nparam + d  + pos2 + 1,
1236                                    n_div - pos2 - 1) != -1)
1237                 return 0;
1238         if (!isl_int_is_one(bset->eq[i][1 + nparam + pos1]) &&
1239             !isl_int_is_negone(bset->eq[i][1 + nparam + pos1]))
1240                 return 0;
1241
1242         return 1;
1243 }
1244
1245 /* Given a map, compute the smallest superset of this map that is of the form
1246  *
1247  *      { i -> j : L <= j - i <= U and exists a_p: j_p - i_p = M_p a_p }
1248  *
1249  * (where p ranges over the (non-parametric) dimensions),
1250  * compute the transitive closure of this map, i.e.,
1251  *
1252  *      { i -> j : exists k > 0:
1253  *              k L <= j - i <= k U and exists a: j_p - i_p = M_p a_p }
1254  *
1255  * and intersect domain and range of this transitive closure with
1256  * domain and range of the original map.
1257  *
1258  * If with_id is set, then try to include as much of the identity mapping
1259  * as possible, by computing
1260  *
1261  *      { i -> j : exists k >= 0:
1262  *              k L <= j - i <= k U and exists a: j_p - i_p = M_p a_p }
1263  *
1264  * instead (i.e., allow k = 0) and by intersecting domain and range
1265  * with the union of the domain and the range of the original map.
1266  *
1267  * In practice, we compute the difference set
1268  *
1269  *      delta  = { j - i | i -> j in map },
1270  *
1271  * look for stride constraint on the individual dimensions and compute
1272  * (constant) lower and upper bounds for each individual dimension,
1273  * adding a constraint for each bound not equal to infinity.
1274  */
1275 static __isl_give isl_map *box_closure(__isl_take isl_map *map, int with_id)
1276 {
1277         int i;
1278         int k;
1279         unsigned d;
1280         unsigned nparam;
1281         unsigned total;
1282         isl_dim *dim;
1283         isl_set *delta;
1284         isl_set *domain = NULL;
1285         isl_set *range = NULL;
1286         isl_map *app = NULL;
1287         isl_basic_set *aff = NULL;
1288         isl_basic_map *bmap = NULL;
1289         isl_vec *obj = NULL;
1290         isl_int opt;
1291
1292         isl_int_init(opt);
1293
1294         delta = isl_map_deltas(isl_map_copy(map));
1295
1296         aff = isl_set_affine_hull(isl_set_copy(delta));
1297         if (!aff)
1298                 goto error;
1299         dim = isl_map_get_dim(map);
1300         d = isl_dim_size(dim, isl_dim_in);
1301         nparam = isl_dim_size(dim, isl_dim_param);
1302         total = isl_dim_total(dim);
1303         bmap = isl_basic_map_alloc_dim(dim,
1304                                         aff->n_div + 1, aff->n_div, 2 * d + 1);
1305         for (i = 0; i < aff->n_div + 1; ++i) {
1306                 k = isl_basic_map_alloc_div(bmap);
1307                 if (k < 0)
1308                         goto error;
1309                 isl_int_set_si(bmap->div[k][0], 0);
1310         }
1311         for (i = 0; i < aff->n_eq; ++i) {
1312                 if (!is_eq_stride(aff, i))
1313                         continue;
1314                 k = isl_basic_map_alloc_equality(bmap);
1315                 if (k < 0)
1316                         goto error;
1317                 isl_seq_clr(bmap->eq[k], 1 + nparam);
1318                 isl_seq_cpy(bmap->eq[k] + 1 + nparam + d,
1319                                 aff->eq[i] + 1 + nparam, d);
1320                 isl_seq_neg(bmap->eq[k] + 1 + nparam,
1321                                 aff->eq[i] + 1 + nparam, d);
1322                 isl_seq_cpy(bmap->eq[k] + 1 + nparam + 2 * d,
1323                                 aff->eq[i] + 1 + nparam + d, aff->n_div);
1324                 isl_int_set_si(bmap->eq[k][1 + total + aff->n_div], 0);
1325         }
1326         obj = isl_vec_alloc(map->ctx, 1 + nparam + d);
1327         if (!obj)
1328                 goto error;
1329         isl_seq_clr(obj->el, 1 + nparam + d);
1330         for (i = 0; i < d; ++ i) {
1331                 enum isl_lp_result res;
1332
1333                 isl_int_set_si(obj->el[1 + nparam + i], 1);
1334
1335                 res = isl_set_solve_lp(delta, 0, obj->el, map->ctx->one, &opt,
1336                                         NULL, NULL);
1337                 if (res == isl_lp_error)
1338                         goto error;
1339                 if (res == isl_lp_ok) {
1340                         k = isl_basic_map_alloc_inequality(bmap);
1341                         if (k < 0)
1342                                 goto error;
1343                         isl_seq_clr(bmap->ineq[k],
1344                                         1 + nparam + 2 * d + bmap->n_div);
1345                         isl_int_set_si(bmap->ineq[k][1 + nparam + i], -1);
1346                         isl_int_set_si(bmap->ineq[k][1 + nparam + d + i], 1);
1347                         isl_int_neg(bmap->ineq[k][1 + nparam + 2 * d + aff->n_div], opt);
1348                 }
1349
1350                 res = isl_set_solve_lp(delta, 1, obj->el, map->ctx->one, &opt,
1351                                         NULL, NULL);
1352                 if (res == isl_lp_error)
1353                         goto error;
1354                 if (res == isl_lp_ok) {
1355                         k = isl_basic_map_alloc_inequality(bmap);
1356                         if (k < 0)
1357                                 goto error;
1358                         isl_seq_clr(bmap->ineq[k],
1359                                         1 + nparam + 2 * d + bmap->n_div);
1360                         isl_int_set_si(bmap->ineq[k][1 + nparam + i], 1);
1361                         isl_int_set_si(bmap->ineq[k][1 + nparam + d + i], -1);
1362                         isl_int_set(bmap->ineq[k][1 + nparam + 2 * d + aff->n_div], opt);
1363                 }
1364
1365                 isl_int_set_si(obj->el[1 + nparam + i], 0);
1366         }
1367         k = isl_basic_map_alloc_inequality(bmap);
1368         if (k < 0)
1369                 goto error;
1370         isl_seq_clr(bmap->ineq[k],
1371                         1 + nparam + 2 * d + bmap->n_div);
1372         if (!with_id)
1373                 isl_int_set_si(bmap->ineq[k][0], -1);
1374         isl_int_set_si(bmap->ineq[k][1 + nparam + 2 * d + aff->n_div], 1);
1375
1376         domain = isl_map_domain(isl_map_copy(map));
1377         domain = isl_set_coalesce(domain);
1378         range = isl_map_range(isl_map_copy(map));
1379         range = isl_set_coalesce(range);
1380         if (with_id) {
1381                 domain = isl_set_union(domain, range);
1382                 domain = isl_set_coalesce(domain);
1383                 range = isl_set_copy(domain);
1384         }
1385         app = isl_map_from_domain_and_range(domain, range);
1386
1387         isl_vec_free(obj);
1388         isl_basic_set_free(aff);
1389         isl_map_free(map);
1390         bmap = isl_basic_map_finalize(bmap);
1391         isl_set_free(delta);
1392         isl_int_clear(opt);
1393
1394         map = isl_map_from_basic_map(bmap);
1395         map = isl_map_intersect(map, app);
1396
1397         return map;
1398 error:
1399         isl_vec_free(obj);
1400         isl_basic_map_free(bmap);
1401         isl_basic_set_free(aff);
1402         isl_map_free(map);
1403         isl_set_free(delta);
1404         isl_int_clear(opt);
1405         return NULL;
1406 }
1407
1408 /* Check whether app is the transitive closure of map.
1409  * In particular, check that app is acyclic and, if so,
1410  * check that
1411  *
1412  *      app \subset (map \cup (map \circ app))
1413  */
1414 static int check_exactness_omega(__isl_keep isl_map *map,
1415         __isl_keep isl_map *app)
1416 {
1417         isl_set *delta;
1418         int i;
1419         int is_empty, is_exact;
1420         unsigned d;
1421         isl_map *test;
1422
1423         delta = isl_map_deltas(isl_map_copy(app));
1424         d = isl_set_dim(delta, isl_dim_set);
1425         for (i = 0; i < d; ++i)
1426                 delta = isl_set_fix_si(delta, isl_dim_set, i, 0);
1427         is_empty = isl_set_is_empty(delta);
1428         isl_set_free(delta);
1429         if (is_empty < 0)
1430                 return -1;
1431         if (!is_empty)
1432                 return 0;
1433
1434         test = isl_map_apply_range(isl_map_copy(app), isl_map_copy(map));
1435         test = isl_map_union(test, isl_map_copy(map));
1436         is_exact = isl_map_is_subset(app, test);
1437         isl_map_free(test);
1438
1439         return is_exact;
1440 }
1441
1442 /* Check if basic map M_i can be combined with all the other
1443  * basic maps such that
1444  *
1445  *      (\cup_j M_j)^+
1446  *
1447  * can be computed as
1448  *
1449  *      M_i \cup (\cup_{j \ne i} M_i^* \circ M_j \circ M_i^*)^+
1450  *
1451  * In particular, check if we can compute a compact representation
1452  * of
1453  *
1454  *              M_i^* \circ M_j \circ M_i^*
1455  *
1456  * for each j != i.
1457  * Let M_i^? be an extension of M_i^+ that allows paths
1458  * of length zero, i.e., the result of box_closure(., 1).
1459  * The criterion, as proposed by Kelly et al., is that
1460  * id = M_i^? - M_i^+ can be represented as a basic map
1461  * and that
1462  *
1463  *      id \circ M_j \circ id = M_j
1464  *
1465  * for each j != i.
1466  *
1467  * If this function returns 1, then tc and qc are set to
1468  * M_i^+ and M_i^?, respectively.
1469  */
1470 static int can_be_split_off(__isl_keep isl_map *map, int i,
1471         __isl_give isl_map **tc, __isl_give isl_map **qc)
1472 {
1473         isl_map *map_i, *id;
1474         int j = -1;
1475
1476         map_i = isl_map_from_basic_map(isl_basic_map_copy(map->p[i]));
1477         *tc = box_closure(isl_map_copy(map_i), 0);
1478         *qc = box_closure(map_i, 1);
1479         id = isl_map_subtract(isl_map_copy(*qc), isl_map_copy(*tc));
1480
1481         if (!id || !*qc)
1482                 goto error;
1483         if (id->n != 1 || (*qc)->n != 1)
1484                 goto done;
1485
1486         for (j = 0; j < map->n; ++j) {
1487                 isl_map *map_j, *test;
1488                 int is_ok;
1489
1490                 if (i == j)
1491                         continue;
1492                 map_j = isl_map_from_basic_map(
1493                                         isl_basic_map_copy(map->p[j]));
1494                 test = isl_map_apply_range(isl_map_copy(id),
1495                                                 isl_map_copy(map_j));
1496                 test = isl_map_apply_range(test, isl_map_copy(id));
1497                 is_ok = isl_map_is_equal(test, map_j);
1498                 isl_map_free(map_j);
1499                 isl_map_free(test);
1500                 if (is_ok < 0)
1501                         goto error;
1502                 if (!is_ok)
1503                         break;
1504         }
1505
1506 done:
1507         isl_map_free(id);
1508         if (j == map->n)
1509                 return 1;
1510
1511         isl_map_free(*qc);
1512         isl_map_free(*tc);
1513         *qc = NULL;
1514         *tc = NULL;
1515
1516         return 0;
1517 error:
1518         isl_map_free(id);
1519         isl_map_free(*qc);
1520         isl_map_free(*tc);
1521         *qc = NULL;
1522         *tc = NULL;
1523         return -1;
1524 }
1525
1526 /* Compute an overapproximation of the transitive closure of "map"
1527  * using a variation of the algorithm from
1528  * "Transitive Closure of Infinite Graphs and its Applications"
1529  * by Kelly et al.
1530  *
1531  * We first check whether we can can split of any basic map M_i and
1532  * compute
1533  *
1534  *      (\cup_j M_j)^+
1535  *
1536  * as
1537  *
1538  *      M_i \cup (\cup_{j \ne i} M_i^* \circ M_j \circ M_i^*)^+
1539  *
1540  * using a recursive call on the remaining map.
1541  *
1542  * If not, we simply call box_closure on the whole map.
1543  */
1544 static __isl_give isl_map *compute_closure_omega(__isl_take isl_map *map)
1545 {
1546         int i, j;
1547
1548         if (!map)
1549                 return NULL;
1550         if (map->n == 1)
1551                 return box_closure(map, 0);
1552
1553         map = isl_map_cow(map);
1554         if (!map)
1555                 goto error;
1556
1557         for (i = 0; i < map->n; ++i) {
1558                 int ok;
1559                 isl_map *qc, *tc;
1560                 ok = can_be_split_off(map, i, &tc, &qc);
1561                 if (ok < 0)
1562                         goto error;
1563                 if (!ok)
1564                         continue;
1565
1566                 isl_basic_map_free(map->p[i]);
1567                 if (i != map->n - 1)
1568                         map->p[i] = map->p[map->n - 1];
1569                 map->n--;
1570
1571                 map = isl_map_apply_range(isl_map_copy(qc), map);
1572                 map = isl_map_apply_range(map, qc);
1573
1574                 return isl_map_union(tc, compute_closure_omega(map));
1575         }
1576
1577         return box_closure(map, 0);
1578 error:
1579         isl_map_free(map);
1580         return NULL;
1581 }
1582
1583 /* Compute an overapproximation of the transitive closure of "map"
1584  * using a variation of the algorithm from
1585  * "Transitive Closure of Infinite Graphs and its Applications"
1586  * by Kelly et al. and check whether the result is definitely exact.
1587  */
1588 static __isl_give isl_map *transitive_closure_omega(__isl_take isl_map *map,
1589         int *exact)
1590 {
1591         isl_map *app;
1592
1593         app = compute_closure_omega(isl_map_copy(map));
1594
1595         if (exact)
1596                 *exact = check_exactness_omega(map, app);
1597
1598         isl_map_free(map);
1599         return app;
1600 }
1601
1602 /* Compute the transitive closure  of "map", or an overapproximation.
1603  * If the result is exact, then *exact is set to 1.
1604  * Simply use map_power to compute the powers of map, but tell
1605  * it to project out the lengths of the paths instead of equating
1606  * the length to a parameter.
1607  */
1608 __isl_give isl_map *isl_map_transitive_closure(__isl_take isl_map *map,
1609         int *exact)
1610 {
1611         unsigned param;
1612
1613         if (!map)
1614                 goto error;
1615
1616         if (map->ctx->opt->closure == ISL_CLOSURE_OMEGA)
1617                 return transitive_closure_omega(map, exact);
1618
1619         param = isl_map_dim(map, isl_dim_param);
1620         map = map_power(map, param, exact, 1);
1621
1622         return map;
1623 error:
1624         isl_map_free(map);
1625         return NULL;
1626 }