add generic isl_map_project_out
[platform/upstream/isl.git] / isl_map.c
1 /*
2  * Copyright 2008-2009 Katholieke Universiteit Leuven
3  * Copyright 2010      INRIA Saclay
4  *
5  * Use of this software is governed by the GNU LGPLv2.1 license
6  *
7  * Written by Sven Verdoolaege, K.U.Leuven, Departement
8  * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
9  * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
10  * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France 
11  */
12
13 #include <string.h>
14 #include <strings.h>
15 #include "isl_ctx.h"
16 #include "isl_blk.h"
17 #include "isl_dim.h"
18 #include "isl_equalities.h"
19 #include "isl_list.h"
20 #include "isl_lp.h"
21 #include "isl_seq.h"
22 #include "isl_set.h"
23 #include "isl_map.h"
24 #include "isl_map_private.h"
25 #include "isl_map_piplib.h"
26 #include "isl_sample.h"
27 #include "isl_tab.h"
28 #include "isl_vec.h"
29
30 /* Maps dst positions to src positions */
31 struct isl_dim_map {
32         unsigned len;
33         int pos[1];
34 };
35
36 static struct isl_dim_map *isl_dim_map_alloc(struct isl_ctx *ctx, unsigned len)
37 {
38         int i;
39         struct isl_dim_map *dim_map;
40         dim_map = isl_alloc(ctx, struct isl_dim_map,
41                                 sizeof(struct isl_dim_map) + len * sizeof(int));
42         if (!dim_map)
43                 return NULL;
44         dim_map->len = 1 + len;
45         dim_map->pos[0] = 0;
46         for (i = 0; i < len; ++i)
47                 dim_map->pos[1 + i] = -1;
48         return dim_map;
49 }
50
51 static unsigned n(struct isl_dim *dim, enum isl_dim_type type)
52 {
53         switch (type) {
54         case isl_dim_param:     return dim->nparam;
55         case isl_dim_in:        return dim->n_in;
56         case isl_dim_out:       return dim->n_out;
57         case isl_dim_all:       return dim->nparam + dim->n_in + dim->n_out;
58         }
59 }
60
61 static unsigned pos(struct isl_dim *dim, enum isl_dim_type type)
62 {
63         switch (type) {
64         case isl_dim_param:     return 1;
65         case isl_dim_in:        return 1 + dim->nparam;
66         case isl_dim_out:       return 1 + dim->nparam + dim->n_in;
67         }
68 }
69
70 static void isl_dim_map_dim_range(struct isl_dim_map *dim_map,
71         struct isl_dim *dim, enum isl_dim_type type,
72         unsigned first, unsigned n, unsigned dst_pos)
73 {
74         int i;
75         unsigned src_pos;
76
77         if (!dim_map || !dim)
78                 return;
79         
80         src_pos = pos(dim, type);
81         for (i = 0; i < n; ++i)
82                 dim_map->pos[1 + dst_pos + i] = src_pos + first + i;
83 }
84
85 static void isl_dim_map_dim(struct isl_dim_map *dim_map, struct isl_dim *dim,
86                 enum isl_dim_type type, unsigned dst_pos)
87 {
88         isl_dim_map_dim_range(dim_map, dim, type, 0, n(dim, type), dst_pos);
89 }
90
91 static void isl_dim_map_div(struct isl_dim_map *dim_map,
92                 struct isl_basic_map *bmap, unsigned dst_pos)
93 {
94         int i;
95         unsigned src_pos;
96
97         if (!dim_map || !bmap)
98                 return;
99         
100         src_pos = 1 + isl_dim_total(bmap->dim);
101         for (i = 0; i < bmap->n_div; ++i)
102                 dim_map->pos[1 + dst_pos + i] = src_pos + i;
103 }
104
105 static void isl_dim_map_dump(struct isl_dim_map *dim_map)
106 {
107         int i;
108
109         for (i = 0; i < dim_map->len; ++i)
110                 fprintf(stderr, "%d -> %d; ", i, dim_map->pos[i]);
111         fprintf(stderr, "\n");
112 }
113
114 unsigned isl_basic_map_dim(const struct isl_basic_map *bmap,
115                                 enum isl_dim_type type)
116 {
117         switch (type) {
118         case isl_dim_param:
119         case isl_dim_in:
120         case isl_dim_out:       return isl_dim_size(bmap->dim, type);
121         case isl_dim_div:       return bmap->n_div;
122         case isl_dim_all:       return isl_basic_map_total_dim(bmap);
123         }
124 }
125
126 unsigned isl_map_dim(const struct isl_map *map, enum isl_dim_type type)
127 {
128         return n(map->dim, type);
129 }
130
131 unsigned isl_set_dim(const struct isl_set *set, enum isl_dim_type type)
132 {
133         return n(set->dim, type);
134 }
135
136 unsigned isl_basic_map_offset(struct isl_basic_map *bmap,
137                                         enum isl_dim_type type)
138 {
139         struct isl_dim *dim = bmap->dim;
140         switch (type) {
141         case isl_dim_param:     return 1;
142         case isl_dim_in:        return 1 + dim->nparam;
143         case isl_dim_out:       return 1 + dim->nparam + dim->n_in;
144         case isl_dim_div:       return 1 + dim->nparam + dim->n_in + dim->n_out;
145         }
146 }
147
148 static unsigned map_offset(struct isl_map *map, enum isl_dim_type type)
149 {
150         return pos(map->dim, type);
151 }
152
153 unsigned isl_basic_set_dim(const struct isl_basic_set *bset,
154                                 enum isl_dim_type type)
155 {
156         return isl_basic_map_dim((const struct isl_basic_map*)bset, type);
157 }
158
159 unsigned isl_basic_set_n_dim(const struct isl_basic_set *bset)
160 {
161         return bset->dim->n_out;
162 }
163
164 unsigned isl_basic_set_n_param(const struct isl_basic_set *bset)
165 {
166         return bset->dim->nparam;
167 }
168
169 unsigned isl_basic_set_total_dim(const struct isl_basic_set *bset)
170 {
171         return isl_dim_total(bset->dim) + bset->n_div;
172 }
173
174 unsigned isl_set_n_dim(const struct isl_set *set)
175 {
176         return set->dim->n_out;
177 }
178
179 unsigned isl_set_n_param(const struct isl_set *set)
180 {
181         return set->dim->nparam;
182 }
183
184 unsigned isl_basic_map_n_in(const struct isl_basic_map *bmap)
185 {
186         return bmap->dim->n_in;
187 }
188
189 unsigned isl_basic_map_n_out(const struct isl_basic_map *bmap)
190 {
191         return bmap->dim->n_out;
192 }
193
194 unsigned isl_basic_map_n_param(const struct isl_basic_map *bmap)
195 {
196         return bmap->dim->nparam;
197 }
198
199 unsigned isl_basic_map_n_div(const struct isl_basic_map *bmap)
200 {
201         return bmap->n_div;
202 }
203
204 unsigned isl_basic_map_total_dim(const struct isl_basic_map *bmap)
205 {
206         return isl_dim_total(bmap->dim) + bmap->n_div;
207 }
208
209 unsigned isl_map_n_in(const struct isl_map *map)
210 {
211         return map->dim->n_in;
212 }
213
214 unsigned isl_map_n_out(const struct isl_map *map)
215 {
216         return map->dim->n_out;
217 }
218
219 unsigned isl_map_n_param(const struct isl_map *map)
220 {
221         return map->dim->nparam;
222 }
223
224 int isl_map_compatible_domain(struct isl_map *map, struct isl_set *set)
225 {
226         return map->dim->n_in == set->dim->n_out &&
227                map->dim->nparam == set->dim->nparam;
228 }
229
230 int isl_basic_map_compatible_domain(struct isl_basic_map *bmap,
231                 struct isl_basic_set *bset)
232 {
233         return bmap->dim->n_in == bset->dim->n_out &&
234                bmap->dim->nparam == bset->dim->nparam;
235 }
236
237 int isl_basic_map_compatible_range(struct isl_basic_map *bmap,
238                 struct isl_basic_set *bset)
239 {
240         return bmap->dim->n_out == bset->dim->n_out &&
241                bmap->dim->nparam == bset->dim->nparam;
242 }
243
244 struct isl_dim *isl_basic_map_get_dim(struct isl_basic_map *bmap)
245 {
246         if (!bmap)
247                 return NULL;
248         return isl_dim_copy(bmap->dim);
249 }
250
251 struct isl_dim *isl_basic_set_get_dim(struct isl_basic_set *bset)
252 {
253         if (!bset)
254                 return NULL;
255         return isl_dim_copy(bset->dim);
256 }
257
258 struct isl_dim *isl_map_get_dim(struct isl_map *map)
259 {
260         if (!map)
261                 return NULL;
262         return isl_dim_copy(map->dim);
263 }
264
265 struct isl_dim *isl_set_get_dim(struct isl_set *set)
266 {
267         if (!set)
268                 return NULL;
269         return isl_dim_copy(set->dim);
270 }
271
272 static struct isl_basic_map *basic_map_init(struct isl_ctx *ctx,
273                 struct isl_basic_map *bmap, unsigned extra,
274                 unsigned n_eq, unsigned n_ineq)
275 {
276         int i;
277         size_t row_size = 1 + isl_dim_total(bmap->dim) + extra;
278
279         bmap->block = isl_blk_alloc(ctx, (n_ineq + n_eq) * row_size);
280         if (isl_blk_is_error(bmap->block)) {
281                 free(bmap);
282                 return NULL;
283         }
284
285         bmap->ineq = isl_alloc_array(ctx, isl_int *, n_ineq + n_eq);
286         if (!bmap->ineq) {
287                 isl_blk_free(ctx, bmap->block);
288                 free(bmap);
289                 return NULL;
290         }
291
292         if (extra == 0) {
293                 bmap->block2 = isl_blk_empty();
294                 bmap->div = NULL;
295         } else {
296                 bmap->block2 = isl_blk_alloc(ctx, extra * (1 + row_size));
297                 if (isl_blk_is_error(bmap->block2)) {
298                         free(bmap->ineq);
299                         isl_blk_free(ctx, bmap->block);
300                         free(bmap);
301                         return NULL;
302                 }
303
304                 bmap->div = isl_alloc_array(ctx, isl_int *, extra);
305                 if (!bmap->div) {
306                         isl_blk_free(ctx, bmap->block2);
307                         free(bmap->ineq);
308                         isl_blk_free(ctx, bmap->block);
309                         free(bmap);
310                         return NULL;
311                 }
312         }
313
314         for (i = 0; i < n_ineq + n_eq; ++i)
315                 bmap->ineq[i] = bmap->block.data + i * row_size;
316
317         for (i = 0; i < extra; ++i)
318                 bmap->div[i] = bmap->block2.data + i * (1 + row_size);
319
320         bmap->ctx = ctx;
321         isl_ctx_ref(ctx);
322         bmap->ref = 1;
323         bmap->flags = 0;
324         bmap->c_size = n_eq + n_ineq;
325         bmap->eq = bmap->ineq + n_ineq;
326         bmap->extra = extra;
327         bmap->n_eq = 0;
328         bmap->n_ineq = 0;
329         bmap->n_div = 0;
330         bmap->sample = NULL;
331
332         return bmap;
333 error:
334         isl_basic_map_free(bmap);
335         return NULL;
336 }
337
338 struct isl_basic_set *isl_basic_set_alloc(struct isl_ctx *ctx,
339                 unsigned nparam, unsigned dim, unsigned extra,
340                 unsigned n_eq, unsigned n_ineq)
341 {
342         struct isl_basic_map *bmap;
343         bmap = isl_basic_map_alloc(ctx, nparam, 0, dim, extra, n_eq, n_ineq);
344         return (struct isl_basic_set *)bmap;
345 }
346
347 struct isl_basic_set *isl_basic_set_alloc_dim(struct isl_dim *dim,
348                 unsigned extra, unsigned n_eq, unsigned n_ineq)
349 {
350         struct isl_basic_map *bmap;
351         if (!dim)
352                 return NULL;
353         isl_assert(dim->ctx, dim->n_in == 0, return NULL);
354         bmap = isl_basic_map_alloc_dim(dim, extra, n_eq, n_ineq);
355         return (struct isl_basic_set *)bmap;
356 }
357
358 struct isl_basic_map *isl_basic_map_alloc_dim(struct isl_dim *dim,
359                 unsigned extra, unsigned n_eq, unsigned n_ineq)
360 {
361         struct isl_basic_map *bmap;
362
363         if (!dim)
364                 return NULL;
365         bmap = isl_alloc_type(dim->ctx, struct isl_basic_map);
366         if (!bmap)
367                 goto error;
368         bmap->dim = dim;
369
370         return basic_map_init(dim->ctx, bmap, extra, n_eq, n_ineq);
371 error:
372         isl_dim_free(dim);
373         return NULL;
374 }
375
376 struct isl_basic_map *isl_basic_map_alloc(struct isl_ctx *ctx,
377                 unsigned nparam, unsigned in, unsigned out, unsigned extra,
378                 unsigned n_eq, unsigned n_ineq)
379 {
380         struct isl_basic_map *bmap;
381         struct isl_dim *dim;
382
383         dim = isl_dim_alloc(ctx, nparam, in, out);
384         if (!dim)
385                 return NULL;
386
387         bmap = isl_basic_map_alloc_dim(dim, extra, n_eq, n_ineq);
388         return bmap;
389 }
390
391 static void dup_constraints(
392                 struct isl_basic_map *dst, struct isl_basic_map *src)
393 {
394         int i;
395         unsigned total = isl_basic_map_total_dim(src);
396
397         for (i = 0; i < src->n_eq; ++i) {
398                 int j = isl_basic_map_alloc_equality(dst);
399                 isl_seq_cpy(dst->eq[j], src->eq[i], 1+total);
400         }
401
402         for (i = 0; i < src->n_ineq; ++i) {
403                 int j = isl_basic_map_alloc_inequality(dst);
404                 isl_seq_cpy(dst->ineq[j], src->ineq[i], 1+total);
405         }
406
407         for (i = 0; i < src->n_div; ++i) {
408                 int j = isl_basic_map_alloc_div(dst);
409                 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total);
410         }
411         ISL_F_SET(dst, ISL_BASIC_SET_FINAL);
412 }
413
414 struct isl_basic_map *isl_basic_map_dup(struct isl_basic_map *bmap)
415 {
416         struct isl_basic_map *dup;
417
418         if (!bmap)
419                 return NULL;
420         dup = isl_basic_map_alloc_dim(isl_dim_copy(bmap->dim),
421                         bmap->n_div, bmap->n_eq, bmap->n_ineq);
422         if (!dup)
423                 return NULL;
424         dup_constraints(dup, bmap);
425         dup->flags = bmap->flags;
426         dup->sample = isl_vec_copy(bmap->sample);
427         return dup;
428 }
429
430 struct isl_basic_set *isl_basic_set_dup(struct isl_basic_set *bset)
431 {
432         struct isl_basic_map *dup;
433
434         dup = isl_basic_map_dup((struct isl_basic_map *)bset);
435         return (struct isl_basic_set *)dup;
436 }
437
438 struct isl_basic_set *isl_basic_set_copy(struct isl_basic_set *bset)
439 {
440         if (!bset)
441                 return NULL;
442
443         if (ISL_F_ISSET(bset, ISL_BASIC_SET_FINAL)) {
444                 bset->ref++;
445                 return bset;
446         }
447         return isl_basic_set_dup(bset);
448 }
449
450 struct isl_set *isl_set_copy(struct isl_set *set)
451 {
452         if (!set)
453                 return NULL;
454
455         set->ref++;
456         return set;
457 }
458
459 struct isl_basic_map *isl_basic_map_copy(struct isl_basic_map *bmap)
460 {
461         if (!bmap)
462                 return NULL;
463
464         if (ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL)) {
465                 bmap->ref++;
466                 return bmap;
467         }
468         return isl_basic_map_dup(bmap);
469 }
470
471 struct isl_map *isl_map_copy(struct isl_map *map)
472 {
473         if (!map)
474                 return NULL;
475
476         map->ref++;
477         return map;
478 }
479
480 void isl_basic_map_free(struct isl_basic_map *bmap)
481 {
482         if (!bmap)
483                 return;
484
485         if (--bmap->ref > 0)
486                 return;
487
488         isl_ctx_deref(bmap->ctx);
489         free(bmap->div);
490         isl_blk_free(bmap->ctx, bmap->block2);
491         free(bmap->ineq);
492         isl_blk_free(bmap->ctx, bmap->block);
493         isl_vec_free(bmap->sample);
494         isl_dim_free(bmap->dim);
495         free(bmap);
496 }
497
498 void isl_basic_set_free(struct isl_basic_set *bset)
499 {
500         isl_basic_map_free((struct isl_basic_map *)bset);
501 }
502
503 static int room_for_con(struct isl_basic_map *bmap, unsigned n)
504 {
505         return bmap->n_eq + bmap->n_ineq + n <= bmap->c_size;
506 }
507
508 int isl_basic_map_alloc_equality(struct isl_basic_map *bmap)
509 {
510         struct isl_ctx *ctx;
511         if (!bmap)
512                 return -1;
513         ctx = bmap->ctx;
514         isl_assert(ctx, room_for_con(bmap, 1), return -1);
515         isl_assert(ctx, (bmap->eq - bmap->ineq) + bmap->n_eq <= bmap->c_size,
516                         return -1);
517         ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
518         ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
519         ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
520         ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
521         ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
522         if ((bmap->eq - bmap->ineq) + bmap->n_eq == bmap->c_size) {
523                 isl_int *t;
524                 int j = isl_basic_map_alloc_inequality(bmap);
525                 if (j < 0)
526                         return -1;
527                 t = bmap->ineq[j];
528                 bmap->ineq[j] = bmap->ineq[bmap->n_ineq - 1];
529                 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
530                 bmap->eq[-1] = t;
531                 bmap->n_eq++;
532                 bmap->n_ineq--;
533                 bmap->eq--;
534                 return 0;
535         }
536         isl_seq_clr(bmap->eq[bmap->n_eq] + 1 + isl_basic_map_total_dim(bmap),
537                       bmap->extra - bmap->n_div);
538         return bmap->n_eq++;
539 }
540
541 int isl_basic_set_alloc_equality(struct isl_basic_set *bset)
542 {
543         return isl_basic_map_alloc_equality((struct isl_basic_map *)bset);
544 }
545
546 int isl_basic_map_free_equality(struct isl_basic_map *bmap, unsigned n)
547 {
548         if (!bmap)
549                 return -1;
550         isl_assert(bmap->ctx, n <= bmap->n_eq, return -1);
551         bmap->n_eq -= n;
552         return 0;
553 }
554
555 int isl_basic_set_free_equality(struct isl_basic_set *bset, unsigned n)
556 {
557         return isl_basic_map_free_equality((struct isl_basic_map *)bset, n);
558 }
559
560 int isl_basic_map_drop_equality(struct isl_basic_map *bmap, unsigned pos)
561 {
562         isl_int *t;
563         if (!bmap)
564                 return -1;
565         isl_assert(bmap->ctx, pos < bmap->n_eq, return -1);
566
567         if (pos != bmap->n_eq - 1) {
568                 t = bmap->eq[pos];
569                 bmap->eq[pos] = bmap->eq[bmap->n_eq - 1];
570                 bmap->eq[bmap->n_eq - 1] = t;
571         }
572         bmap->n_eq--;
573         return 0;
574 }
575
576 int isl_basic_set_drop_equality(struct isl_basic_set *bset, unsigned pos)
577 {
578         return isl_basic_map_drop_equality((struct isl_basic_map *)bset, pos);
579 }
580
581 void isl_basic_map_inequality_to_equality(
582                 struct isl_basic_map *bmap, unsigned pos)
583 {
584         isl_int *t;
585
586         t = bmap->ineq[pos];
587         bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
588         bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
589         bmap->eq[-1] = t;
590         bmap->n_eq++;
591         bmap->n_ineq--;
592         bmap->eq--;
593         ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
594         ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
595         ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
596         ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
597 }
598
599 static int room_for_ineq(struct isl_basic_map *bmap, unsigned n)
600 {
601         return bmap->n_ineq + n <= bmap->eq - bmap->ineq;
602 }
603
604 int isl_basic_map_alloc_inequality(struct isl_basic_map *bmap)
605 {
606         struct isl_ctx *ctx;
607         if (!bmap)
608                 return -1;
609         ctx = bmap->ctx;
610         isl_assert(ctx, room_for_ineq(bmap, 1), return -1);
611         ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
612         ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
613         ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
614         ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
615         isl_seq_clr(bmap->ineq[bmap->n_ineq] +
616                       1 + isl_basic_map_total_dim(bmap),
617                       bmap->extra - bmap->n_div);
618         return bmap->n_ineq++;
619 }
620
621 int isl_basic_set_alloc_inequality(struct isl_basic_set *bset)
622 {
623         return isl_basic_map_alloc_inequality((struct isl_basic_map *)bset);
624 }
625
626 int isl_basic_map_free_inequality(struct isl_basic_map *bmap, unsigned n)
627 {
628         if (!bmap)
629                 return -1;
630         isl_assert(bmap->ctx, n <= bmap->n_ineq, return -1);
631         bmap->n_ineq -= n;
632         return 0;
633 }
634
635 int isl_basic_set_free_inequality(struct isl_basic_set *bset, unsigned n)
636 {
637         return isl_basic_map_free_inequality((struct isl_basic_map *)bset, n);
638 }
639
640 int isl_basic_map_drop_inequality(struct isl_basic_map *bmap, unsigned pos)
641 {
642         isl_int *t;
643         if (!bmap)
644                 return -1;
645         isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
646
647         if (pos != bmap->n_ineq - 1) {
648                 t = bmap->ineq[pos];
649                 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
650                 bmap->ineq[bmap->n_ineq - 1] = t;
651                 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
652         }
653         bmap->n_ineq--;
654         return 0;
655 }
656
657 int isl_basic_set_drop_inequality(struct isl_basic_set *bset, unsigned pos)
658 {
659         return isl_basic_map_drop_inequality((struct isl_basic_map *)bset, pos);
660 }
661
662 __isl_give isl_basic_map *isl_basic_map_add_eq(__isl_take isl_basic_map *bmap,
663         isl_int *eq)
664 {
665         int k;
666
667         bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
668         if (!bmap)
669                 return NULL;
670         k = isl_basic_map_alloc_equality(bmap);
671         if (k < 0)
672                 goto error;
673         isl_seq_cpy(bmap->eq[k], eq, 1 + isl_basic_map_total_dim(bmap));
674         return bmap;
675 error:
676         isl_basic_map_free(bmap);
677         return NULL;
678 }
679
680 __isl_give isl_basic_set *isl_basic_set_add_eq(__isl_take isl_basic_set *bset,
681         isl_int *eq)
682 {
683         return (isl_basic_set *)
684                 isl_basic_map_add_eq((isl_basic_map *)bset, eq);
685 }
686
687 __isl_give isl_basic_map *isl_basic_map_add_ineq(__isl_take isl_basic_map *bmap,
688         isl_int *ineq)
689 {
690         int k;
691
692         bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
693         if (!bmap)
694                 return NULL;
695         k = isl_basic_map_alloc_inequality(bmap);
696         if (k < 0)
697                 goto error;
698         isl_seq_cpy(bmap->ineq[k], ineq, 1 + isl_basic_map_total_dim(bmap));
699         return bmap;
700 error:
701         isl_basic_map_free(bmap);
702         return NULL;
703 }
704
705 __isl_give isl_basic_set *isl_basic_set_add_ineq(__isl_take isl_basic_set *bset,
706         isl_int *ineq)
707 {
708         return (isl_basic_set *)
709                 isl_basic_map_add_ineq((isl_basic_map *)bset, ineq);
710 }
711
712 int isl_basic_map_alloc_div(struct isl_basic_map *bmap)
713 {
714         if (!bmap)
715                 return -1;
716         isl_assert(bmap->ctx, bmap->n_div < bmap->extra, return -1);
717         isl_seq_clr(bmap->div[bmap->n_div] +
718                       1 + 1 + isl_basic_map_total_dim(bmap),
719                       bmap->extra - bmap->n_div);
720         ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
721         return bmap->n_div++;
722 }
723
724 int isl_basic_set_alloc_div(struct isl_basic_set *bset)
725 {
726         return isl_basic_map_alloc_div((struct isl_basic_map *)bset);
727 }
728
729 int isl_basic_map_free_div(struct isl_basic_map *bmap, unsigned n)
730 {
731         if (!bmap)
732                 return -1;
733         isl_assert(bmap->ctx, n <= bmap->n_div, return -1);
734         bmap->n_div -= n;
735         return 0;
736 }
737
738 int isl_basic_set_free_div(struct isl_basic_set *bset, unsigned n)
739 {
740         return isl_basic_map_free_div((struct isl_basic_map *)bset, n);
741 }
742
743 /* Copy constraint from src to dst, putting the vars of src at offset
744  * dim_off in dst and the divs of src at offset div_off in dst.
745  * If both sets are actually map, then dim_off applies to the input
746  * variables.
747  */
748 static void copy_constraint(struct isl_basic_map *dst_map, isl_int *dst,
749                             struct isl_basic_map *src_map, isl_int *src,
750                             unsigned in_off, unsigned out_off, unsigned div_off)
751 {
752         unsigned src_nparam = isl_basic_map_n_param(src_map);
753         unsigned dst_nparam = isl_basic_map_n_param(dst_map);
754         unsigned src_in = isl_basic_map_n_in(src_map);
755         unsigned dst_in = isl_basic_map_n_in(dst_map);
756         unsigned src_out = isl_basic_map_n_out(src_map);
757         unsigned dst_out = isl_basic_map_n_out(dst_map);
758         isl_int_set(dst[0], src[0]);
759         isl_seq_cpy(dst+1, src+1, isl_min(dst_nparam, src_nparam));
760         if (dst_nparam > src_nparam)
761                 isl_seq_clr(dst+1+src_nparam,
762                                 dst_nparam - src_nparam);
763         isl_seq_clr(dst+1+dst_nparam, in_off);
764         isl_seq_cpy(dst+1+dst_nparam+in_off,
765                     src+1+src_nparam,
766                     isl_min(dst_in-in_off, src_in));
767         if (dst_in-in_off > src_in)
768                 isl_seq_clr(dst+1+dst_nparam+in_off+src_in,
769                                 dst_in - in_off - src_in);
770         isl_seq_clr(dst+1+dst_nparam+dst_in, out_off);
771         isl_seq_cpy(dst+1+dst_nparam+dst_in+out_off,
772                     src+1+src_nparam+src_in,
773                     isl_min(dst_out-out_off, src_out));
774         if (dst_out-out_off > src_out)
775                 isl_seq_clr(dst+1+dst_nparam+dst_in+out_off+src_out,
776                                 dst_out - out_off - src_out);
777         isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out, div_off);
778         isl_seq_cpy(dst+1+dst_nparam+dst_in+dst_out+div_off,
779                     src+1+src_nparam+src_in+src_out,
780                     isl_min(dst_map->extra-div_off, src_map->n_div));
781         if (dst_map->n_div-div_off > src_map->n_div)
782                 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out+
783                                 div_off+src_map->n_div,
784                                 dst_map->n_div - div_off - src_map->n_div);
785 }
786
787 static void copy_div(struct isl_basic_map *dst_map, isl_int *dst,
788                      struct isl_basic_map *src_map, isl_int *src,
789                      unsigned in_off, unsigned out_off, unsigned div_off)
790 {
791         isl_int_set(dst[0], src[0]);
792         copy_constraint(dst_map, dst+1, src_map, src+1, in_off, out_off, div_off);
793 }
794
795 static struct isl_basic_map *add_constraints(struct isl_basic_map *bmap1,
796                 struct isl_basic_map *bmap2, unsigned i_pos, unsigned o_pos)
797 {
798         int i;
799         unsigned div_off;
800
801         if (!bmap1 || !bmap2)
802                 goto error;
803
804         div_off = bmap1->n_div;
805
806         for (i = 0; i < bmap2->n_eq; ++i) {
807                 int i1 = isl_basic_map_alloc_equality(bmap1);
808                 if (i1 < 0)
809                         goto error;
810                 copy_constraint(bmap1, bmap1->eq[i1], bmap2, bmap2->eq[i],
811                                 i_pos, o_pos, div_off);
812         }
813
814         for (i = 0; i < bmap2->n_ineq; ++i) {
815                 int i1 = isl_basic_map_alloc_inequality(bmap1);
816                 if (i1 < 0)
817                         goto error;
818                 copy_constraint(bmap1, bmap1->ineq[i1], bmap2, bmap2->ineq[i],
819                                 i_pos, o_pos, div_off);
820         }
821
822         for (i = 0; i < bmap2->n_div; ++i) {
823                 int i1 = isl_basic_map_alloc_div(bmap1);
824                 if (i1 < 0)
825                         goto error;
826                 copy_div(bmap1, bmap1->div[i1], bmap2, bmap2->div[i],
827                          i_pos, o_pos, div_off);
828         }
829
830         isl_basic_map_free(bmap2);
831
832         return bmap1;
833
834 error:
835         isl_basic_map_free(bmap1);
836         isl_basic_map_free(bmap2);
837         return NULL;
838 }
839
840 static void copy_constraint_dim_map(isl_int *dst, isl_int *src,
841                                         struct isl_dim_map *dim_map)
842 {
843         int i;
844
845         for (i = 0; i < dim_map->len; ++i) {
846                 if (dim_map->pos[i] < 0)
847                         isl_int_set_si(dst[i], 0);
848                 else
849                         isl_int_set(dst[i], src[dim_map->pos[i]]);
850         }
851 }
852
853 static void copy_div_dim_map(isl_int *dst, isl_int *src,
854                                         struct isl_dim_map *dim_map)
855 {
856         isl_int_set(dst[0], src[0]);
857         copy_constraint_dim_map(dst+1, src+1, dim_map);
858 }
859
860 static struct isl_basic_map *add_constraints_dim_map(struct isl_basic_map *dst,
861                 struct isl_basic_map *src, struct isl_dim_map *dim_map)
862 {
863         int i;
864
865         if (!src || !dst || !dim_map)
866                 goto error;
867
868         for (i = 0; i < src->n_eq; ++i) {
869                 int i1 = isl_basic_map_alloc_equality(dst);
870                 if (i1 < 0)
871                         goto error;
872                 copy_constraint_dim_map(dst->eq[i1], src->eq[i], dim_map);
873         }
874
875         for (i = 0; i < src->n_ineq; ++i) {
876                 int i1 = isl_basic_map_alloc_inequality(dst);
877                 if (i1 < 0)
878                         goto error;
879                 copy_constraint_dim_map(dst->ineq[i1], src->ineq[i], dim_map);
880         }
881
882         for (i = 0; i < src->n_div; ++i) {
883                 int i1 = isl_basic_map_alloc_div(dst);
884                 if (i1 < 0)
885                         goto error;
886                 copy_div_dim_map(dst->div[i1], src->div[i], dim_map);
887         }
888
889         free(dim_map);
890         isl_basic_map_free(src);
891
892         return dst;
893 error:
894         free(dim_map);
895         isl_basic_map_free(src);
896         isl_basic_map_free(dst);
897         return NULL;
898 }
899
900 struct isl_basic_set *isl_basic_set_add_constraints(struct isl_basic_set *bset1,
901                 struct isl_basic_set *bset2, unsigned pos)
902 {
903         return (struct isl_basic_set *)
904                 add_constraints((struct isl_basic_map *)bset1,
905                                 (struct isl_basic_map *)bset2, 0, pos);
906 }
907
908 struct isl_basic_map *isl_basic_map_extend_dim(struct isl_basic_map *base,
909                 struct isl_dim *dim, unsigned extra,
910                 unsigned n_eq, unsigned n_ineq)
911 {
912         struct isl_basic_map *ext;
913         unsigned flags;
914         int dims_ok;
915
916         if (!dim)
917                 goto error;
918
919         if (!base)
920                 goto error;
921
922         dims_ok = isl_dim_equal(base->dim, dim) &&
923                   base->extra >= base->n_div + extra;
924
925         if (dims_ok && room_for_con(base, n_eq + n_ineq) &&
926                        room_for_ineq(base, n_ineq)) {
927                 isl_dim_free(dim);
928                 return base;
929         }
930
931         isl_assert(base->ctx, base->dim->nparam <= dim->nparam, goto error);
932         isl_assert(base->ctx, base->dim->n_in <= dim->n_in, goto error);
933         isl_assert(base->ctx, base->dim->n_out <= dim->n_out, goto error);
934         extra += base->extra;
935         n_eq += base->n_eq;
936         n_ineq += base->n_ineq;
937
938         ext = isl_basic_map_alloc_dim(dim, extra, n_eq, n_ineq);
939         dim = NULL;
940         if (!ext)
941                 goto error;
942
943         if (dims_ok)
944                 ext->sample = isl_vec_copy(base->sample);
945         flags = base->flags;
946         ext = add_constraints(ext, base, 0, 0);
947         if (ext) {
948                 ext->flags = flags;
949                 ISL_F_CLR(ext, ISL_BASIC_SET_FINAL);
950         }
951
952         return ext;
953
954 error:
955         isl_dim_free(dim);
956         isl_basic_map_free(base);
957         return NULL;
958 }
959
960 struct isl_basic_set *isl_basic_set_extend_dim(struct isl_basic_set *base,
961                 struct isl_dim *dim, unsigned extra,
962                 unsigned n_eq, unsigned n_ineq)
963 {
964         return (struct isl_basic_set *)
965                 isl_basic_map_extend_dim((struct isl_basic_map *)base, dim,
966                                                         extra, n_eq, n_ineq);
967 }
968
969 struct isl_basic_map *isl_basic_map_extend_constraints(
970                 struct isl_basic_map *base, unsigned n_eq, unsigned n_ineq)
971 {
972         if (!base)
973                 return NULL;
974         return isl_basic_map_extend_dim(base, isl_dim_copy(base->dim),
975                                         0, n_eq, n_ineq);
976 }
977
978 struct isl_basic_map *isl_basic_map_extend(struct isl_basic_map *base,
979                 unsigned nparam, unsigned n_in, unsigned n_out, unsigned extra,
980                 unsigned n_eq, unsigned n_ineq)
981 {
982         struct isl_basic_map *bmap;
983         struct isl_dim *dim;
984
985         if (!base)
986                 return NULL;
987         dim = isl_dim_alloc(base->ctx, nparam, n_in, n_out);
988         if (!dim)
989                 return NULL;
990
991         bmap = isl_basic_map_extend_dim(base, dim, extra, n_eq, n_ineq);
992         return bmap;
993 }
994
995 struct isl_basic_set *isl_basic_set_extend(struct isl_basic_set *base,
996                 unsigned nparam, unsigned dim, unsigned extra,
997                 unsigned n_eq, unsigned n_ineq)
998 {
999         return (struct isl_basic_set *)
1000                 isl_basic_map_extend((struct isl_basic_map *)base,
1001                                         nparam, 0, dim, extra, n_eq, n_ineq);
1002 }
1003
1004 struct isl_basic_set *isl_basic_set_extend_constraints(
1005                 struct isl_basic_set *base, unsigned n_eq, unsigned n_ineq)
1006 {
1007         return (struct isl_basic_set *)
1008                 isl_basic_map_extend_constraints((struct isl_basic_map *)base,
1009                                                     n_eq, n_ineq);
1010 }
1011
1012 struct isl_basic_set *isl_basic_set_cow(struct isl_basic_set *bset)
1013 {
1014         return (struct isl_basic_set *)
1015                 isl_basic_map_cow((struct isl_basic_map *)bset);
1016 }
1017
1018 struct isl_basic_map *isl_basic_map_cow(struct isl_basic_map *bmap)
1019 {
1020         if (!bmap)
1021                 return NULL;
1022
1023         if (bmap->ref > 1) {
1024                 bmap->ref--;
1025                 bmap = isl_basic_map_dup(bmap);
1026         }
1027         ISL_F_CLR(bmap, ISL_BASIC_SET_FINAL);
1028         return bmap;
1029 }
1030
1031 struct isl_set *isl_set_cow(struct isl_set *set)
1032 {
1033         if (!set)
1034                 return NULL;
1035
1036         if (set->ref == 1)
1037                 return set;
1038         set->ref--;
1039         return isl_set_dup(set);
1040 }
1041
1042 struct isl_map *isl_map_cow(struct isl_map *map)
1043 {
1044         if (!map)
1045                 return NULL;
1046
1047         if (map->ref == 1)
1048                 return map;
1049         map->ref--;
1050         return isl_map_dup(map);
1051 }
1052
1053 static void swap_vars(struct isl_blk blk, isl_int *a,
1054                         unsigned a_len, unsigned b_len)
1055 {
1056         isl_seq_cpy(blk.data, a+a_len, b_len);
1057         isl_seq_cpy(blk.data+b_len, a, a_len);
1058         isl_seq_cpy(a, blk.data, b_len+a_len);
1059 }
1060
1061 struct isl_basic_set *isl_basic_set_swap_vars(
1062                 struct isl_basic_set *bset, unsigned n)
1063 {
1064         int i;
1065         struct isl_blk blk;
1066         unsigned dim;
1067         unsigned nparam;
1068
1069         if (!bset)
1070                 goto error;
1071
1072         nparam = isl_basic_set_n_param(bset);
1073         dim = isl_basic_set_n_dim(bset);
1074         isl_assert(bset->ctx, n <= dim, goto error);
1075
1076         if (n == dim)
1077                 return bset;
1078
1079         bset = isl_basic_set_cow(bset);
1080         if (!bset)
1081                 return NULL;
1082
1083         blk = isl_blk_alloc(bset->ctx, dim);
1084         if (isl_blk_is_error(blk))
1085                 goto error;
1086
1087         for (i = 0; i < bset->n_eq; ++i)
1088                 swap_vars(blk,
1089                           bset->eq[i]+1+nparam, n, dim - n);
1090
1091         for (i = 0; i < bset->n_ineq; ++i)
1092                 swap_vars(blk,
1093                           bset->ineq[i]+1+nparam, n, dim - n);
1094
1095         for (i = 0; i < bset->n_div; ++i)
1096                 swap_vars(blk,
1097                           bset->div[i]+1+1+nparam, n, dim - n);
1098
1099         isl_blk_free(bset->ctx, blk);
1100
1101         ISL_F_CLR(bset, ISL_BASIC_SET_NORMALIZED);
1102         return isl_basic_set_gauss(bset, NULL);
1103 error:
1104         isl_basic_set_free(bset);
1105         return NULL;
1106 }
1107
1108 struct isl_set *isl_set_swap_vars(struct isl_set *set, unsigned n)
1109 {
1110         int i;
1111         set = isl_set_cow(set);
1112         if (!set)
1113                 return NULL;
1114
1115         for (i = 0; i < set->n; ++i) {
1116                 set->p[i] = isl_basic_set_swap_vars(set->p[i], n);
1117                 if (!set->p[i]) {
1118                         isl_set_free(set);
1119                         return NULL;
1120                 }
1121         }
1122         ISL_F_CLR(set, ISL_SET_NORMALIZED);
1123         return set;
1124 }
1125
1126 struct isl_basic_map *isl_basic_map_set_to_empty(struct isl_basic_map *bmap)
1127 {
1128         int i = 0;
1129         unsigned total;
1130         if (!bmap)
1131                 goto error;
1132         total = isl_basic_map_total_dim(bmap);
1133         isl_basic_map_free_div(bmap, bmap->n_div);
1134         isl_basic_map_free_inequality(bmap, bmap->n_ineq);
1135         if (bmap->n_eq > 0)
1136                 isl_basic_map_free_equality(bmap, bmap->n_eq-1);
1137         else {
1138                 isl_basic_map_alloc_equality(bmap);
1139                 if (i < 0)
1140                         goto error;
1141         }
1142         isl_int_set_si(bmap->eq[i][0], 1);
1143         isl_seq_clr(bmap->eq[i]+1, total);
1144         ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
1145         isl_vec_free(bmap->sample);
1146         bmap->sample = NULL;
1147         return isl_basic_map_finalize(bmap);
1148 error:
1149         isl_basic_map_free(bmap);
1150         return NULL;
1151 }
1152
1153 struct isl_basic_set *isl_basic_set_set_to_empty(struct isl_basic_set *bset)
1154 {
1155         return (struct isl_basic_set *)
1156                 isl_basic_map_set_to_empty((struct isl_basic_map *)bset);
1157 }
1158
1159 void isl_basic_map_swap_div(struct isl_basic_map *bmap, int a, int b)
1160 {
1161         int i;
1162         unsigned off = isl_dim_total(bmap->dim);
1163         isl_int *t = bmap->div[a];
1164         bmap->div[a] = bmap->div[b];
1165         bmap->div[b] = t;
1166
1167         for (i = 0; i < bmap->n_eq; ++i)
1168                 isl_int_swap(bmap->eq[i][1+off+a], bmap->eq[i][1+off+b]);
1169
1170         for (i = 0; i < bmap->n_ineq; ++i)
1171                 isl_int_swap(bmap->ineq[i][1+off+a], bmap->ineq[i][1+off+b]);
1172
1173         for (i = 0; i < bmap->n_div; ++i)
1174                 isl_int_swap(bmap->div[i][1+1+off+a], bmap->div[i][1+1+off+b]);
1175         ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1176 }
1177
1178 /* Eliminate the specified n dimensions starting at first from the
1179  * constraints using Fourier-Motzkin, The dimensions themselves
1180  * are not removed.
1181  */
1182 struct isl_set *isl_set_eliminate_dims(struct isl_set *set,
1183         unsigned first, unsigned n)
1184 {
1185         int i;
1186         unsigned nparam;
1187
1188         if (!set)
1189                 return NULL;
1190         if (n == 0)
1191                 return set;
1192
1193         set = isl_set_cow(set);
1194         if (!set)
1195                 return NULL;
1196         isl_assert(set->ctx, first+n <= isl_set_n_dim(set), goto error);
1197         nparam = isl_set_n_param(set);
1198         
1199         for (i = 0; i < set->n; ++i) {
1200                 set->p[i] = isl_basic_set_eliminate_vars(set->p[i],
1201                                                             nparam + first, n);
1202                 if (!set->p[i])
1203                         goto error;
1204         }
1205         return set;
1206 error:
1207         isl_set_free(set);
1208         return NULL;
1209 }
1210
1211 /* Project out n dimensions starting at first using Fourier-Motzkin */
1212 struct isl_set *isl_set_remove_dims(struct isl_set *set,
1213         unsigned first, unsigned n)
1214 {
1215         set = isl_set_eliminate_dims(set, first, n);
1216         set = isl_set_drop_dims(set, first, n);
1217         return set;
1218 }
1219
1220 struct isl_basic_set *isl_basic_set_remove_divs(struct isl_basic_set *bset)
1221 {
1222         bset = isl_basic_set_eliminate_vars(bset, isl_dim_total(bset->dim),
1223                                                 bset->n_div);
1224         if (!bset)
1225                 return NULL;
1226         bset->n_div = 0;
1227         return bset;
1228 }
1229
1230 struct isl_set *isl_set_remove_divs(struct isl_set *set)
1231 {
1232         int i;
1233
1234         if (!set)
1235                 return NULL;
1236         if (set->n == 0)
1237                 return set;
1238
1239         set = isl_set_cow(set);
1240         if (!set)
1241                 return NULL;
1242         
1243         for (i = 0; i < set->n; ++i) {
1244                 set->p[i] = isl_basic_set_remove_divs(set->p[i]);
1245                 if (!set->p[i])
1246                         goto error;
1247         }
1248         return set;
1249 error:
1250         isl_set_free(set);
1251         return NULL;
1252 }
1253
1254 struct isl_basic_map *isl_basic_map_remove(struct isl_basic_map *bmap,
1255         enum isl_dim_type type, unsigned first, unsigned n)
1256 {
1257         if (!bmap)
1258                 return NULL;
1259         isl_assert(bmap->ctx, first + n <= isl_basic_map_dim(bmap, type),
1260                         goto error);
1261         if (n == 0)
1262                 return bmap;
1263         bmap = isl_basic_map_eliminate_vars(bmap,
1264                         isl_basic_map_offset(bmap, type) - 1 + first, n);
1265         if (!bmap)
1266                 return bmap;
1267         if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY) && type == isl_dim_div)
1268                 return bmap;
1269         bmap = isl_basic_map_drop(bmap, type, first, n);
1270         return bmap;
1271 error:
1272         isl_basic_map_free(bmap);
1273         return NULL;
1274 }
1275
1276 __isl_give isl_basic_set *isl_basic_set_remove(__isl_take isl_basic_set *bset,
1277         enum isl_dim_type type, unsigned first, unsigned n)
1278 {
1279         return (isl_basic_set *)
1280                 isl_basic_map_remove((isl_basic_map *)bset, type, first, n);
1281 }
1282
1283 struct isl_map *isl_map_remove(struct isl_map *map,
1284         enum isl_dim_type type, unsigned first, unsigned n)
1285 {
1286         int i;
1287
1288         if (n == 0)
1289                 return map;
1290
1291         map = isl_map_cow(map);
1292         if (!map)
1293                 return NULL;
1294         isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
1295         
1296         for (i = 0; i < map->n; ++i) {
1297                 map->p[i] = isl_basic_map_eliminate_vars(map->p[i],
1298                         isl_basic_map_offset(map->p[i], type) - 1 + first, n);
1299                 if (!map->p[i])
1300                         goto error;
1301         }
1302         map = isl_map_drop(map, type, first, n);
1303         return map;
1304 error:
1305         isl_map_free(map);
1306         return NULL;
1307 }
1308
1309 __isl_give isl_set *isl_set_remove(__isl_take isl_set *bset,
1310         enum isl_dim_type type, unsigned first, unsigned n)
1311 {
1312         return (isl_set *)isl_map_remove((isl_map *)bset, type, first, n);
1313 }
1314
1315 /* Project out n inputs starting at first using Fourier-Motzkin */
1316 struct isl_map *isl_map_remove_inputs(struct isl_map *map,
1317         unsigned first, unsigned n)
1318 {
1319         return isl_map_remove(map, isl_dim_in, first, n);
1320 }
1321
1322 /* Project out n dimensions starting at first using Fourier-Motzkin */
1323 struct isl_basic_set *isl_basic_set_remove_dims(struct isl_basic_set *bset,
1324         unsigned first, unsigned n)
1325 {
1326         unsigned nparam = isl_basic_set_n_param(bset);
1327         bset = isl_basic_set_eliminate_vars(bset, nparam + first, n);
1328         bset = isl_basic_set_drop_dims(bset, first, n);
1329         return bset;
1330 }
1331
1332 static void dump_term(struct isl_basic_map *bmap,
1333                         isl_int c, int pos, FILE *out)
1334 {
1335         const char *name;
1336         unsigned in = isl_basic_map_n_in(bmap);
1337         unsigned dim = in + isl_basic_map_n_out(bmap);
1338         unsigned nparam = isl_basic_map_n_param(bmap);
1339         if (!pos)
1340                 isl_int_print(out, c, 0);
1341         else {
1342                 if (!isl_int_is_one(c))
1343                         isl_int_print(out, c, 0);
1344                 if (pos < 1 + nparam) {
1345                         name = isl_dim_get_name(bmap->dim,
1346                                                 isl_dim_param, pos - 1);
1347                         if (name)
1348                                 fprintf(out, "%s", name);
1349                         else
1350                                 fprintf(out, "p%d", pos - 1);
1351                 } else if (pos < 1 + nparam + in)
1352                         fprintf(out, "i%d", pos - 1 - nparam);
1353                 else if (pos < 1 + nparam + dim)
1354                         fprintf(out, "o%d", pos - 1 - nparam - in);
1355                 else
1356                         fprintf(out, "e%d", pos - 1 - nparam - dim);
1357         }
1358 }
1359
1360 static void dump_constraint_sign(struct isl_basic_map *bmap, isl_int *c,
1361                                 int sign, FILE *out)
1362 {
1363         int i;
1364         int first;
1365         unsigned len = 1 + isl_basic_map_total_dim(bmap);
1366         isl_int v;
1367
1368         isl_int_init(v);
1369         for (i = 0, first = 1; i < len; ++i) {
1370                 if (isl_int_sgn(c[i]) * sign <= 0)
1371                         continue;
1372                 if (!first)
1373                         fprintf(out, " + ");
1374                 first = 0;
1375                 isl_int_abs(v, c[i]);
1376                 dump_term(bmap, v, i, out);
1377         }
1378         isl_int_clear(v);
1379         if (first)
1380                 fprintf(out, "0");
1381 }
1382
1383 static void dump_constraint(struct isl_basic_map *bmap, isl_int *c,
1384                                 const char *op, FILE *out, int indent)
1385 {
1386         int i;
1387
1388         fprintf(out, "%*s", indent, "");
1389
1390         dump_constraint_sign(bmap, c, 1, out);
1391         fprintf(out, " %s ", op);
1392         dump_constraint_sign(bmap, c, -1, out);
1393
1394         fprintf(out, "\n");
1395
1396         for (i = bmap->n_div; i < bmap->extra; ++i) {
1397                 if (isl_int_is_zero(c[1+isl_dim_total(bmap->dim)+i]))
1398                         continue;
1399                 fprintf(out, "%*s", indent, "");
1400                 fprintf(out, "ERROR: unused div coefficient not zero\n");
1401                 abort();
1402         }
1403 }
1404
1405 static void dump_constraints(struct isl_basic_map *bmap,
1406                                 isl_int **c, unsigned n,
1407                                 const char *op, FILE *out, int indent)
1408 {
1409         int i;
1410
1411         for (i = 0; i < n; ++i)
1412                 dump_constraint(bmap, c[i], op, out, indent);
1413 }
1414
1415 static void dump_affine(struct isl_basic_map *bmap, isl_int *exp, FILE *out)
1416 {
1417         int j;
1418         int first = 1;
1419         unsigned total = isl_basic_map_total_dim(bmap);
1420
1421         for (j = 0; j < 1 + total; ++j) {
1422                 if (isl_int_is_zero(exp[j]))
1423                         continue;
1424                 if (!first && isl_int_is_pos(exp[j]))
1425                         fprintf(out, "+");
1426                 dump_term(bmap, exp[j], j, out);
1427                 first = 0;
1428         }
1429 }
1430
1431 static void dump(struct isl_basic_map *bmap, FILE *out, int indent)
1432 {
1433         int i;
1434
1435         dump_constraints(bmap, bmap->eq, bmap->n_eq, "=", out, indent);
1436         dump_constraints(bmap, bmap->ineq, bmap->n_ineq, ">=", out, indent);
1437
1438         for (i = 0; i < bmap->n_div; ++i) {
1439                 fprintf(out, "%*s", indent, "");
1440                 fprintf(out, "e%d = [(", i);
1441                 dump_affine(bmap, bmap->div[i]+1, out);
1442                 fprintf(out, ")/");
1443                 isl_int_print(out, bmap->div[i][0], 0);
1444                 fprintf(out, "]\n");
1445         }
1446 }
1447
1448 void isl_basic_set_dump(struct isl_basic_set *bset, FILE *out, int indent)
1449 {
1450         if (!bset) {
1451                 fprintf(out, "null basic set\n");
1452                 return;
1453         }
1454
1455         fprintf(out, "%*s", indent, "");
1456         fprintf(out, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
1457                         bset->ref, bset->dim->nparam, bset->dim->n_out,
1458                         bset->extra, bset->flags);
1459         dump((struct isl_basic_map *)bset, out, indent);
1460 }
1461
1462 void isl_basic_map_dump(struct isl_basic_map *bmap, FILE *out, int indent)
1463 {
1464         if (!bmap) {
1465                 fprintf(out, "null basic map\n");
1466                 return;
1467         }
1468
1469         fprintf(out, "%*s", indent, "");
1470         fprintf(out, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
1471                         "flags: %x, n_name: %d\n",
1472                 bmap->ref,
1473                 bmap->dim->nparam, bmap->dim->n_in, bmap->dim->n_out,
1474                 bmap->extra, bmap->flags, bmap->dim->n_name);
1475         dump(bmap, out, indent);
1476 }
1477
1478 int isl_inequality_negate(struct isl_basic_map *bmap, unsigned pos)
1479 {
1480         unsigned total;
1481         if (!bmap)
1482                 return -1;
1483         total = isl_basic_map_total_dim(bmap);
1484         isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
1485         isl_seq_neg(bmap->ineq[pos], bmap->ineq[pos], 1 + total);
1486         isl_int_sub_ui(bmap->ineq[pos][0], bmap->ineq[pos][0], 1);
1487         ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1488         return 0;
1489 }
1490
1491 struct isl_set *isl_set_alloc_dim(struct isl_dim *dim, int n, unsigned flags)
1492 {
1493         struct isl_set *set;
1494
1495         if (!dim)
1496                 return NULL;
1497         isl_assert(dim->ctx, dim->n_in == 0, return NULL);
1498         isl_assert(dim->ctx, n >= 0, return NULL);
1499         set = isl_alloc(dim->ctx, struct isl_set,
1500                         sizeof(struct isl_set) +
1501                         (n - 1) * sizeof(struct isl_basic_set *));
1502         if (!set)
1503                 goto error;
1504
1505         set->ctx = dim->ctx;
1506         isl_ctx_ref(set->ctx);
1507         set->ref = 1;
1508         set->size = n;
1509         set->n = 0;
1510         set->dim = dim;
1511         set->flags = flags;
1512         return set;
1513 error:
1514         isl_dim_free(dim);
1515         return NULL;
1516 }
1517
1518 struct isl_set *isl_set_alloc(struct isl_ctx *ctx,
1519                 unsigned nparam, unsigned dim, int n, unsigned flags)
1520 {
1521         struct isl_set *set;
1522         struct isl_dim *dims;
1523
1524         dims = isl_dim_alloc(ctx, nparam, 0, dim);
1525         if (!dims)
1526                 return NULL;
1527
1528         set = isl_set_alloc_dim(dims, n, flags);
1529         return set;
1530 }
1531
1532 /* Make sure "map" has room for at least "n" more basic maps.
1533  */
1534 struct isl_map *isl_map_grow(struct isl_map *map, int n)
1535 {
1536         int i;
1537         struct isl_map *grown = NULL;
1538
1539         if (!map)
1540                 return NULL;
1541         isl_assert(map->ctx, n >= 0, goto error);
1542         if (map->n + n <= map->size)
1543                 return map;
1544         grown = isl_map_alloc_dim(isl_map_get_dim(map), map->n + n, map->flags);
1545         if (!grown)
1546                 goto error;
1547         for (i = 0; i < map->n; ++i) {
1548                 grown->p[i] = isl_basic_map_copy(map->p[i]);
1549                 if (!grown->p[i])
1550                         goto error;
1551                 grown->n++;
1552         }
1553         isl_map_free(map);
1554         return grown;
1555 error:
1556         isl_map_free(grown);
1557         isl_map_free(map);
1558         return NULL;
1559 }
1560
1561 /* Make sure "set" has room for at least "n" more basic sets.
1562  */
1563 struct isl_set *isl_set_grow(struct isl_set *set, int n)
1564 {
1565         return (struct isl_set *)isl_map_grow((struct isl_map *)set, n);
1566 }
1567
1568 struct isl_set *isl_set_dup(struct isl_set *set)
1569 {
1570         int i;
1571         struct isl_set *dup;
1572
1573         if (!set)
1574                 return NULL;
1575
1576         dup = isl_set_alloc_dim(isl_dim_copy(set->dim), set->n, set->flags);
1577         if (!dup)
1578                 return NULL;
1579         for (i = 0; i < set->n; ++i)
1580                 dup = isl_set_add_basic_set(dup, isl_basic_set_copy(set->p[i]));
1581         return dup;
1582 }
1583
1584 struct isl_set *isl_set_from_basic_set(struct isl_basic_set *bset)
1585 {
1586         struct isl_set *set;
1587
1588         if (!bset)
1589                 return NULL;
1590
1591         set = isl_set_alloc_dim(isl_dim_copy(bset->dim), 1, ISL_MAP_DISJOINT);
1592         if (!set) {
1593                 isl_basic_set_free(bset);
1594                 return NULL;
1595         }
1596         return isl_set_add_basic_set(set, bset);
1597 }
1598
1599 struct isl_map *isl_map_from_basic_map(struct isl_basic_map *bmap)
1600 {
1601         struct isl_map *map;
1602
1603         if (!bmap)
1604                 return NULL;
1605
1606         map = isl_map_alloc_dim(isl_dim_copy(bmap->dim), 1, ISL_MAP_DISJOINT);
1607         if (!map) {
1608                 isl_basic_map_free(bmap);
1609                 return NULL;
1610         }
1611         return isl_map_add_basic_map(map, bmap);
1612 }
1613
1614 __isl_give isl_set *isl_set_add_basic_set(__isl_take isl_set *set,
1615                                                 __isl_take isl_basic_set *bset)
1616 {
1617         return (struct isl_set *)isl_map_add_basic_map((struct isl_map *)set,
1618                                                 (struct isl_basic_map *)bset);
1619 }
1620
1621 void isl_set_free(struct isl_set *set)
1622 {
1623         int i;
1624
1625         if (!set)
1626                 return;
1627
1628         if (--set->ref > 0)
1629                 return;
1630
1631         isl_ctx_deref(set->ctx);
1632         for (i = 0; i < set->n; ++i)
1633                 isl_basic_set_free(set->p[i]);
1634         isl_dim_free(set->dim);
1635         free(set);
1636 }
1637
1638 void isl_set_dump(struct isl_set *set, FILE *out, int indent)
1639 {
1640         int i;
1641
1642         if (!set) {
1643                 fprintf(out, "null set\n");
1644                 return;
1645         }
1646
1647         fprintf(out, "%*s", indent, "");
1648         fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
1649                         set->ref, set->n, set->dim->nparam, set->dim->n_out,
1650                         set->flags);
1651         for (i = 0; i < set->n; ++i) {
1652                 fprintf(out, "%*s", indent, "");
1653                 fprintf(out, "basic set %d:\n", i);
1654                 isl_basic_set_dump(set->p[i], out, indent+4);
1655         }
1656 }
1657
1658 void isl_map_dump(struct isl_map *map, FILE *out, int indent)
1659 {
1660         int i;
1661
1662         if (!map) {
1663                 fprintf(out, "null map\n");
1664                 return;
1665         }
1666
1667         fprintf(out, "%*s", indent, "");
1668         fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
1669                      "flags: %x, n_name: %d\n",
1670                         map->ref, map->n, map->dim->nparam, map->dim->n_in,
1671                         map->dim->n_out, map->flags, map->dim->n_name);
1672         for (i = 0; i < map->n; ++i) {
1673                 fprintf(out, "%*s", indent, "");
1674                 fprintf(out, "basic map %d:\n", i);
1675                 isl_basic_map_dump(map->p[i], out, indent+4);
1676         }
1677 }
1678
1679 struct isl_basic_map *isl_basic_map_intersect_domain(
1680                 struct isl_basic_map *bmap, struct isl_basic_set *bset)
1681 {
1682         struct isl_basic_map *bmap_domain;
1683         struct isl_dim *dim;
1684
1685         if (!bmap || !bset)
1686                 goto error;
1687
1688         isl_assert(bset->ctx, isl_dim_match(bmap->dim, isl_dim_param,
1689                                         bset->dim, isl_dim_param), goto error);
1690
1691         if (isl_dim_size(bset->dim, isl_dim_set) != 0)
1692                 isl_assert(bset->ctx,
1693                     isl_basic_map_compatible_domain(bmap, bset), goto error);
1694
1695         bmap = isl_basic_map_cow(bmap);
1696         bmap = isl_basic_map_extend_dim(bmap, isl_dim_copy(bmap->dim),
1697                         bset->n_div, bset->n_eq, bset->n_ineq);
1698         if (!bmap)
1699                 goto error;
1700         dim = isl_dim_reverse(isl_dim_copy(bset->dim));
1701         bmap_domain = isl_basic_map_from_basic_set(bset, dim);
1702         bmap = add_constraints(bmap, bmap_domain, 0, 0);
1703
1704         bmap = isl_basic_map_simplify(bmap);
1705         return isl_basic_map_finalize(bmap);
1706 error:
1707         isl_basic_map_free(bmap);
1708         isl_basic_set_free(bset);
1709         return NULL;
1710 }
1711
1712 struct isl_basic_map *isl_basic_map_intersect_range(
1713                 struct isl_basic_map *bmap, struct isl_basic_set *bset)
1714 {
1715         struct isl_basic_map *bmap_range;
1716
1717         if (!bmap || !bset)
1718                 goto error;
1719
1720         isl_assert(bset->ctx, isl_dim_match(bmap->dim, isl_dim_param,
1721                                         bset->dim, isl_dim_param), goto error);
1722
1723         if (isl_dim_size(bset->dim, isl_dim_set) != 0)
1724                 isl_assert(bset->ctx,
1725                     isl_basic_map_compatible_range(bmap, bset), goto error);
1726
1727         bmap = isl_basic_map_cow(bmap);
1728         bmap = isl_basic_map_extend_dim(bmap, isl_dim_copy(bmap->dim),
1729                         bset->n_div, bset->n_eq, bset->n_ineq);
1730         if (!bmap)
1731                 goto error;
1732         bmap_range = isl_basic_map_from_basic_set(bset, isl_dim_copy(bset->dim));
1733         bmap = add_constraints(bmap, bmap_range, 0, 0);
1734
1735         bmap = isl_basic_map_simplify(bmap);
1736         return isl_basic_map_finalize(bmap);
1737 error:
1738         isl_basic_map_free(bmap);
1739         isl_basic_set_free(bset);
1740         return NULL;
1741 }
1742
1743 int isl_basic_map_contains(struct isl_basic_map *bmap, struct isl_vec *vec)
1744 {
1745         int i;
1746         unsigned total;
1747         isl_int s;
1748
1749         total = 1 + isl_basic_map_total_dim(bmap);
1750         if (total != vec->size)
1751                 return -1;
1752
1753         isl_int_init(s);
1754
1755         for (i = 0; i < bmap->n_eq; ++i) {
1756                 isl_seq_inner_product(vec->el, bmap->eq[i], total, &s);
1757                 if (!isl_int_is_zero(s)) {
1758                         isl_int_clear(s);
1759                         return 0;
1760                 }
1761         }
1762
1763         for (i = 0; i < bmap->n_ineq; ++i) {
1764                 isl_seq_inner_product(vec->el, bmap->ineq[i], total, &s);
1765                 if (isl_int_is_neg(s)) {
1766                         isl_int_clear(s);
1767                         return 0;
1768                 }
1769         }
1770
1771         isl_int_clear(s);
1772
1773         return 1;
1774 }
1775
1776 int isl_basic_set_contains(struct isl_basic_set *bset, struct isl_vec *vec)
1777 {
1778         return isl_basic_map_contains((struct isl_basic_map *)bset, vec);
1779 }
1780
1781 struct isl_basic_map *isl_basic_map_intersect(
1782                 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
1783 {
1784         struct isl_vec *sample = NULL;
1785
1786         if (!bmap1 || !bmap2)
1787                 goto error;
1788
1789         isl_assert(bmap1->ctx, isl_dim_match(bmap1->dim, isl_dim_param,
1790                                      bmap2->dim, isl_dim_param), goto error);
1791         if (isl_dim_total(bmap1->dim) ==
1792                                 isl_dim_size(bmap1->dim, isl_dim_param) &&
1793             isl_dim_total(bmap2->dim) !=
1794                                 isl_dim_size(bmap2->dim, isl_dim_param))
1795                 return isl_basic_map_intersect(bmap2, bmap1);
1796
1797         if (isl_dim_total(bmap2->dim) !=
1798                                         isl_dim_size(bmap2->dim, isl_dim_param))
1799                 isl_assert(bmap1->ctx,
1800                             isl_dim_equal(bmap1->dim, bmap2->dim), goto error);
1801
1802         if (bmap1->sample &&
1803             isl_basic_map_contains(bmap1, bmap1->sample) > 0 &&
1804             isl_basic_map_contains(bmap2, bmap1->sample) > 0)
1805                 sample = isl_vec_copy(bmap1->sample);
1806         else if (bmap2->sample &&
1807             isl_basic_map_contains(bmap1, bmap2->sample) > 0 &&
1808             isl_basic_map_contains(bmap2, bmap2->sample) > 0)
1809                 sample = isl_vec_copy(bmap2->sample);
1810
1811         bmap1 = isl_basic_map_cow(bmap1);
1812         bmap1 = isl_basic_map_extend_dim(bmap1, isl_dim_copy(bmap1->dim),
1813                         bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
1814         if (!bmap1)
1815                 goto error;
1816         bmap1 = add_constraints(bmap1, bmap2, 0, 0);
1817
1818         if (sample) {
1819                 isl_vec_free(bmap1->sample);
1820                 bmap1->sample = sample;
1821         }
1822
1823         bmap1 = isl_basic_map_simplify(bmap1);
1824         return isl_basic_map_finalize(bmap1);
1825 error:
1826         if (sample)
1827                 isl_vec_free(sample);
1828         isl_basic_map_free(bmap1);
1829         isl_basic_map_free(bmap2);
1830         return NULL;
1831 }
1832
1833 struct isl_basic_set *isl_basic_set_intersect(
1834                 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
1835 {
1836         return (struct isl_basic_set *)
1837                 isl_basic_map_intersect(
1838                         (struct isl_basic_map *)bset1,
1839                         (struct isl_basic_map *)bset2);
1840 }
1841
1842 /* Special case of isl_map_intersect, where both map1 and map2
1843  * are convex, without any divs and such that either map1 or map2
1844  * contains a single constraint.  This constraint is then simply
1845  * added to the other map.
1846  */
1847 static __isl_give isl_map *map_intersect_add_constraint(
1848         __isl_take isl_map *map1, __isl_take isl_map *map2)
1849 {
1850         struct isl_basic_map *bmap1;
1851         struct isl_basic_map *bmap2;
1852
1853         isl_assert(map1->ctx, map1->n == 1, goto error);
1854         isl_assert(map2->ctx, map1->n == 1, goto error);
1855         isl_assert(map1->ctx, map1->p[0]->n_div == 0, goto error);
1856         isl_assert(map2->ctx, map1->p[0]->n_div == 0, goto error);
1857
1858         if (map2->p[0]->n_eq + map2->p[0]->n_ineq != 1)
1859                 return isl_map_intersect(map2, map1);
1860
1861         isl_assert(map2->ctx,
1862                     map2->p[0]->n_eq + map2->p[0]->n_ineq == 1, goto error);
1863
1864         map1 = isl_map_cow(map1);
1865         if (!map1)
1866                 goto error;
1867         map1->p[0] = isl_basic_map_cow(map1->p[0]);
1868         if (map2->p[0]->n_eq == 1)
1869                 map1->p[0] = isl_basic_map_add_eq(map1->p[0], map2->p[0]->eq[0]);
1870         else
1871                 map1->p[0] = isl_basic_map_add_ineq(map1->p[0],
1872                                                         map2->p[0]->ineq[0]);
1873
1874         map1->p[0] = isl_basic_map_simplify(map1->p[0]);
1875         map1->p[0] = isl_basic_map_finalize(map1->p[0]);
1876         if (!map1->p[0])
1877                 goto error;
1878
1879         isl_map_free(map2);
1880
1881         return map1;
1882 error:
1883         isl_map_free(map1);
1884         isl_map_free(map2);
1885         return NULL;
1886 }
1887
1888 struct isl_map *isl_map_intersect(struct isl_map *map1, struct isl_map *map2)
1889 {
1890         unsigned flags = 0;
1891         struct isl_map *result;
1892         int i, j;
1893
1894         if (!map1 || !map2)
1895                 goto error;
1896
1897         if (map1->n == 1 && map2->n == 1 &&
1898             map1->p[0]->n_div == 0 && map2->p[0]->n_div == 0 &&
1899             isl_dim_equal(map1->dim, map2->dim) &&
1900             (map1->p[0]->n_eq + map1->p[0]->n_ineq == 1 ||
1901              map2->p[0]->n_eq + map2->p[0]->n_ineq == 1))
1902                 return map_intersect_add_constraint(map1, map2);
1903         isl_assert(map1->ctx, isl_dim_match(map1->dim, isl_dim_param,
1904                                          map2->dim, isl_dim_param), goto error);
1905         if (isl_dim_total(map1->dim) ==
1906                                 isl_dim_size(map1->dim, isl_dim_param) &&
1907             isl_dim_total(map2->dim) != isl_dim_size(map2->dim, isl_dim_param))
1908                 return isl_map_intersect(map2, map1);
1909
1910         if (isl_dim_total(map2->dim) != isl_dim_size(map2->dim, isl_dim_param))
1911                 isl_assert(map1->ctx,
1912                             isl_dim_equal(map1->dim, map2->dim), goto error);
1913
1914         if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
1915             ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
1916                 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
1917
1918         result = isl_map_alloc_dim(isl_dim_copy(map1->dim),
1919                                 map1->n * map2->n, flags);
1920         if (!result)
1921                 goto error;
1922         for (i = 0; i < map1->n; ++i)
1923                 for (j = 0; j < map2->n; ++j) {
1924                         struct isl_basic_map *part;
1925                         part = isl_basic_map_intersect(
1926                                     isl_basic_map_copy(map1->p[i]),
1927                                     isl_basic_map_copy(map2->p[j]));
1928                         if (isl_basic_map_is_empty(part))
1929                                 isl_basic_map_free(part);
1930                         else
1931                                 result = isl_map_add_basic_map(result, part);
1932                         if (!result)
1933                                 goto error;
1934                 }
1935         isl_map_free(map1);
1936         isl_map_free(map2);
1937         return result;
1938 error:
1939         isl_map_free(map1);
1940         isl_map_free(map2);
1941         return NULL;
1942 }
1943
1944 struct isl_set *isl_set_intersect(struct isl_set *set1, struct isl_set *set2)
1945 {
1946         return (struct isl_set *)
1947                 isl_map_intersect((struct isl_map *)set1,
1948                                   (struct isl_map *)set2);
1949 }
1950
1951 struct isl_basic_map *isl_basic_map_reverse(struct isl_basic_map *bmap)
1952 {
1953         struct isl_dim *dim;
1954         struct isl_basic_set *bset;
1955         unsigned in;
1956
1957         if (!bmap)
1958                 return NULL;
1959         bmap = isl_basic_map_cow(bmap);
1960         if (!bmap)
1961                 return NULL;
1962         dim = isl_dim_reverse(isl_dim_copy(bmap->dim));
1963         in = isl_basic_map_n_in(bmap);
1964         bset = isl_basic_set_from_basic_map(bmap);
1965         bset = isl_basic_set_swap_vars(bset, in);
1966         return isl_basic_map_from_basic_set(bset, dim);
1967 }
1968
1969 __isl_give isl_basic_map *isl_basic_map_add(__isl_take isl_basic_map *bmap,
1970                 enum isl_dim_type type, unsigned n)
1971 {
1972         struct isl_dim *res_dim;
1973         struct isl_basic_map *res;
1974         struct isl_dim_map *dim_map;
1975         unsigned total, pos;
1976
1977         if (n == 0)
1978                 return bmap;
1979
1980         if (!bmap)
1981                 return NULL;
1982
1983         res_dim = isl_dim_add(isl_basic_map_get_dim(bmap), type, n);
1984
1985         total = isl_basic_map_total_dim(bmap) + n;
1986         dim_map = isl_dim_map_alloc(bmap->ctx, total);
1987         pos = 0;
1988         isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos);
1989         pos += isl_dim_size(res_dim, isl_dim_param);
1990         isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos);
1991         pos += isl_dim_size(res_dim, isl_dim_in);
1992         isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos);
1993         pos += isl_dim_size(res_dim, isl_dim_out);
1994         isl_dim_map_div(dim_map, bmap, pos);
1995
1996         res = isl_basic_map_alloc_dim(res_dim,
1997                         bmap->n_div, bmap->n_eq, bmap->n_ineq);
1998         res = add_constraints_dim_map(res, bmap, dim_map);
1999         res = isl_basic_map_simplify(res);
2000         return isl_basic_map_finalize(res);
2001 }
2002
2003 __isl_give isl_basic_set *isl_basic_set_add(__isl_take isl_basic_set *bset,
2004                 enum isl_dim_type type, unsigned n)
2005 {
2006         if (!bset)
2007                 return NULL;
2008         isl_assert(bset->ctx, type != isl_dim_in, goto error);
2009         return (isl_basic_set *)isl_basic_map_add((isl_basic_map *)bset, type, n);
2010 error:
2011         isl_basic_set_free(bset);
2012         return NULL;
2013 }
2014
2015 __isl_give isl_map *isl_map_add(__isl_take isl_map *map,
2016                 enum isl_dim_type type, unsigned n)
2017 {
2018         int i;
2019
2020         if (n == 0)
2021                 return map;
2022
2023         map = isl_map_cow(map);
2024         if (!map)
2025                 return NULL;
2026
2027         map->dim = isl_dim_add(map->dim, type, n);
2028         if (!map->dim)
2029                 goto error;
2030
2031         for (i = 0; i < map->n; ++i) {
2032                 map->p[i] = isl_basic_map_add(map->p[i], type, n);
2033                 if (!map->p[i])
2034                         goto error;
2035         }
2036
2037         return map;
2038 error:
2039         isl_map_free(map);
2040         return NULL;
2041 }
2042
2043 __isl_give isl_set *isl_set_add(__isl_take isl_set *set,
2044                 enum isl_dim_type type, unsigned n)
2045 {
2046         if (!set)
2047                 return NULL;
2048         isl_assert(set->ctx, type != isl_dim_in, goto error);
2049         return (isl_set *)isl_map_add((isl_map *)set, type, n);
2050 error:
2051         isl_set_free(set);
2052         return NULL;
2053 }
2054
2055 /* Move the specified dimensions to the last columns right before
2056  * the divs.  Don't change the dimension specification of bmap.
2057  * That's the responsibility of the caller.
2058  */
2059 static __isl_give isl_basic_map *move_last(__isl_take isl_basic_map *bmap,
2060         enum isl_dim_type type, unsigned first, unsigned n)
2061 {
2062         struct isl_dim_map *dim_map;
2063         struct isl_basic_map *res;
2064         enum isl_dim_type t;
2065         unsigned total, off;
2066
2067         if (!bmap)
2068                 return NULL;
2069         if (pos(bmap->dim, type) + first + n == 1 + isl_dim_total(bmap->dim))
2070                 return bmap;
2071
2072         total = isl_basic_map_total_dim(bmap);
2073         dim_map = isl_dim_map_alloc(bmap->ctx, total);
2074
2075         off = 0;
2076         for (t = isl_dim_param; t <= isl_dim_out; ++t) {
2077                 unsigned size = isl_dim_size(bmap->dim, t);
2078                 if (t == type) {
2079                         isl_dim_map_dim_range(dim_map, bmap->dim, t,
2080                                             0, first, off);
2081                         off += first;
2082                         isl_dim_map_dim_range(dim_map, bmap->dim, t,
2083                                             first, n, total - bmap->n_div - n);
2084                         isl_dim_map_dim_range(dim_map, bmap->dim, t,
2085                                             first + n, size - (first + n), off);
2086                         off += size - (first + n);
2087                 } else {
2088                         isl_dim_map_dim(dim_map, bmap->dim, t, off);
2089                         off += size;
2090                 }
2091         }
2092         isl_dim_map_div(dim_map, bmap, off + n);
2093
2094         res = isl_basic_map_alloc_dim(isl_basic_map_get_dim(bmap),
2095                         bmap->n_div, bmap->n_eq, bmap->n_ineq);
2096         res = add_constraints_dim_map(res, bmap, dim_map);
2097         return res;
2098 }
2099
2100 /* Turn the n dimensions of type type, starting at first
2101  * into existentially quantified variables.
2102  */
2103 __isl_give isl_basic_map *isl_basic_map_project_out(
2104                 __isl_take isl_basic_map *bmap,
2105                 enum isl_dim_type type, unsigned first, unsigned n)
2106 {
2107         int i;
2108         size_t row_size;
2109         isl_int **new_div;
2110         isl_int *old;
2111
2112         if (n == 0)
2113                 return bmap;
2114
2115         if (!bmap)
2116                 return NULL;
2117
2118         if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
2119                 return isl_basic_map_remove(bmap, type, first, n);
2120
2121         isl_assert(bmap->ctx, first + n <= isl_basic_map_dim(bmap, type),
2122                         goto error);
2123
2124         bmap = move_last(bmap, type, first, n);
2125         bmap = isl_basic_map_cow(bmap);
2126
2127         row_size = 1 + isl_dim_total(bmap->dim) + bmap->extra;
2128         old = bmap->block2.data;
2129         bmap->block2 = isl_blk_extend(bmap->ctx, bmap->block2,
2130                                         (bmap->extra + n) * (1 + row_size));
2131         if (!bmap->block2.data)
2132                 goto error;
2133         new_div = isl_alloc_array(ctx, isl_int *, bmap->extra + n);
2134         if (!new_div)
2135                 goto error;
2136         for (i = 0; i < n; ++i) {
2137                 new_div[i] = bmap->block2.data +
2138                                 (bmap->extra + i) * (1 + row_size);
2139                 isl_seq_clr(new_div[i], 1 + row_size);
2140         }
2141         for (i = 0; i < bmap->extra; ++i)
2142                 new_div[n + i] = bmap->block2.data + (bmap->div[i] - old);
2143         free(bmap->div);
2144         bmap->div = new_div;
2145         bmap->n_div += n;
2146         bmap->extra += n;
2147
2148         bmap->dim = isl_dim_drop(bmap->dim, type, first, n);
2149         if (!bmap->dim)
2150                 goto error;
2151         bmap = isl_basic_map_simplify(bmap);
2152         bmap = isl_basic_map_drop_redundant_divs(bmap);
2153         return isl_basic_map_finalize(bmap);
2154 error:
2155         isl_basic_map_free(bmap);
2156         return NULL;
2157 }
2158
2159 /* Turn the n dimensions of type type, starting at first
2160  * into existentially quantified variables.
2161  */
2162 struct isl_basic_set *isl_basic_set_project_out(struct isl_basic_set *bset,
2163                 enum isl_dim_type type, unsigned first, unsigned n)
2164 {
2165         return (isl_basic_set *)isl_basic_map_project_out(
2166                         (isl_basic_map *)bset, type, first, n);
2167 }
2168
2169 /* Turn the n dimensions of type type, starting at first
2170  * into existentially quantified variables.
2171  */
2172 __isl_give isl_map *isl_map_project_out(__isl_take isl_map *map,
2173                 enum isl_dim_type type, unsigned first, unsigned n)
2174 {
2175         int i;
2176
2177         if (!map)
2178                 return NULL;
2179
2180         if (n == 0)
2181                 return map;
2182
2183         isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
2184
2185         map = isl_map_cow(map);
2186         if (!map)
2187                 return NULL;
2188
2189         map->dim = isl_dim_drop(map->dim, type, first, n);
2190         if (!map->dim)
2191                 goto error;
2192
2193         for (i = 0; i < map->n; ++i) {
2194                 map->p[i] = isl_basic_map_project_out(map->p[i], type, first, n);
2195                 if (!map->p[i])
2196                         goto error;
2197         }
2198
2199         return map;
2200 error:
2201         isl_map_free(map);
2202         return map;
2203 }
2204
2205 /* Turn the n dimensions of type type, starting at first
2206  * into existentially quantified variables.
2207  */
2208 __isl_give isl_set *isl_set_project_out(__isl_take isl_set *set,
2209                 enum isl_dim_type type, unsigned first, unsigned n)
2210 {
2211         return (isl_set *)isl_map_project_out((isl_map *)set, type, first, n);
2212 }
2213
2214 static struct isl_basic_map *add_divs(struct isl_basic_map *bmap, unsigned n)
2215 {
2216         int i, j;
2217
2218         for (i = 0; i < n; ++i) {
2219                 j = isl_basic_map_alloc_div(bmap);
2220                 if (j < 0)
2221                         goto error;
2222                 isl_seq_clr(bmap->div[j], 1+1+isl_basic_map_total_dim(bmap));
2223         }
2224         return bmap;
2225 error:
2226         isl_basic_map_free(bmap);
2227         return NULL;
2228 }
2229
2230 struct isl_basic_map *isl_basic_map_apply_range(
2231                 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
2232 {
2233         struct isl_dim *dim_result = NULL;
2234         struct isl_basic_map *bmap;
2235         unsigned n_in, n_out, n, nparam, total, pos;
2236         struct isl_dim_map *dim_map1, *dim_map2;
2237
2238         if (!bmap1 || !bmap2)
2239                 goto error;
2240
2241         dim_result = isl_dim_join(isl_dim_copy(bmap1->dim),
2242                                   isl_dim_copy(bmap2->dim));
2243
2244         n_in = isl_basic_map_n_in(bmap1);
2245         n_out = isl_basic_map_n_out(bmap2);
2246         n = isl_basic_map_n_out(bmap1);
2247         nparam = isl_basic_map_n_param(bmap1);
2248
2249         total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + n;
2250         dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
2251         dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
2252         isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
2253         isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
2254         isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
2255         isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_in);
2256         isl_dim_map_div(dim_map1, bmap1, pos += n_out);
2257         isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
2258         isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
2259         isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
2260
2261         bmap = isl_basic_map_alloc_dim(dim_result,
2262                         bmap1->n_div + bmap2->n_div + n,
2263                         bmap1->n_eq + bmap2->n_eq,
2264                         bmap1->n_ineq + bmap2->n_ineq);
2265         bmap = add_constraints_dim_map(bmap, bmap1, dim_map1);
2266         bmap = add_constraints_dim_map(bmap, bmap2, dim_map2);
2267         bmap = add_divs(bmap, n);
2268         bmap = isl_basic_map_simplify(bmap);
2269         bmap = isl_basic_map_drop_redundant_divs(bmap);
2270         return isl_basic_map_finalize(bmap);
2271 error:
2272         isl_basic_map_free(bmap1);
2273         isl_basic_map_free(bmap2);
2274         return NULL;
2275 }
2276
2277 struct isl_basic_set *isl_basic_set_apply(
2278                 struct isl_basic_set *bset, struct isl_basic_map *bmap)
2279 {
2280         if (!bset || !bmap)
2281                 goto error;
2282
2283         isl_assert(bset->ctx, isl_basic_map_compatible_domain(bmap, bset),
2284                     goto error);
2285
2286         return (struct isl_basic_set *)
2287                 isl_basic_map_apply_range((struct isl_basic_map *)bset, bmap);
2288 error:
2289         isl_basic_set_free(bset);
2290         isl_basic_map_free(bmap);
2291         return NULL;
2292 }
2293
2294 struct isl_basic_map *isl_basic_map_apply_domain(
2295                 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
2296 {
2297         if (!bmap1 || !bmap2)
2298                 goto error;
2299
2300         isl_assert(bmap1->ctx,
2301             isl_basic_map_n_in(bmap1) == isl_basic_map_n_in(bmap2), goto error);
2302         isl_assert(bmap1->ctx,
2303             isl_basic_map_n_param(bmap1) == isl_basic_map_n_param(bmap2),
2304             goto error);
2305
2306         bmap1 = isl_basic_map_reverse(bmap1);
2307         bmap1 = isl_basic_map_apply_range(bmap1, bmap2);
2308         return isl_basic_map_reverse(bmap1);
2309 error:
2310         isl_basic_map_free(bmap1);
2311         isl_basic_map_free(bmap2);
2312         return NULL;
2313 }
2314
2315 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
2316  * A \cap B -> f(A) + f(B)
2317  */
2318 struct isl_basic_map *isl_basic_map_sum(
2319                 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
2320 {
2321         unsigned n_in, n_out, nparam, total, pos;
2322         struct isl_basic_map *bmap = NULL;
2323         struct isl_dim_map *dim_map1, *dim_map2;
2324         int i;
2325
2326         if (!bmap1 || !bmap2)
2327                 goto error;
2328
2329         isl_assert(bmap1->ctx, isl_dim_equal(bmap1->dim, bmap2->dim),
2330                 goto error);
2331
2332         nparam = isl_basic_map_n_param(bmap1);
2333         n_in = isl_basic_map_n_in(bmap1);
2334         n_out = isl_basic_map_n_out(bmap1);
2335
2336         total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + 2 * n_out;
2337         dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
2338         dim_map2 = isl_dim_map_alloc(bmap2->ctx, total);
2339         isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
2340         isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos);
2341         isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
2342         isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
2343         isl_dim_map_div(dim_map1, bmap1, pos += n_in + n_out);
2344         isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
2345         isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
2346         isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_out);
2347
2348         bmap = isl_basic_map_alloc_dim(isl_dim_copy(bmap1->dim),
2349                         bmap1->n_div + bmap2->n_div + 2 * n_out,
2350                         bmap1->n_eq + bmap2->n_eq + n_out,
2351                         bmap1->n_ineq + bmap2->n_ineq);
2352         for (i = 0; i < n_out; ++i) {
2353                 int j = isl_basic_map_alloc_equality(bmap);
2354                 if (j < 0)
2355                         goto error;
2356                 isl_seq_clr(bmap->eq[j], 1+total);
2357                 isl_int_set_si(bmap->eq[j][1+nparam+n_in+i], -1);
2358                 isl_int_set_si(bmap->eq[j][1+pos+i], 1);
2359                 isl_int_set_si(bmap->eq[j][1+pos-n_out+i], 1);
2360         }
2361         bmap = add_constraints_dim_map(bmap, bmap1, dim_map1);
2362         bmap = add_constraints_dim_map(bmap, bmap2, dim_map2);
2363         bmap = add_divs(bmap, 2 * n_out);
2364
2365         bmap = isl_basic_map_simplify(bmap);
2366         return isl_basic_map_finalize(bmap);
2367 error:
2368         isl_basic_map_free(bmap);
2369         isl_basic_map_free(bmap1);
2370         isl_basic_map_free(bmap2);
2371         return NULL;
2372 }
2373
2374 /* Given two maps A -> f(A) and B -> g(B), construct a map
2375  * A \cap B -> f(A) + f(B)
2376  */
2377 struct isl_map *isl_map_sum(struct isl_map *map1, struct isl_map *map2)
2378 {
2379         struct isl_map *result;
2380         int i, j;
2381
2382         if (!map1 || !map2)
2383                 goto error;
2384
2385         isl_assert(map1->ctx, isl_dim_equal(map1->dim, map2->dim), goto error);
2386
2387         result = isl_map_alloc_dim(isl_dim_copy(map1->dim),
2388                                 map1->n * map2->n, 0);
2389         if (!result)
2390                 goto error;
2391         for (i = 0; i < map1->n; ++i)
2392                 for (j = 0; j < map2->n; ++j) {
2393                         struct isl_basic_map *part;
2394                         part = isl_basic_map_sum(
2395                                     isl_basic_map_copy(map1->p[i]),
2396                                     isl_basic_map_copy(map2->p[j]));
2397                         if (isl_basic_map_is_empty(part))
2398                                 isl_basic_map_free(part);
2399                         else
2400                                 result = isl_map_add_basic_map(result, part);
2401                         if (!result)
2402                                 goto error;
2403                 }
2404         isl_map_free(map1);
2405         isl_map_free(map2);
2406         return result;
2407 error:
2408         isl_map_free(map1);
2409         isl_map_free(map2);
2410         return NULL;
2411 }
2412
2413 /* Given a basic map A -> f(A), construct A -> -f(A).
2414  */
2415 struct isl_basic_map *isl_basic_map_neg(struct isl_basic_map *bmap)
2416 {
2417         int i, j;
2418         unsigned off, n;
2419
2420         bmap = isl_basic_map_cow(bmap);
2421         if (!bmap)
2422                 return NULL;
2423
2424         n = isl_basic_map_dim(bmap, isl_dim_out);
2425         off = isl_basic_map_offset(bmap, isl_dim_out);
2426         for (i = 0; i < bmap->n_eq; ++i)
2427                 for (j = 0; j < n; ++j)
2428                         isl_int_neg(bmap->eq[i][off+j], bmap->eq[i][off+j]);
2429         for (i = 0; i < bmap->n_ineq; ++i)
2430                 for (j = 0; j < n; ++j)
2431                         isl_int_neg(bmap->ineq[i][off+j], bmap->ineq[i][off+j]);
2432         for (i = 0; i < bmap->n_div; ++i)
2433                 for (j = 0; j < n; ++j)
2434                         isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
2435         return isl_basic_map_finalize(bmap);
2436 }
2437
2438 /* Given a map A -> f(A), construct A -> -f(A).
2439  */
2440 struct isl_map *isl_map_neg(struct isl_map *map)
2441 {
2442         int i;
2443
2444         map = isl_map_cow(map);
2445         if (!map)
2446                 return NULL;
2447
2448         for (i = 0; i < map->n; ++i) {
2449                 map->p[i] = isl_basic_map_neg(map->p[i]);
2450                 if (!map->p[i])
2451                         goto error;
2452         }
2453
2454         return map;
2455 error:
2456         isl_map_free(map);
2457         return NULL;
2458 }
2459
2460 /* Given a basic map A -> f(A) and an integer d, construct a basic map
2461  * A -> floor(f(A)/d).
2462  */
2463 struct isl_basic_map *isl_basic_map_floordiv(struct isl_basic_map *bmap,
2464                 isl_int d)
2465 {
2466         unsigned n_in, n_out, nparam, total, pos;
2467         struct isl_basic_map *result = NULL;
2468         struct isl_dim_map *dim_map;
2469         int i;
2470
2471         if (!bmap)
2472                 return NULL;
2473
2474         nparam = isl_basic_map_n_param(bmap);
2475         n_in = isl_basic_map_n_in(bmap);
2476         n_out = isl_basic_map_n_out(bmap);
2477
2478         total = nparam + n_in + n_out + bmap->n_div + n_out;
2479         dim_map = isl_dim_map_alloc(bmap->ctx, total);
2480         isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos = 0);
2481         isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos += nparam);
2482         isl_dim_map_div(dim_map, bmap, pos += n_in + n_out);
2483         isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos += bmap->n_div);
2484
2485         result = isl_basic_map_alloc_dim(isl_dim_copy(bmap->dim),
2486                         bmap->n_div + n_out,
2487                         bmap->n_eq, bmap->n_ineq + 2 * n_out);
2488         result = add_constraints_dim_map(result, bmap, dim_map);
2489         result = add_divs(result, n_out);
2490         for (i = 0; i < n_out; ++i) {
2491                 int j;
2492                 j = isl_basic_map_alloc_inequality(result);
2493                 if (j < 0)
2494                         goto error;
2495                 isl_seq_clr(result->ineq[j], 1+total);
2496                 isl_int_neg(result->ineq[j][1+nparam+n_in+i], d);
2497                 isl_int_set_si(result->ineq[j][1+pos+i], 1);
2498                 j = isl_basic_map_alloc_inequality(result);
2499                 if (j < 0)
2500                         goto error;
2501                 isl_seq_clr(result->ineq[j], 1+total);
2502                 isl_int_set(result->ineq[j][1+nparam+n_in+i], d);
2503                 isl_int_set_si(result->ineq[j][1+pos+i], -1);
2504                 isl_int_sub_ui(result->ineq[j][0], d, 1);
2505         }
2506
2507         result = isl_basic_map_simplify(result);
2508         return isl_basic_map_finalize(result);
2509 error:
2510         isl_basic_map_free(result);
2511         return NULL;
2512 }
2513
2514 /* Given a map A -> f(A) and an integer d, construct a map
2515  * A -> floor(f(A)/d).
2516  */
2517 struct isl_map *isl_map_floordiv(struct isl_map *map, isl_int d)
2518 {
2519         int i;
2520
2521         map = isl_map_cow(map);
2522         if (!map)
2523                 return NULL;
2524
2525         ISL_F_CLR(map, ISL_MAP_DISJOINT);
2526         ISL_F_CLR(map, ISL_MAP_NORMALIZED);
2527         for (i = 0; i < map->n; ++i) {
2528                 map->p[i] = isl_basic_map_floordiv(map->p[i], d);
2529                 if (!map->p[i])
2530                         goto error;
2531         }
2532
2533         return map;
2534 error:
2535         isl_map_free(map);
2536         return NULL;
2537 }
2538
2539 static struct isl_basic_map *var_equal(struct isl_basic_map *bmap, unsigned pos)
2540 {
2541         int i;
2542         unsigned nparam;
2543         unsigned n_in;
2544
2545         i = isl_basic_map_alloc_equality(bmap);
2546         if (i < 0)
2547                 goto error;
2548         nparam = isl_basic_map_n_param(bmap);
2549         n_in = isl_basic_map_n_in(bmap);
2550         isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
2551         isl_int_set_si(bmap->eq[i][1+nparam+pos], -1);
2552         isl_int_set_si(bmap->eq[i][1+nparam+n_in+pos], 1);
2553         return isl_basic_map_finalize(bmap);
2554 error:
2555         isl_basic_map_free(bmap);
2556         return NULL;
2557 }
2558
2559 /* Add a constraints to "bmap" expressing i_pos < o_pos
2560  */
2561 static struct isl_basic_map *var_less(struct isl_basic_map *bmap, unsigned pos)
2562 {
2563         int i;
2564         unsigned nparam;
2565         unsigned n_in;
2566
2567         i = isl_basic_map_alloc_inequality(bmap);
2568         if (i < 0)
2569                 goto error;
2570         nparam = isl_basic_map_n_param(bmap);
2571         n_in = isl_basic_map_n_in(bmap);
2572         isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
2573         isl_int_set_si(bmap->ineq[i][0], -1);
2574         isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
2575         isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
2576         return isl_basic_map_finalize(bmap);
2577 error:
2578         isl_basic_map_free(bmap);
2579         return NULL;
2580 }
2581
2582 /* Add a constraints to "bmap" expressing i_pos > o_pos
2583  */
2584 static struct isl_basic_map *var_more(struct isl_basic_map *bmap, unsigned pos)
2585 {
2586         int i;
2587         unsigned nparam;
2588         unsigned n_in;
2589
2590         i = isl_basic_map_alloc_inequality(bmap);
2591         if (i < 0)
2592                 goto error;
2593         nparam = isl_basic_map_n_param(bmap);
2594         n_in = isl_basic_map_n_in(bmap);
2595         isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
2596         isl_int_set_si(bmap->ineq[i][0], -1);
2597         isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
2598         isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
2599         return isl_basic_map_finalize(bmap);
2600 error:
2601         isl_basic_map_free(bmap);
2602         return NULL;
2603 }
2604
2605 struct isl_basic_map *isl_basic_map_equal(struct isl_dim *dim, unsigned n_equal)
2606 {
2607         int i;
2608         struct isl_basic_map *bmap;
2609         bmap = isl_basic_map_alloc_dim(dim, 0, n_equal, 0);
2610         if (!bmap)
2611                 return NULL;
2612         for (i = 0; i < n_equal && bmap; ++i)
2613                 bmap = var_equal(bmap, i);
2614         return isl_basic_map_finalize(bmap);
2615 }
2616
2617 /* Return a relation on pairs of sets of dimension "dim" expressing i_pos < o_pos
2618  */
2619 struct isl_basic_map *isl_basic_map_less_at(struct isl_dim *dim, unsigned pos)
2620 {
2621         int i;
2622         struct isl_basic_map *bmap;
2623         bmap = isl_basic_map_alloc_dim(dim, 0, pos, 1);
2624         if (!bmap)
2625                 return NULL;
2626         for (i = 0; i < pos && bmap; ++i)
2627                 bmap = var_equal(bmap, i);
2628         if (bmap)
2629                 bmap = var_less(bmap, pos);
2630         return isl_basic_map_finalize(bmap);
2631 }
2632
2633 /* Return a relation on pairs of sets of dimension "dim" expressing i_pos > o_pos
2634  */
2635 struct isl_basic_map *isl_basic_map_more_at(struct isl_dim *dim, unsigned pos)
2636 {
2637         int i;
2638         struct isl_basic_map *bmap;
2639         bmap = isl_basic_map_alloc_dim(dim, 0, pos, 1);
2640         if (!bmap)
2641                 return NULL;
2642         for (i = 0; i < pos && bmap; ++i)
2643                 bmap = var_equal(bmap, i);
2644         if (bmap)
2645                 bmap = var_more(bmap, pos);
2646         return isl_basic_map_finalize(bmap);
2647 }
2648
2649 static __isl_give isl_map *map_lex_lte(__isl_take isl_dim *dims, int equal)
2650 {
2651         struct isl_map *map;
2652         unsigned dim;
2653         int i;
2654
2655         if (!dims)
2656                 return NULL;
2657         dim = dims->n_out;
2658         map = isl_map_alloc_dim(isl_dim_copy(dims), dim + equal, ISL_MAP_DISJOINT);
2659
2660         for (i = 0; i < dim; ++i)
2661                 map = isl_map_add_basic_map(map,
2662                                   isl_basic_map_less_at(isl_dim_copy(dims), i));
2663         if (equal)
2664                 map = isl_map_add_basic_map(map,
2665                                   isl_basic_map_equal(isl_dim_copy(dims), dim));
2666
2667         isl_dim_free(dims);
2668         return map;
2669 }
2670
2671 __isl_give isl_map *isl_map_lex_lt(__isl_take isl_dim *set_dim)
2672 {
2673         return map_lex_lte(isl_dim_map(set_dim), 0);
2674 }
2675
2676 __isl_give isl_map *isl_map_lex_le(__isl_take isl_dim *set_dim)
2677 {
2678         return map_lex_lte(isl_dim_map(set_dim), 1);
2679 }
2680
2681 static __isl_give isl_map *map_lex_gte(__isl_take isl_dim *dims, int equal)
2682 {
2683         struct isl_map *map;
2684         unsigned dim;
2685         int i;
2686
2687         if (!dims)
2688                 return NULL;
2689         dim = dims->n_out;
2690         map = isl_map_alloc_dim(isl_dim_copy(dims), dim + equal, ISL_MAP_DISJOINT);
2691
2692         for (i = 0; i < dim; ++i)
2693                 map = isl_map_add_basic_map(map,
2694                                   isl_basic_map_more_at(isl_dim_copy(dims), i));
2695         if (equal)
2696                 map = isl_map_add_basic_map(map,
2697                                   isl_basic_map_equal(isl_dim_copy(dims), dim));
2698
2699         isl_dim_free(dims);
2700         return map;
2701 }
2702
2703 __isl_give isl_map *isl_map_lex_gt(__isl_take isl_dim *set_dim)
2704 {
2705         return map_lex_gte(isl_dim_map(set_dim), 0);
2706 }
2707
2708 __isl_give isl_map *isl_map_lex_ge(__isl_take isl_dim *set_dim)
2709 {
2710         return map_lex_gte(isl_dim_map(set_dim), 1);
2711 }
2712
2713 struct isl_basic_map *isl_basic_map_from_basic_set(
2714                 struct isl_basic_set *bset, struct isl_dim *dim)
2715 {
2716         struct isl_basic_map *bmap;
2717
2718         bset = isl_basic_set_cow(bset);
2719         if (!bset || !dim)
2720                 goto error;
2721
2722         isl_assert(bset->ctx, isl_dim_compatible(bset->dim, dim), goto error);
2723         isl_dim_free(bset->dim);
2724         bmap = (struct isl_basic_map *) bset;
2725         bmap->dim = dim;
2726         return isl_basic_map_finalize(bmap);
2727 error:
2728         isl_basic_set_free(bset);
2729         isl_dim_free(dim);
2730         return NULL;
2731 }
2732
2733 struct isl_basic_set *isl_basic_set_from_basic_map(struct isl_basic_map *bmap)
2734 {
2735         if (!bmap)
2736                 goto error;
2737         if (bmap->dim->n_in == 0)
2738                 return (struct isl_basic_set *)bmap;
2739         bmap = isl_basic_map_cow(bmap);
2740         if (!bmap)
2741                 goto error;
2742         bmap->dim = isl_dim_cow(bmap->dim);
2743         if (!bmap->dim)
2744                 goto error;
2745         bmap->dim->n_out += bmap->dim->n_in;
2746         bmap->dim->n_in = 0;
2747         bmap = isl_basic_map_finalize(bmap);
2748         return (struct isl_basic_set *)bmap;
2749 error:
2750         isl_basic_map_free(bmap);
2751         return NULL;
2752 }
2753
2754 /* For a div d = floor(f/m), add the constraints
2755  *
2756  *              f - m d >= 0
2757  *              -(f-(n-1)) + m d >= 0
2758  *
2759  * Note that the second constraint is the negation of
2760  *
2761  *              f - m d >= n
2762  */
2763 int isl_basic_map_add_div_constraints(struct isl_basic_map *bmap, unsigned div)
2764 {
2765         int i, j;
2766         unsigned total = isl_basic_map_total_dim(bmap);
2767         unsigned div_pos = 1 + total - bmap->n_div + div;
2768
2769         i = isl_basic_map_alloc_inequality(bmap);
2770         if (i < 0)
2771                 return -1;
2772         isl_seq_cpy(bmap->ineq[i], bmap->div[div]+1, 1+total);
2773         isl_int_neg(bmap->ineq[i][div_pos], bmap->div[div][0]);
2774
2775         j = isl_basic_map_alloc_inequality(bmap);
2776         if (j < 0)
2777                 return -1;
2778         isl_seq_neg(bmap->ineq[j], bmap->ineq[i], 1 + total);
2779         isl_int_add(bmap->ineq[j][0], bmap->ineq[j][0], bmap->ineq[j][div_pos]);
2780         isl_int_sub_ui(bmap->ineq[j][0], bmap->ineq[j][0], 1);
2781         return j;
2782 }
2783
2784 struct isl_basic_set *isl_basic_map_underlying_set(
2785                 struct isl_basic_map *bmap)
2786 {
2787         if (!bmap)
2788                 goto error;
2789         if (bmap->dim->nparam == 0 && bmap->dim->n_in == 0 && bmap->n_div == 0)
2790                 return (struct isl_basic_set *)bmap;
2791         bmap = isl_basic_map_cow(bmap);
2792         if (!bmap)
2793                 goto error;
2794         bmap->dim = isl_dim_underlying(bmap->dim, bmap->n_div);
2795         if (!bmap->dim)
2796                 goto error;
2797         bmap->extra -= bmap->n_div;
2798         bmap->n_div = 0;
2799         bmap = isl_basic_map_finalize(bmap);
2800         return (struct isl_basic_set *)bmap;
2801 error:
2802         return NULL;
2803 }
2804
2805 __isl_give isl_basic_set *isl_basic_set_underlying_set(
2806                 __isl_take isl_basic_set *bset)
2807 {
2808         return isl_basic_map_underlying_set((isl_basic_map *)bset);
2809 }
2810
2811 struct isl_basic_map *isl_basic_map_overlying_set(
2812         struct isl_basic_set *bset, struct isl_basic_map *like)
2813 {
2814         struct isl_basic_map *bmap;
2815         struct isl_ctx *ctx;
2816         unsigned total;
2817         int i;
2818
2819         if (!bset || !like)
2820                 goto error;
2821         ctx = bset->ctx;
2822         isl_assert(ctx, bset->n_div == 0, goto error);
2823         isl_assert(ctx, isl_basic_set_n_param(bset) == 0, goto error);
2824         isl_assert(ctx, bset->dim->n_out == isl_basic_map_total_dim(like),
2825                         goto error);
2826         if (isl_dim_equal(bset->dim, like->dim) && like->n_div == 0) {
2827                 isl_basic_map_free(like);
2828                 return (struct isl_basic_map *)bset;
2829         }
2830         bset = isl_basic_set_cow(bset);
2831         if (!bset)
2832                 goto error;
2833         total = bset->dim->n_out + bset->extra;
2834         bmap = (struct isl_basic_map *)bset;
2835         isl_dim_free(bmap->dim);
2836         bmap->dim = isl_dim_copy(like->dim);
2837         if (!bmap->dim)
2838                 goto error;
2839         bmap->n_div = like->n_div;
2840         bmap->extra += like->n_div;
2841         if (bmap->extra) {
2842                 unsigned ltotal;
2843                 ltotal = total - bmap->extra + like->extra;
2844                 if (ltotal > total)
2845                         ltotal = total;
2846                 bmap->block2 = isl_blk_extend(ctx, bmap->block2,
2847                                         bmap->extra * (1 + 1 + total));
2848                 if (isl_blk_is_error(bmap->block2))
2849                         goto error;
2850                 bmap->div = isl_realloc_array(ctx, bmap->div, isl_int *,
2851                                                 bmap->extra);
2852                 if (!bmap->div)
2853                         goto error;
2854                 for (i = 0; i < bmap->extra; ++i)
2855                         bmap->div[i] = bmap->block2.data + i * (1 + 1 + total);
2856                 for (i = 0; i < like->n_div; ++i) {
2857                         isl_seq_cpy(bmap->div[i], like->div[i], 1 + 1 + ltotal);
2858                         isl_seq_clr(bmap->div[i]+1+1+ltotal, total - ltotal);
2859                 }
2860                 bmap = isl_basic_map_extend_constraints(bmap, 
2861                                                         0, 2 * like->n_div);
2862                 for (i = 0; i < like->n_div; ++i) {
2863                         if (isl_int_is_zero(bmap->div[i][0]))
2864                                 continue;
2865                         if (isl_basic_map_add_div_constraints(bmap, i) < 0)
2866                                 goto error;
2867                 }
2868         }
2869         isl_basic_map_free(like);
2870         bmap = isl_basic_map_simplify(bmap);
2871         bmap = isl_basic_map_finalize(bmap);
2872         return bmap;
2873 error:
2874         isl_basic_map_free(like);
2875         isl_basic_set_free(bset);
2876         return NULL;
2877 }
2878
2879 struct isl_basic_set *isl_basic_set_from_underlying_set(
2880         struct isl_basic_set *bset, struct isl_basic_set *like)
2881 {
2882         return (struct isl_basic_set *)
2883                 isl_basic_map_overlying_set(bset, (struct isl_basic_map *)like);
2884 }
2885
2886 struct isl_set *isl_set_from_underlying_set(
2887         struct isl_set *set, struct isl_basic_set *like)
2888 {
2889         int i;
2890
2891         if (!set || !like)
2892                 goto error;
2893         isl_assert(set->ctx, set->dim->n_out == isl_basic_set_total_dim(like),
2894                     goto error);
2895         if (isl_dim_equal(set->dim, like->dim) && like->n_div == 0) {
2896                 isl_basic_set_free(like);
2897                 return set;
2898         }
2899         set = isl_set_cow(set);
2900         if (!set)
2901                 goto error;
2902         for (i = 0; i < set->n; ++i) {
2903                 set->p[i] = isl_basic_set_from_underlying_set(set->p[i],
2904                                                       isl_basic_set_copy(like));
2905                 if (!set->p[i])
2906                         goto error;
2907         }
2908         isl_dim_free(set->dim);
2909         set->dim = isl_dim_copy(like->dim);
2910         if (!set->dim)
2911                 goto error;
2912         isl_basic_set_free(like);
2913         return set;
2914 error:
2915         isl_basic_set_free(like);
2916         isl_set_free(set);
2917         return NULL;
2918 }
2919
2920 struct isl_set *isl_map_underlying_set(struct isl_map *map)
2921 {
2922         int i;
2923
2924         map = isl_map_cow(map);
2925         if (!map)
2926                 return NULL;
2927         map->dim = isl_dim_cow(map->dim);
2928         if (!map->dim)
2929                 goto error;
2930
2931         for (i = 1; i < map->n; ++i)
2932                 isl_assert(map->ctx, map->p[0]->n_div == map->p[i]->n_div,
2933                                 goto error);
2934         for (i = 0; i < map->n; ++i) {
2935                 map->p[i] = (struct isl_basic_map *)
2936                                 isl_basic_map_underlying_set(map->p[i]);
2937                 if (!map->p[i])
2938                         goto error;
2939         }
2940         if (map->n == 0)
2941                 map->dim = isl_dim_underlying(map->dim, 0);
2942         else {
2943                 isl_dim_free(map->dim);
2944                 map->dim = isl_dim_copy(map->p[0]->dim);
2945         }
2946         if (!map->dim)
2947                 goto error;
2948         return (struct isl_set *)map;
2949 error:
2950         isl_map_free(map);
2951         return NULL;
2952 }
2953
2954 struct isl_set *isl_set_to_underlying_set(struct isl_set *set)
2955 {
2956         return (struct isl_set *)isl_map_underlying_set((struct isl_map *)set);
2957 }
2958
2959 struct isl_basic_set *isl_basic_map_domain(struct isl_basic_map *bmap)
2960 {
2961         struct isl_basic_set *domain;
2962         unsigned n_in;
2963         unsigned n_out;
2964         if (!bmap)
2965                 return NULL;
2966         n_in = isl_basic_map_n_in(bmap);
2967         n_out = isl_basic_map_n_out(bmap);
2968         domain = isl_basic_set_from_basic_map(bmap);
2969         return isl_basic_set_project_out(domain, isl_dim_set, n_in, n_out);
2970 }
2971
2972 struct isl_basic_set *isl_basic_map_range(struct isl_basic_map *bmap)
2973 {
2974         return isl_basic_map_domain(isl_basic_map_reverse(bmap));
2975 }
2976
2977 struct isl_set *isl_map_range(struct isl_map *map)
2978 {
2979         int i;
2980         struct isl_set *set;
2981
2982         if (!map)
2983                 goto error;
2984         map = isl_map_cow(map);
2985         if (!map)
2986                 goto error;
2987
2988         set = (struct isl_set *) map;
2989         if (set->dim->n_in != 0) {
2990                 set->dim = isl_dim_drop_inputs(set->dim, 0, set->dim->n_in);
2991                 if (!set->dim)
2992                         goto error;
2993         }
2994         for (i = 0; i < map->n; ++i) {
2995                 set->p[i] = isl_basic_map_range(map->p[i]);
2996                 if (!set->p[i])
2997                         goto error;
2998         }
2999         ISL_F_CLR(set, ISL_MAP_DISJOINT);
3000         ISL_F_CLR(set, ISL_SET_NORMALIZED);
3001         return set;
3002 error:
3003         isl_map_free(map);
3004         return NULL;
3005 }
3006
3007 struct isl_map *isl_map_from_set(struct isl_set *set, struct isl_dim *dim)
3008 {
3009         int i;
3010         struct isl_map *map = NULL;
3011
3012         set = isl_set_cow(set);
3013         if (!set || !dim)
3014                 goto error;
3015         isl_assert(set->ctx, isl_dim_compatible(set->dim, dim), goto error);
3016         map = (struct isl_map *)set;
3017         for (i = 0; i < set->n; ++i) {
3018                 map->p[i] = isl_basic_map_from_basic_set(
3019                                 set->p[i], isl_dim_copy(dim));
3020                 if (!map->p[i])
3021                         goto error;
3022         }
3023         isl_dim_free(map->dim);
3024         map->dim = dim;
3025         return map;
3026 error:
3027         isl_dim_free(dim);
3028         isl_set_free(set);
3029         return NULL;
3030 }
3031
3032 struct isl_map *isl_map_from_range(struct isl_set *set)
3033 {
3034         return (struct isl_map *)set;
3035 }
3036
3037 __isl_give isl_map *isl_map_from_domain(__isl_take isl_set *set)
3038 {
3039         return isl_map_reverse(isl_map_from_range(set));;
3040 }
3041
3042 __isl_give isl_map *isl_map_from_domain_and_range(__isl_take isl_set *domain,
3043         __isl_take isl_set *range)
3044 {
3045         return isl_map_product(isl_map_from_domain(domain),
3046                                isl_map_from_range(range));
3047 }
3048
3049 struct isl_set *isl_set_from_map(struct isl_map *map)
3050 {
3051         int i;
3052         struct isl_set *set = NULL;
3053
3054         if (!map)
3055                 return NULL;
3056         map = isl_map_cow(map);
3057         if (!map)
3058                 return NULL;
3059         map->dim = isl_dim_cow(map->dim);
3060         if (!map->dim)
3061                 goto error;
3062         map->dim->n_out += map->dim->n_in;
3063         map->dim->n_in = 0;
3064         set = (struct isl_set *)map;
3065         for (i = 0; i < map->n; ++i) {
3066                 set->p[i] = isl_basic_set_from_basic_map(map->p[i]);
3067                 if (!set->p[i])
3068                         goto error;
3069         }
3070         return set;
3071 error:
3072         isl_map_free(map);
3073         return NULL;
3074 }
3075
3076 struct isl_map *isl_map_alloc_dim(struct isl_dim *dim, int n, unsigned flags)
3077 {
3078         struct isl_map *map;
3079
3080         if (!dim)
3081                 return NULL;
3082         isl_assert(dim->ctx, n >= 0, return NULL);
3083         map = isl_alloc(dim->ctx, struct isl_map,
3084                         sizeof(struct isl_map) +
3085                         (n - 1) * sizeof(struct isl_basic_map *));
3086         if (!map)
3087                 goto error;
3088
3089         map->ctx = dim->ctx;
3090         isl_ctx_ref(map->ctx);
3091         map->ref = 1;
3092         map->size = n;
3093         map->n = 0;
3094         map->dim = dim;
3095         map->flags = flags;
3096         return map;
3097 error:
3098         isl_dim_free(dim);
3099         return NULL;
3100 }
3101
3102 struct isl_map *isl_map_alloc(struct isl_ctx *ctx,
3103                 unsigned nparam, unsigned in, unsigned out, int n,
3104                 unsigned flags)
3105 {
3106         struct isl_map *map;
3107         struct isl_dim *dims;
3108
3109         dims = isl_dim_alloc(ctx, nparam, in, out);
3110         if (!dims)
3111                 return NULL;
3112
3113         map = isl_map_alloc_dim(dims, n, flags);
3114         return map;
3115 }
3116
3117 struct isl_basic_map *isl_basic_map_empty(struct isl_dim *dim)
3118 {
3119         struct isl_basic_map *bmap;
3120         bmap = isl_basic_map_alloc_dim(dim, 0, 1, 0);
3121         bmap = isl_basic_map_set_to_empty(bmap);
3122         return bmap;
3123 }
3124
3125 struct isl_basic_set *isl_basic_set_empty(struct isl_dim *dim)
3126 {
3127         struct isl_basic_set *bset;
3128         bset = isl_basic_set_alloc_dim(dim, 0, 1, 0);
3129         bset = isl_basic_set_set_to_empty(bset);
3130         return bset;
3131 }
3132
3133 struct isl_basic_map *isl_basic_map_empty_like(struct isl_basic_map *model)
3134 {
3135         struct isl_basic_map *bmap;
3136         if (!model)
3137                 return NULL;
3138         bmap = isl_basic_map_alloc_dim(isl_dim_copy(model->dim), 0, 1, 0);
3139         bmap = isl_basic_map_set_to_empty(bmap);
3140         return bmap;
3141 }
3142
3143 struct isl_basic_map *isl_basic_map_empty_like_map(struct isl_map *model)
3144 {
3145         struct isl_basic_map *bmap;
3146         if (!model)
3147                 return NULL;
3148         bmap = isl_basic_map_alloc_dim(isl_dim_copy(model->dim), 0, 1, 0);
3149         bmap = isl_basic_map_set_to_empty(bmap);
3150         return bmap;
3151 }
3152
3153 struct isl_basic_set *isl_basic_set_empty_like(struct isl_basic_set *model)
3154 {
3155         struct isl_basic_set *bset;
3156         if (!model)
3157                 return NULL;
3158         bset = isl_basic_set_alloc_dim(isl_dim_copy(model->dim), 0, 1, 0);
3159         bset = isl_basic_set_set_to_empty(bset);
3160         return bset;
3161 }
3162
3163 struct isl_basic_map *isl_basic_map_universe(struct isl_dim *dim)
3164 {
3165         struct isl_basic_map *bmap;
3166         bmap = isl_basic_map_alloc_dim(dim, 0, 0, 0);
3167         return bmap;
3168 }
3169
3170 struct isl_basic_set *isl_basic_set_universe(struct isl_dim *dim)
3171 {
3172         struct isl_basic_set *bset;
3173         bset = isl_basic_set_alloc_dim(dim, 0, 0, 0);
3174         return bset;
3175 }
3176
3177 __isl_give isl_basic_map *isl_basic_map_universe_like(
3178                 __isl_keep isl_basic_map *model)
3179 {
3180         if (!model)
3181                 return NULL;
3182         return isl_basic_map_alloc_dim(isl_dim_copy(model->dim), 0, 0, 0);
3183 }
3184
3185 struct isl_basic_set *isl_basic_set_universe_like(struct isl_basic_set *model)
3186 {
3187         if (!model)
3188                 return NULL;
3189         return isl_basic_set_alloc_dim(isl_dim_copy(model->dim), 0, 0, 0);
3190 }
3191
3192 __isl_give isl_basic_set *isl_basic_set_universe_like_set(
3193         __isl_keep isl_set *model)
3194 {
3195         if (!model)
3196                 return NULL;
3197         return isl_basic_set_alloc_dim(isl_dim_copy(model->dim), 0, 0, 0);
3198 }
3199
3200 struct isl_map *isl_map_empty(struct isl_dim *dim)
3201 {
3202         return isl_map_alloc_dim(dim, 0, ISL_MAP_DISJOINT);
3203 }
3204
3205 struct isl_map *isl_map_empty_like(struct isl_map *model)
3206 {
3207         if (!model)
3208                 return NULL;
3209         return isl_map_alloc_dim(isl_dim_copy(model->dim), 0, ISL_MAP_DISJOINT);
3210 }
3211
3212 struct isl_map *isl_map_empty_like_basic_map(struct isl_basic_map *model)
3213 {
3214         if (!model)
3215                 return NULL;
3216         return isl_map_alloc_dim(isl_dim_copy(model->dim), 0, ISL_MAP_DISJOINT);
3217 }
3218
3219 struct isl_set *isl_set_empty(struct isl_dim *dim)
3220 {
3221         return isl_set_alloc_dim(dim, 0, ISL_MAP_DISJOINT);
3222 }
3223
3224 struct isl_set *isl_set_empty_like(struct isl_set *model)
3225 {
3226         if (!model)
3227                 return NULL;
3228         return isl_set_empty(isl_dim_copy(model->dim));
3229 }
3230
3231 struct isl_map *isl_map_universe(struct isl_dim *dim)
3232 {
3233         struct isl_map *map;
3234         if (!dim)
3235                 return NULL;
3236         map = isl_map_alloc_dim(isl_dim_copy(dim), 1, ISL_MAP_DISJOINT);
3237         map = isl_map_add_basic_map(map, isl_basic_map_universe(dim));
3238         return map;
3239 }
3240
3241 struct isl_set *isl_set_universe(struct isl_dim *dim)
3242 {
3243         struct isl_set *set;
3244         if (!dim)
3245                 return NULL;
3246         set = isl_set_alloc_dim(isl_dim_copy(dim), 1, ISL_MAP_DISJOINT);
3247         set = isl_set_add_basic_set(set, isl_basic_set_universe(dim));
3248         return set;
3249 }
3250
3251 __isl_give isl_set *isl_set_universe_like(__isl_keep isl_set *model)
3252 {
3253         if (!model)
3254                 return NULL;
3255         return isl_set_universe(isl_dim_copy(model->dim));
3256 }
3257
3258 struct isl_map *isl_map_dup(struct isl_map *map)
3259 {
3260         int i;
3261         struct isl_map *dup;
3262
3263         if (!map)
3264                 return NULL;
3265         dup = isl_map_alloc_dim(isl_dim_copy(map->dim), map->n, map->flags);
3266         for (i = 0; i < map->n; ++i)
3267                 dup = isl_map_add_basic_map(dup, isl_basic_map_copy(map->p[i]));
3268         return dup;
3269 }
3270
3271 __isl_give isl_map *isl_map_add_basic_map(__isl_take isl_map *map,
3272                                                 __isl_take isl_basic_map *bmap)
3273 {
3274         if (!bmap || !map)
3275                 goto error;
3276         if (isl_basic_map_fast_is_empty(bmap)) {
3277                 isl_basic_map_free(bmap);
3278                 return map;
3279         }
3280         isl_assert(map->ctx, isl_dim_equal(map->dim, bmap->dim), goto error);
3281         isl_assert(map->ctx, map->n < map->size, goto error);
3282         map->p[map->n] = bmap;
3283         map->n++;
3284         ISL_F_CLR(map, ISL_MAP_NORMALIZED);
3285         return map;
3286 error:
3287         if (map)
3288                 isl_map_free(map);
3289         if (bmap)
3290                 isl_basic_map_free(bmap);
3291         return NULL;
3292 }
3293
3294 void isl_map_free(struct isl_map *map)
3295 {
3296         int i;
3297
3298         if (!map)
3299                 return;
3300
3301         if (--map->ref > 0)
3302                 return;
3303
3304         isl_ctx_deref(map->ctx);
3305         for (i = 0; i < map->n; ++i)
3306                 isl_basic_map_free(map->p[i]);
3307         isl_dim_free(map->dim);
3308         free(map);
3309 }
3310
3311 struct isl_map *isl_map_extend(struct isl_map *base,
3312                 unsigned nparam, unsigned n_in, unsigned n_out)
3313 {
3314         int i;
3315
3316         base = isl_map_cow(base);
3317         if (!base)
3318                 return NULL;
3319
3320         base->dim = isl_dim_extend(base->dim, nparam, n_in, n_out);
3321         if (!base->dim)
3322                 goto error;
3323         for (i = 0; i < base->n; ++i) {
3324                 base->p[i] = isl_basic_map_extend_dim(base->p[i],
3325                                 isl_dim_copy(base->dim), 0, 0, 0);
3326                 if (!base->p[i])
3327                         goto error;
3328         }
3329         return base;
3330 error:
3331         isl_map_free(base);
3332         return NULL;
3333 }
3334
3335 struct isl_set *isl_set_extend(struct isl_set *base,
3336                 unsigned nparam, unsigned dim)
3337 {
3338         return (struct isl_set *)isl_map_extend((struct isl_map *)base,
3339                                                         nparam, 0, dim);
3340 }
3341
3342 static struct isl_basic_map *isl_basic_map_fix_pos_si(
3343         struct isl_basic_map *bmap, unsigned pos, int value)
3344 {
3345         int j;
3346
3347         bmap = isl_basic_map_cow(bmap);
3348         bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
3349         j = isl_basic_map_alloc_equality(bmap);
3350         if (j < 0)
3351                 goto error;
3352         isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
3353         isl_int_set_si(bmap->eq[j][pos], -1);
3354         isl_int_set_si(bmap->eq[j][0], value);
3355         bmap = isl_basic_map_simplify(bmap);
3356         return isl_basic_map_finalize(bmap);
3357 error:
3358         isl_basic_map_free(bmap);
3359         return NULL;
3360 }
3361
3362 static __isl_give isl_basic_map *isl_basic_map_fix_pos(
3363         __isl_take isl_basic_map *bmap, unsigned pos, isl_int value)
3364 {
3365         int j;
3366
3367         bmap = isl_basic_map_cow(bmap);
3368         bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
3369         j = isl_basic_map_alloc_equality(bmap);
3370         if (j < 0)
3371                 goto error;
3372         isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
3373         isl_int_set_si(bmap->eq[j][pos], -1);
3374         isl_int_set(bmap->eq[j][0], value);
3375         bmap = isl_basic_map_simplify(bmap);
3376         return isl_basic_map_finalize(bmap);
3377 error:
3378         isl_basic_map_free(bmap);
3379         return NULL;
3380 }
3381
3382 struct isl_basic_map *isl_basic_map_fix_si(struct isl_basic_map *bmap,
3383                 enum isl_dim_type type, unsigned pos, int value)
3384 {
3385         if (!bmap)
3386                 return NULL;
3387         isl_assert(bmap->ctx, pos < isl_basic_map_dim(bmap, type), goto error);
3388         return isl_basic_map_fix_pos_si(bmap,
3389                 isl_basic_map_offset(bmap, type) + pos, value);
3390 error:
3391         isl_basic_map_free(bmap);
3392         return NULL;
3393 }
3394
3395 __isl_give isl_basic_map *isl_basic_map_fix(__isl_take isl_basic_map *bmap,
3396                 enum isl_dim_type type, unsigned pos, isl_int value)
3397 {
3398         if (!bmap)
3399                 return NULL;
3400         isl_assert(bmap->ctx, pos < isl_basic_map_dim(bmap, type), goto error);
3401         return isl_basic_map_fix_pos(bmap,
3402                 isl_basic_map_offset(bmap, type) + pos, value);
3403 error:
3404         isl_basic_map_free(bmap);
3405         return NULL;
3406 }
3407
3408 struct isl_basic_set *isl_basic_set_fix_si(struct isl_basic_set *bset,
3409                 enum isl_dim_type type, unsigned pos, int value)
3410 {
3411         return (struct isl_basic_set *)
3412                 isl_basic_map_fix_si((struct isl_basic_map *)bset,
3413                                         type, pos, value);
3414 }
3415
3416 __isl_give isl_basic_set *isl_basic_set_fix(__isl_take isl_basic_set *bset,
3417                 enum isl_dim_type type, unsigned pos, isl_int value)
3418 {
3419         return (struct isl_basic_set *)
3420                 isl_basic_map_fix((struct isl_basic_map *)bset,
3421                                         type, pos, value);
3422 }
3423
3424 struct isl_basic_map *isl_basic_map_fix_input_si(struct isl_basic_map *bmap,
3425                 unsigned input, int value)
3426 {
3427         return isl_basic_map_fix_si(bmap, isl_dim_in, input, value);
3428 }
3429
3430 struct isl_basic_set *isl_basic_set_fix_dim_si(struct isl_basic_set *bset,
3431                 unsigned dim, int value)
3432 {
3433         return (struct isl_basic_set *)
3434                 isl_basic_map_fix_si((struct isl_basic_map *)bset,
3435                                         isl_dim_set, dim, value);
3436 }
3437
3438 struct isl_map *isl_map_fix_si(struct isl_map *map,
3439                 enum isl_dim_type type, unsigned pos, int value)
3440 {
3441         int i;
3442
3443         map = isl_map_cow(map);
3444         if (!map)
3445                 return NULL;
3446
3447         isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
3448         for (i = 0; i < map->n; ++i) {
3449                 map->p[i] = isl_basic_map_fix_si(map->p[i], type, pos, value);
3450                 if (!map->p[i])
3451                         goto error;
3452         }
3453         ISL_F_CLR(map, ISL_MAP_NORMALIZED);
3454         return map;
3455 error:
3456         isl_map_free(map);
3457         return NULL;
3458 }
3459
3460 __isl_give isl_map *isl_map_fix(__isl_take isl_map *map,
3461                 enum isl_dim_type type, unsigned pos, isl_int value)
3462 {
3463         int i;
3464
3465         map = isl_map_cow(map);
3466         if (!map)
3467                 return NULL;
3468
3469         isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
3470         for (i = 0; i < map->n; ++i) {
3471                 map->p[i] = isl_basic_map_fix(map->p[i], type, pos, value);
3472                 if (!map->p[i])
3473                         goto error;
3474         }
3475         ISL_F_CLR(map, ISL_MAP_NORMALIZED);
3476         return map;
3477 error:
3478         isl_map_free(map);
3479         return NULL;
3480 }
3481
3482 __isl_give isl_set *isl_set_fix(__isl_take isl_set *set,
3483                 enum isl_dim_type type, unsigned pos, isl_int value)
3484 {
3485         return (struct isl_set *)isl_map_fix((isl_map *)set, type, pos, value);
3486 }
3487
3488 struct isl_map *isl_map_fix_input_si(struct isl_map *map,
3489                 unsigned input, int value)
3490 {
3491         return isl_map_fix_si(map, isl_dim_in, input, value);
3492 }
3493
3494 struct isl_set *isl_set_fix_dim_si(struct isl_set *set, unsigned dim, int value)
3495 {
3496         return (struct isl_set *)
3497                 isl_map_fix_si((struct isl_map *)set, isl_dim_set, dim, value);
3498 }
3499
3500 struct isl_basic_set *isl_basic_set_lower_bound_dim(struct isl_basic_set *bset,
3501         unsigned dim, isl_int value)
3502 {
3503         int j;
3504
3505         bset = isl_basic_set_cow(bset);
3506         bset = isl_basic_set_extend_constraints(bset, 0, 1);
3507         j = isl_basic_set_alloc_inequality(bset);
3508         if (j < 0)
3509                 goto error;
3510         isl_seq_clr(bset->ineq[j], 1 + isl_basic_set_total_dim(bset));
3511         isl_int_set_si(bset->ineq[j][1 + isl_basic_set_n_param(bset) + dim], 1);
3512         isl_int_neg(bset->ineq[j][0], value);
3513         bset = isl_basic_set_simplify(bset);
3514         return isl_basic_set_finalize(bset);
3515 error:
3516         isl_basic_set_free(bset);
3517         return NULL;
3518 }
3519
3520 struct isl_set *isl_set_lower_bound_dim(struct isl_set *set, unsigned dim,
3521                                         isl_int value)
3522 {
3523         int i;
3524
3525         set = isl_set_cow(set);
3526         if (!set)
3527                 return NULL;
3528
3529         isl_assert(set->ctx, dim < isl_set_n_dim(set), goto error);
3530         for (i = 0; i < set->n; ++i) {
3531                 set->p[i] = isl_basic_set_lower_bound_dim(set->p[i], dim, value);
3532                 if (!set->p[i])
3533                         goto error;
3534         }
3535         return set;
3536 error:
3537         isl_set_free(set);
3538         return NULL;
3539 }
3540
3541 struct isl_map *isl_map_reverse(struct isl_map *map)
3542 {
3543         int i;
3544
3545         map = isl_map_cow(map);
3546         if (!map)
3547                 return NULL;
3548
3549         map->dim = isl_dim_reverse(map->dim);
3550         if (!map->dim)
3551                 goto error;
3552         for (i = 0; i < map->n; ++i) {
3553                 map->p[i] = isl_basic_map_reverse(map->p[i]);
3554                 if (!map->p[i])
3555                         goto error;
3556         }
3557         ISL_F_CLR(map, ISL_MAP_NORMALIZED);
3558         return map;
3559 error:
3560         isl_map_free(map);
3561         return NULL;
3562 }
3563
3564 static struct isl_map *isl_basic_map_partial_lexopt(
3565                 struct isl_basic_map *bmap, struct isl_basic_set *dom,
3566                 struct isl_set **empty, int max)
3567 {
3568         if (!bmap)
3569                 goto error;
3570         if (bmap->ctx->opt->pip == ISL_PIP_PIP)
3571                 return isl_pip_basic_map_lexopt(bmap, dom, empty, max);
3572         else
3573                 return isl_tab_basic_map_partial_lexopt(bmap, dom, empty, max);
3574 error:
3575         isl_basic_map_free(bmap);
3576         isl_basic_set_free(dom);
3577         if (empty)
3578                 *empty = NULL;
3579         return NULL;
3580 }
3581
3582 struct isl_map *isl_basic_map_partial_lexmax(
3583                 struct isl_basic_map *bmap, struct isl_basic_set *dom,
3584                 struct isl_set **empty)
3585 {
3586         return isl_basic_map_partial_lexopt(bmap, dom, empty, 1);
3587 }
3588
3589 struct isl_map *isl_basic_map_partial_lexmin(
3590                 struct isl_basic_map *bmap, struct isl_basic_set *dom,
3591                 struct isl_set **empty)
3592 {
3593         return isl_basic_map_partial_lexopt(bmap, dom, empty, 0);
3594 }
3595
3596 struct isl_set *isl_basic_set_partial_lexmin(
3597                 struct isl_basic_set *bset, struct isl_basic_set *dom,
3598                 struct isl_set **empty)
3599 {
3600         return (struct isl_set *)
3601                 isl_basic_map_partial_lexmin((struct isl_basic_map *)bset,
3602                         dom, empty);
3603 }
3604
3605 struct isl_set *isl_basic_set_partial_lexmax(
3606                 struct isl_basic_set *bset, struct isl_basic_set *dom,
3607                 struct isl_set **empty)
3608 {
3609         return (struct isl_set *)
3610                 isl_basic_map_partial_lexmax((struct isl_basic_map *)bset,
3611                         dom, empty);
3612 }
3613
3614 /* Given a basic map "bmap", compute the lexicograhically minimal
3615  * (or maximal) image element for each domain element in dom.
3616  * Set *empty to those elements in dom that do not have an image element.
3617  *
3618  * We first make sure the basic sets in dom are disjoint and then
3619  * simply collect the results over each of the basic sets separately.
3620  * We could probably improve the efficiency a bit by moving the union
3621  * domain down into the parametric integer programming.
3622  */
3623 static __isl_give isl_map *basic_map_partial_lexopt(
3624                 __isl_take isl_basic_map *bmap, __isl_take isl_set *dom,
3625                 __isl_give isl_set **empty, int max)
3626 {
3627         int i;
3628         struct isl_map *res;
3629
3630         dom = isl_set_make_disjoint(dom);
3631         if (!dom)
3632                 goto error;
3633
3634         if (isl_set_fast_is_empty(dom)) {
3635                 res = isl_map_empty_like_basic_map(bmap);
3636                 *empty = isl_set_empty_like(dom);
3637                 isl_set_free(dom);
3638                 isl_basic_map_free(bmap);
3639                 return res;
3640         }
3641
3642         res = isl_basic_map_partial_lexopt(isl_basic_map_copy(bmap),
3643                         isl_basic_set_copy(dom->p[0]), empty, max);
3644                 
3645         for (i = 1; i < dom->n; ++i) {
3646                 struct isl_map *res_i;
3647                 struct isl_set *empty_i;
3648
3649                 res_i = isl_basic_map_partial_lexopt(isl_basic_map_copy(bmap),
3650                                 isl_basic_set_copy(dom->p[i]), &empty_i, max);
3651
3652                 res = isl_map_union_disjoint(res, res_i);
3653                 *empty = isl_set_union_disjoint(*empty, empty_i);
3654         }
3655
3656         isl_set_free(dom);
3657         isl_basic_map_free(bmap);
3658         return res;
3659 error:
3660         *empty = NULL;
3661         isl_set_free(dom);
3662         isl_basic_map_free(bmap);
3663         return NULL;
3664 }
3665
3666 /* Given a map "map", compute the lexicograhically minimal
3667  * (or maximal) image element for each domain element in dom.
3668  * Set *empty to those elements in dom that do not have an image element.
3669  *
3670  * We first compute the lexicographically minimal or maximal element
3671  * in the first basic map.  This results in a partial solution "res"
3672  * and a subset "todo" of dom that still need to be handled.
3673  * We then consider each of the remaining maps in "map" and successively
3674  * improve both "res" and "todo".
3675  *
3676  * Let res^k and todo^k be the results after k steps and let i = k + 1.
3677  * Assume we are computing the lexicographical maximum.
3678  * We first intersect basic map i with a relation that maps elements
3679  * to elements that are lexicographically larger than the image elements
3680  * in res^k and the compute the maximum image element of this intersection.
3681  * The result ("better") corresponds to those image elements in basic map i
3682  * that are better than what we had before.  The remainder ("keep") are the
3683  * domain elements for which the image element in res_k was better.
3684  * We also compute the lexicographical maximum of basic map i in todo^k.
3685  * res^i is the result of the operation + better + those elements in
3686  *              res^k that we should keep
3687  * todo^i is the remainder of the maximum operation on todo^k.
3688  */
3689 static __isl_give isl_map *isl_map_partial_lexopt(
3690                 __isl_take isl_map *map, __isl_take isl_set *dom,
3691                 __isl_give isl_set **empty, int max)
3692 {
3693         int i;
3694         struct isl_map *res;
3695         struct isl_set *todo;
3696
3697         if (!map || !dom)
3698                 goto error;
3699
3700         if (isl_map_fast_is_empty(map)) {
3701                 if (empty)
3702                         *empty = dom;
3703                 else
3704                         isl_set_free(dom);
3705                 return map;
3706         }
3707
3708         res = basic_map_partial_lexopt(isl_basic_map_copy(map->p[0]),
3709                                         isl_set_copy(dom), &todo, max);
3710
3711         for (i = 1; i < map->n; ++i) {
3712                 struct isl_map *lt;
3713                 struct isl_map *better;
3714                 struct isl_set *keep;
3715                 struct isl_map *res_i;
3716                 struct isl_set *todo_i;
3717                 struct isl_dim *dim = isl_map_get_dim(res);
3718
3719                 dim = isl_dim_range(dim);
3720                 if (max)
3721                         lt = isl_map_lex_lt(dim);
3722                 else
3723                         lt = isl_map_lex_gt(dim);
3724                 lt = isl_map_apply_range(isl_map_copy(res), lt);
3725                 lt = isl_map_intersect(lt,
3726                         isl_map_from_basic_map(isl_basic_map_copy(map->p[i])));
3727                 better = isl_map_partial_lexopt(lt,
3728                         isl_map_domain(isl_map_copy(res)),
3729                         &keep, max);
3730
3731                 res_i = basic_map_partial_lexopt(isl_basic_map_copy(map->p[i]),
3732                                                 todo, &todo_i, max);
3733
3734                 res = isl_map_intersect_domain(res, keep);
3735                 res = isl_map_union_disjoint(res, res_i);
3736                 res = isl_map_union_disjoint(res, better);
3737                 todo = todo_i;
3738         }
3739
3740         isl_set_free(dom);
3741         isl_map_free(map);
3742
3743         if (empty)
3744                 *empty = todo;
3745         else
3746                 isl_set_free(todo);
3747
3748         return res;
3749 error:
3750         if (empty)
3751                 *empty = NULL;
3752         isl_set_free(dom);
3753         isl_map_free(map);
3754         return NULL;
3755 }
3756
3757 __isl_give isl_map *isl_map_partial_lexmax(
3758                 __isl_take isl_map *map, __isl_take isl_set *dom,
3759                 __isl_give isl_set **empty)
3760 {
3761         return isl_map_partial_lexopt(map, dom, empty, 1);
3762 }
3763
3764 __isl_give isl_map *isl_map_partial_lexmin(
3765                 __isl_take isl_map *map, __isl_take isl_set *dom,
3766                 __isl_give isl_set **empty)
3767 {
3768         return isl_map_partial_lexopt(map, dom, empty, 0);
3769 }
3770
3771 __isl_give isl_set *isl_set_partial_lexmin(
3772                 __isl_take isl_set *set, __isl_take isl_set *dom,
3773                 __isl_give isl_set **empty)
3774 {
3775         return (struct isl_set *)
3776                 isl_map_partial_lexmin((struct isl_map *)set,
3777                         dom, empty);
3778 }
3779
3780 __isl_give isl_set *isl_set_partial_lexmax(
3781                 __isl_take isl_set *set, __isl_take isl_set *dom,
3782                 __isl_give isl_set **empty)
3783 {
3784         return (struct isl_set *)
3785                 isl_map_partial_lexmax((struct isl_map *)set,
3786                         dom, empty);
3787 }
3788
3789 __isl_give isl_map *isl_basic_map_lexopt(__isl_take isl_basic_map *bmap, int max)
3790 {
3791         struct isl_basic_set *dom = NULL;
3792         struct isl_dim *dom_dim;
3793
3794         if (!bmap)
3795                 goto error;
3796         dom_dim = isl_dim_domain(isl_dim_copy(bmap->dim));
3797         dom = isl_basic_set_universe(dom_dim);
3798         return isl_basic_map_partial_lexopt(bmap, dom, NULL, max);
3799 error:
3800         isl_basic_map_free(bmap);
3801         return NULL;
3802 }
3803
3804 __isl_give isl_map *isl_basic_map_lexmin(__isl_take isl_basic_map *bmap)
3805 {
3806         return isl_basic_map_lexopt(bmap, 0);
3807 }
3808
3809 __isl_give isl_map *isl_basic_map_lexmax(__isl_take isl_basic_map *bmap)
3810 {
3811         return isl_basic_map_lexopt(bmap, 1);
3812 }
3813
3814 __isl_give isl_set *isl_basic_set_lexmin(__isl_take isl_basic_set *bset)
3815 {
3816         return (isl_set *)isl_basic_map_lexmin((isl_basic_map *)bset);
3817 }
3818
3819 __isl_give isl_set *isl_basic_set_lexmax(__isl_take isl_basic_set *bset)
3820 {
3821         return (isl_set *)isl_basic_map_lexmax((isl_basic_map *)bset);
3822 }
3823
3824 __isl_give isl_map *isl_map_lexopt(__isl_take isl_map *map, int max)
3825 {
3826         struct isl_set *dom = NULL;
3827         struct isl_dim *dom_dim;
3828
3829         if (!map)
3830                 goto error;
3831         dom_dim = isl_dim_domain(isl_dim_copy(map->dim));
3832         dom = isl_set_universe(dom_dim);
3833         return isl_map_partial_lexopt(map, dom, NULL, max);
3834 error:
3835         isl_map_free(map);
3836         return NULL;
3837 }
3838
3839 __isl_give isl_map *isl_map_lexmin(__isl_take isl_map *map)
3840 {
3841         return isl_map_lexopt(map, 0);
3842 }
3843
3844 __isl_give isl_map *isl_map_lexmax(__isl_take isl_map *map)
3845 {
3846         return isl_map_lexopt(map, 1);
3847 }
3848
3849 __isl_give isl_set *isl_set_lexmin(__isl_take isl_set *set)
3850 {
3851         return (isl_set *)isl_map_lexmin((isl_map *)set);
3852 }
3853
3854 __isl_give isl_set *isl_set_lexmax(__isl_take isl_set *set)
3855 {
3856         return (isl_set *)isl_map_lexmax((isl_map *)set);
3857 }
3858
3859 static struct isl_map *isl_map_reset_dim(struct isl_map *map,
3860         struct isl_dim *dim)
3861 {
3862         int i;
3863
3864         if (!map || !dim)
3865                 goto error;
3866
3867         for (i = 0; i < map->n; ++i) {
3868                 isl_dim_free(map->p[i]->dim);
3869                 map->p[i]->dim = isl_dim_copy(dim);
3870         }
3871         isl_dim_free(map->dim);
3872         map->dim = dim;
3873
3874         return map;
3875 error:
3876         isl_map_free(map);
3877         isl_dim_free(dim);
3878         return NULL;
3879 }
3880
3881 static struct isl_set *isl_set_reset_dim(struct isl_set *set,
3882         struct isl_dim *dim)
3883 {
3884         return (struct isl_set *) isl_map_reset_dim((struct isl_map *)set, dim);
3885 }
3886
3887 /* Apply a preimage specified by "mat" on the parameters of "bset".
3888  * bset is assumed to have only parameters and divs.
3889  */
3890 static struct isl_basic_set *basic_set_parameter_preimage(
3891         struct isl_basic_set *bset, struct isl_mat *mat)
3892 {
3893         unsigned nparam;
3894
3895         if (!bset || !mat)
3896                 goto error;
3897
3898         bset->dim = isl_dim_cow(bset->dim);
3899         if (!bset->dim)
3900                 goto error;
3901
3902         nparam = isl_basic_set_dim(bset, isl_dim_param);
3903
3904         isl_assert(bset->ctx, mat->n_row == 1 + nparam, goto error);
3905
3906         bset->dim->nparam = 0;
3907         bset->dim->n_out = nparam;
3908         bset = isl_basic_set_preimage(bset, mat);
3909         if (bset) {
3910                 bset->dim->nparam = bset->dim->n_out;
3911                 bset->dim->n_out = 0;
3912         }
3913         return bset;
3914 error:
3915         isl_mat_free(mat);
3916         isl_basic_set_free(bset);
3917         return NULL;
3918 }
3919
3920 /* Apply a preimage specified by "mat" on the parameters of "set".
3921  * set is assumed to have only parameters and divs.
3922  */
3923 static struct isl_set *set_parameter_preimage(
3924         struct isl_set *set, struct isl_mat *mat)
3925 {
3926         struct isl_dim *dim = NULL;
3927         unsigned nparam;
3928
3929         if (!set || !mat)
3930                 goto error;
3931
3932         dim = isl_dim_copy(set->dim);
3933         dim = isl_dim_cow(dim);
3934         if (!dim)
3935                 goto error;
3936
3937         nparam = isl_set_dim(set, isl_dim_param);
3938
3939         isl_assert(set->ctx, mat->n_row == 1 + nparam, goto error);
3940
3941         dim->nparam = 0;
3942         dim->n_out = nparam;
3943         isl_set_reset_dim(set, dim);
3944         set = isl_set_preimage(set, mat);
3945         if (!set)
3946                 goto error2;
3947         dim = isl_dim_copy(set->dim);
3948         dim = isl_dim_cow(dim);
3949         if (!dim)
3950                 goto error2;
3951         dim->nparam = dim->n_out;
3952         dim->n_out = 0;
3953         isl_set_reset_dim(set, dim);
3954         return set;
3955 error:
3956         isl_dim_free(dim);
3957         isl_mat_free(mat);
3958 error2:
3959         isl_set_free(set);
3960         return NULL;
3961 }
3962
3963 /* Intersect the basic set "bset" with the affine space specified by the
3964  * equalities in "eq".
3965  */
3966 static struct isl_basic_set *basic_set_append_equalities(
3967         struct isl_basic_set *bset, struct isl_mat *eq)
3968 {
3969         int i, k;
3970         unsigned len;
3971
3972         if (!bset || !eq)
3973                 goto error;
3974
3975         bset = isl_basic_set_extend_dim(bset, isl_dim_copy(bset->dim), 0,
3976                                         eq->n_row, 0);
3977         if (!bset)
3978                 goto error;
3979
3980         len = 1 + isl_dim_total(bset->dim) + bset->extra;
3981         for (i = 0; i < eq->n_row; ++i) {
3982                 k = isl_basic_set_alloc_equality(bset);
3983                 if (k < 0)
3984                         goto error;
3985                 isl_seq_cpy(bset->eq[k], eq->row[i], eq->n_col);
3986                 isl_seq_clr(bset->eq[k] + eq->n_col, len - eq->n_col);
3987         }
3988         isl_mat_free(eq);
3989
3990         return bset;
3991 error:
3992         isl_mat_free(eq);
3993         isl_basic_set_free(bset);
3994         return NULL;
3995 }
3996
3997 /* Intersect the set "set" with the affine space specified by the
3998  * equalities in "eq".
3999  */
4000 static struct isl_set *set_append_equalities(struct isl_set *set,
4001         struct isl_mat *eq)
4002 {
4003         int i;
4004
4005         if (!set || !eq)
4006                 goto error;
4007
4008         for (i = 0; i < set->n; ++i) {
4009                 set->p[i] = basic_set_append_equalities(set->p[i],
4010                                         isl_mat_copy(eq));
4011                 if (!set->p[i])
4012                         goto error;
4013         }
4014         isl_mat_free(eq);
4015         return set;
4016 error:
4017         isl_mat_free(eq);
4018         isl_set_free(set);
4019         return NULL;
4020 }
4021
4022 /* Project the given basic set onto its parameter domain, possibly introducing
4023  * new, explicit, existential variables in the constraints.
4024  * The input has parameters and (possibly implicit) existential variables.
4025  * The output has the same parameters, but only
4026  * explicit existentially quantified variables.
4027  *
4028  * The actual projection is performed by pip, but pip doesn't seem
4029  * to like equalities very much, so we first remove the equalities
4030  * among the parameters by performing a variable compression on
4031  * the parameters.  Afterward, an inverse transformation is performed
4032  * and the equalities among the parameters are inserted back in.
4033  */
4034 static struct isl_set *parameter_compute_divs(struct isl_basic_set *bset)
4035 {
4036         int i, j;
4037         struct isl_mat *eq;
4038         struct isl_mat *T, *T2;
4039         struct isl_set *set;
4040         unsigned nparam, n_div;
4041
4042         bset = isl_basic_set_cow(bset);
4043         if (!bset)
4044                 return NULL;
4045
4046         if (bset->n_eq == 0)
4047                 return isl_basic_set_lexmin(bset);
4048
4049         isl_basic_set_gauss(bset, NULL);
4050
4051         nparam = isl_basic_set_dim(bset, isl_dim_param);
4052         n_div = isl_basic_set_dim(bset, isl_dim_div);
4053
4054         for (i = 0, j = n_div - 1; i < bset->n_eq && j >= 0; --j) {
4055                 if (!isl_int_is_zero(bset->eq[i][1 + nparam + j]))
4056                         ++i;
4057         }
4058         if (i == bset->n_eq)
4059                 return isl_basic_set_lexmin(bset);
4060
4061         eq = isl_mat_sub_alloc(bset->ctx, bset->eq, i, bset->n_eq - i,
4062                 0, 1 + nparam);
4063         eq = isl_mat_cow(eq);
4064         T = isl_mat_variable_compression(isl_mat_copy(eq), &T2);
4065         bset = basic_set_parameter_preimage(bset, T);
4066
4067         set = isl_basic_set_lexmin(bset);
4068         set = set_parameter_preimage(set, T2);
4069         set = set_append_equalities(set, eq);
4070         return set;
4071 }
4072
4073 /* Compute an explicit representation for all the existentially
4074  * quantified variables.
4075  * The input and output dimensions are first turned into parameters.
4076  * compute_divs then returns a map with the same parameters and
4077  * no input or output dimensions and the dimension specification
4078  * is reset to that of the input.
4079  */
4080 static struct isl_map *compute_divs(struct isl_basic_map *bmap)
4081 {
4082         struct isl_basic_set *bset;
4083         struct isl_set *set;
4084         struct isl_map *map;
4085         struct isl_dim *dim, *orig_dim = NULL;
4086         unsigned         nparam;
4087         unsigned         n_in;
4088         unsigned         n_out;
4089
4090         bmap = isl_basic_map_cow(bmap);
4091         if (!bmap)
4092                 return NULL;
4093
4094         nparam = isl_basic_map_dim(bmap, isl_dim_param);
4095         n_in = isl_basic_map_dim(bmap, isl_dim_in);
4096         n_out = isl_basic_map_dim(bmap, isl_dim_out);
4097         dim = isl_dim_set_alloc(bmap->ctx, nparam + n_in + n_out, 0);
4098         if (!dim)
4099                 goto error;
4100
4101         orig_dim = bmap->dim;
4102         bmap->dim = dim;
4103         bset = (struct isl_basic_set *)bmap;
4104
4105         set = parameter_compute_divs(bset);
4106         map = (struct isl_map *)set;
4107         map = isl_map_reset_dim(map, orig_dim);
4108
4109         return map;
4110 error:
4111         isl_basic_map_free(bmap);
4112         return NULL;
4113 }
4114
4115 static int basic_map_divs_known(__isl_keep isl_basic_map *bmap)
4116 {
4117         int i;
4118         unsigned off;
4119
4120         if (!bmap)
4121                 return -1;
4122
4123         off = isl_dim_total(bmap->dim);
4124         for (i = 0; i < bmap->n_div; ++i) {
4125                 if (isl_int_is_zero(bmap->div[i][0]))
4126                         return 0;
4127                 isl_assert(bmap->ctx, isl_int_is_zero(bmap->div[i][1+1+off+i]),
4128                                 return -1);
4129         }
4130         return 1;
4131 }
4132
4133 static int map_divs_known(__isl_keep isl_map *map)
4134 {
4135         int i;
4136
4137         if (!map)
4138                 return -1;
4139
4140         for (i = 0; i < map->n; ++i) {
4141                 int known = basic_map_divs_known(map->p[i]);
4142                 if (known <= 0)
4143                         return known;
4144         }
4145
4146         return 1;
4147 }
4148
4149 /* If bmap contains any unknown divs, then compute explicit
4150  * expressions for them.  However, this computation may be
4151  * quite expensive, so first try to remove divs that aren't
4152  * strictly needed.
4153  */
4154 struct isl_map *isl_basic_map_compute_divs(struct isl_basic_map *bmap)
4155 {
4156         int i;
4157         int known;
4158         struct isl_map *map;
4159
4160         known = basic_map_divs_known(bmap);
4161         if (known < 0)
4162                 goto error;
4163         if (known)
4164                 return isl_map_from_basic_map(bmap);
4165
4166         bmap = isl_basic_map_drop_redundant_divs(bmap);
4167
4168         known = basic_map_divs_known(bmap);
4169         if (known < 0)
4170                 goto error;
4171         if (known)
4172                 return isl_map_from_basic_map(bmap);
4173
4174         map = compute_divs(bmap);
4175         return map;
4176 error:
4177         isl_basic_map_free(bmap);
4178         return NULL;
4179 }
4180
4181 struct isl_map *isl_map_compute_divs(struct isl_map *map)
4182 {
4183         int i;
4184         int known;
4185         struct isl_map *res;
4186
4187         if (!map)
4188                 return NULL;
4189         if (map->n == 0)
4190                 return map;
4191
4192         known = map_divs_known(map);
4193         if (known < 0) {
4194                 isl_map_free(map);
4195                 return NULL;
4196         }
4197         if (known)
4198                 return map;
4199
4200         res = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[0]));
4201         for (i = 1 ; i < map->n; ++i) {
4202                 struct isl_map *r2;
4203                 r2 = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[i]));
4204                 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
4205                         res = isl_map_union_disjoint(res, r2);
4206                 else
4207                         res = isl_map_union(res, r2);
4208         }
4209         isl_map_free(map);
4210
4211         return res;
4212 }
4213
4214 struct isl_set *isl_basic_set_compute_divs(struct isl_basic_set *bset)
4215 {
4216         return (struct isl_set *)
4217                 isl_basic_map_compute_divs((struct isl_basic_map *)bset);
4218 }
4219
4220 struct isl_set *isl_set_compute_divs(struct isl_set *set)
4221 {
4222         return (struct isl_set *)
4223                 isl_map_compute_divs((struct isl_map *)set);
4224 }
4225
4226 struct isl_set *isl_map_domain(struct isl_map *map)
4227 {
4228         int i;
4229         struct isl_set *set;
4230
4231         if (!map)
4232                 goto error;
4233
4234         map = isl_map_cow(map);
4235         if (!map)
4236                 return NULL;
4237
4238         set = (struct isl_set *)map;
4239         set->dim = isl_dim_domain(set->dim);
4240         if (!set->dim)
4241                 goto error;
4242         for (i = 0; i < map->n; ++i) {
4243                 set->p[i] = isl_basic_map_domain(map->p[i]);
4244                 if (!set->p[i])
4245                         goto error;
4246         }
4247         ISL_F_CLR(set, ISL_MAP_DISJOINT);
4248         ISL_F_CLR(set, ISL_SET_NORMALIZED);
4249         return set;
4250 error:
4251         isl_map_free(map);
4252         return NULL;
4253 }
4254
4255 struct isl_map *isl_map_union_disjoint(
4256                         struct isl_map *map1, struct isl_map *map2)
4257 {
4258         int i;
4259         unsigned flags = 0;
4260         struct isl_map *map = NULL;
4261
4262         if (!map1 || !map2)
4263                 goto error;
4264
4265         if (map1->n == 0) {
4266                 isl_map_free(map1);
4267                 return map2;
4268         }
4269         if (map2->n == 0) {
4270                 isl_map_free(map2);
4271                 return map1;
4272         }
4273
4274         isl_assert(map1->ctx, isl_dim_equal(map1->dim, map2->dim), goto error);
4275
4276         if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
4277             ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
4278                 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
4279
4280         map = isl_map_alloc_dim(isl_dim_copy(map1->dim),
4281                                 map1->n + map2->n, flags);
4282         if (!map)
4283                 goto error;
4284         for (i = 0; i < map1->n; ++i) {
4285                 map = isl_map_add_basic_map(map,
4286                                   isl_basic_map_copy(map1->p[i]));
4287                 if (!map)
4288                         goto error;
4289         }
4290         for (i = 0; i < map2->n; ++i) {
4291                 map = isl_map_add_basic_map(map,
4292                                   isl_basic_map_copy(map2->p[i]));
4293                 if (!map)
4294                         goto error;
4295         }
4296         isl_map_free(map1);
4297         isl_map_free(map2);
4298         return map;
4299 error:
4300         isl_map_free(map);
4301         isl_map_free(map1);
4302         isl_map_free(map2);
4303         return NULL;
4304 }
4305
4306 struct isl_map *isl_map_union(struct isl_map *map1, struct isl_map *map2)
4307 {
4308         map1 = isl_map_union_disjoint(map1, map2);
4309         if (!map1)
4310                 return NULL;
4311         if (map1->n > 1)
4312                 ISL_F_CLR(map1, ISL_MAP_DISJOINT);
4313         return map1;
4314 }
4315
4316 struct isl_set *isl_set_union_disjoint(
4317                         struct isl_set *set1, struct isl_set *set2)
4318 {
4319         return (struct isl_set *)
4320                 isl_map_union_disjoint(
4321                         (struct isl_map *)set1, (struct isl_map *)set2);
4322 }
4323
4324 struct isl_set *isl_set_union(struct isl_set *set1, struct isl_set *set2)
4325 {
4326         return (struct isl_set *)
4327                 isl_map_union((struct isl_map *)set1, (struct isl_map *)set2);
4328 }
4329
4330 struct isl_map *isl_map_intersect_range(
4331                 struct isl_map *map, struct isl_set *set)
4332 {
4333         unsigned flags = 0;
4334         struct isl_map *result;
4335         int i, j;
4336
4337         if (!map || !set)
4338                 goto error;
4339
4340         if (ISL_F_ISSET(map, ISL_MAP_DISJOINT) &&
4341             ISL_F_ISSET(set, ISL_MAP_DISJOINT))
4342                 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
4343
4344         result = isl_map_alloc_dim(isl_dim_copy(map->dim),
4345                                         map->n * set->n, flags);
4346         if (!result)
4347                 goto error;
4348         for (i = 0; i < map->n; ++i)
4349                 for (j = 0; j < set->n; ++j) {
4350                         result = isl_map_add_basic_map(result,
4351                             isl_basic_map_intersect_range(
4352                                 isl_basic_map_copy(map->p[i]),
4353                                 isl_basic_set_copy(set->p[j])));
4354                         if (!result)
4355                                 goto error;
4356                 }
4357         isl_map_free(map);
4358         isl_set_free(set);
4359         return result;
4360 error:
4361         isl_map_free(map);
4362         isl_set_free(set);
4363         return NULL;
4364 }
4365
4366 struct isl_map *isl_map_intersect_domain(
4367                 struct isl_map *map, struct isl_set *set)
4368 {
4369         return isl_map_reverse(
4370                 isl_map_intersect_range(isl_map_reverse(map), set));
4371 }
4372
4373 struct isl_map *isl_map_apply_domain(
4374                 struct isl_map *map1, struct isl_map *map2)
4375 {
4376         if (!map1 || !map2)
4377                 goto error;
4378         map1 = isl_map_reverse(map1);
4379         map1 = isl_map_apply_range(map1, map2);
4380         return isl_map_reverse(map1);
4381 error:
4382         isl_map_free(map1);
4383         isl_map_free(map2);
4384         return NULL;
4385 }
4386
4387 struct isl_map *isl_map_apply_range(
4388                 struct isl_map *map1, struct isl_map *map2)
4389 {
4390         struct isl_dim *dim_result;
4391         struct isl_map *result;
4392         int i, j;
4393
4394         if (!map1 || !map2)
4395                 goto error;
4396
4397         dim_result = isl_dim_join(isl_dim_copy(map1->dim),
4398                                   isl_dim_copy(map2->dim));
4399
4400         result = isl_map_alloc_dim(dim_result, map1->n * map2->n, 0);
4401         if (!result)
4402                 goto error;
4403         for (i = 0; i < map1->n; ++i)
4404                 for (j = 0; j < map2->n; ++j) {
4405                         result = isl_map_add_basic_map(result,
4406                             isl_basic_map_apply_range(
4407                                 isl_basic_map_copy(map1->p[i]),
4408                                 isl_basic_map_copy(map2->p[j])));
4409                         if (!result)
4410                                 goto error;
4411                 }
4412         isl_map_free(map1);
4413         isl_map_free(map2);
4414         if (result && result->n <= 1)
4415                 ISL_F_SET(result, ISL_MAP_DISJOINT);
4416         return result;
4417 error:
4418         isl_map_free(map1);
4419         isl_map_free(map2);
4420         return NULL;
4421 }
4422
4423 /*
4424  * returns range - domain
4425  */
4426 struct isl_basic_set *isl_basic_map_deltas(struct isl_basic_map *bmap)
4427 {
4428         struct isl_basic_set *bset;
4429         unsigned dim;
4430         unsigned nparam;
4431         int i;
4432
4433         if (!bmap)
4434                 goto error;
4435         dim = isl_basic_map_n_in(bmap);
4436         nparam = isl_basic_map_n_param(bmap);
4437         isl_assert(bmap->ctx, dim == isl_basic_map_n_out(bmap), goto error);
4438         bset = isl_basic_set_from_basic_map(bmap);
4439         bset = isl_basic_set_cow(bset);
4440         bset = isl_basic_set_extend(bset, nparam, 3*dim, 0, dim, 0);
4441         bset = isl_basic_set_swap_vars(bset, 2*dim);
4442         for (i = 0; i < dim; ++i) {
4443                 int j = isl_basic_map_alloc_equality(
4444                                             (struct isl_basic_map *)bset);
4445                 if (j < 0)
4446                         goto error;
4447                 isl_seq_clr(bset->eq[j], 1 + isl_basic_set_total_dim(bset));
4448                 isl_int_set_si(bset->eq[j][1+nparam+i], 1);
4449                 isl_int_set_si(bset->eq[j][1+nparam+dim+i], 1);
4450                 isl_int_set_si(bset->eq[j][1+nparam+2*dim+i], -1);
4451         }
4452         return isl_basic_set_project_out(bset, isl_dim_set, dim, 2*dim);
4453 error:
4454         isl_basic_map_free(bmap);
4455         return NULL;
4456 }
4457
4458 /*
4459  * returns range - domain
4460  */
4461 struct isl_set *isl_map_deltas(struct isl_map *map)
4462 {
4463         int i;
4464         struct isl_set *result;
4465
4466         if (!map)
4467                 return NULL;
4468
4469         isl_assert(map->ctx, isl_map_n_in(map) == isl_map_n_out(map), goto error);
4470         result = isl_set_alloc(map->ctx, isl_map_n_param(map),
4471                                         isl_map_n_in(map), map->n, map->flags);
4472         if (!result)
4473                 goto error;
4474         for (i = 0; i < map->n; ++i)
4475                 result = isl_set_add_basic_set(result,
4476                           isl_basic_map_deltas(isl_basic_map_copy(map->p[i])));
4477         isl_map_free(map);
4478         return result;
4479 error:
4480         isl_map_free(map);
4481         return NULL;
4482 }
4483
4484 static struct isl_basic_map *basic_map_identity(struct isl_dim *dims)
4485 {
4486         struct isl_basic_map *bmap;
4487         unsigned nparam;
4488         unsigned dim;
4489         int i;
4490
4491         if (!dims)
4492                 return NULL;
4493
4494         nparam = dims->nparam;
4495         dim = dims->n_out;
4496         bmap = isl_basic_map_alloc_dim(dims, 0, dim, 0);
4497         if (!bmap)
4498                 goto error;
4499
4500         for (i = 0; i < dim; ++i) {
4501                 int j = isl_basic_map_alloc_equality(bmap);
4502                 if (j < 0)
4503                         goto error;
4504                 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
4505                 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
4506                 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], -1);
4507         }
4508         return isl_basic_map_finalize(bmap);
4509 error:
4510         isl_basic_map_free(bmap);
4511         return NULL;
4512 }
4513
4514 struct isl_basic_map *isl_basic_map_identity(struct isl_dim *set_dim)
4515 {
4516         struct isl_dim *dim = isl_dim_map(set_dim);
4517         if (!dim)
4518                 return NULL;
4519         return basic_map_identity(dim);
4520 }
4521
4522 struct isl_basic_map *isl_basic_map_identity_like(struct isl_basic_map *model)
4523 {
4524         if (!model || !model->dim)
4525                 return NULL;
4526         isl_assert(model->ctx,
4527                         model->dim->n_in == model->dim->n_out, return NULL);
4528         return basic_map_identity(isl_dim_copy(model->dim));
4529 }
4530
4531 static struct isl_map *map_identity(struct isl_dim *dim)
4532 {
4533         struct isl_map *map = isl_map_alloc_dim(dim, 1, ISL_MAP_DISJOINT);
4534         return isl_map_add_basic_map(map, basic_map_identity(isl_dim_copy(dim)));
4535 }
4536
4537 struct isl_map *isl_map_identity(struct isl_dim *set_dim)
4538 {
4539         struct isl_dim *dim = isl_dim_map(set_dim);
4540         if (!dim)
4541                 return NULL;
4542         return map_identity(dim);
4543 }
4544
4545 struct isl_map *isl_map_identity_like(struct isl_map *model)
4546 {
4547         if (!model || !model->dim)
4548                 return NULL;
4549         isl_assert(model->ctx,
4550                         model->dim->n_in == model->dim->n_out, return NULL);
4551         return map_identity(isl_dim_copy(model->dim));
4552 }
4553
4554 struct isl_map *isl_map_identity_like_basic_map(struct isl_basic_map *model)
4555 {
4556         if (!model || !model->dim)
4557                 return NULL;
4558         isl_assert(model->ctx,
4559                         model->dim->n_in == model->dim->n_out, return NULL);
4560         return map_identity(isl_dim_copy(model->dim));
4561 }
4562
4563 /* Construct a basic set with all set dimensions having only non-negative
4564  * values.
4565  */
4566 struct isl_basic_set *isl_basic_set_positive_orthant(struct isl_dim *dims)
4567 {
4568         int i;
4569         unsigned nparam;
4570         unsigned dim;
4571         struct isl_basic_set *bset;
4572
4573         if (!dims)
4574                 return NULL;
4575         nparam = dims->nparam;
4576         dim = dims->n_out;
4577         bset = isl_basic_set_alloc_dim(dims, 0, 0, dim);
4578         if (!bset)
4579                 return NULL;
4580         for (i = 0; i < dim; ++i) {
4581                 int k = isl_basic_set_alloc_inequality(bset);
4582                 if (k < 0)
4583                         goto error;
4584                 isl_seq_clr(bset->ineq[k], 1 + isl_basic_set_total_dim(bset));
4585                 isl_int_set_si(bset->ineq[k][1 + nparam + i], 1);
4586         }
4587         return bset;
4588 error:
4589         isl_basic_set_free(bset);
4590         return NULL;
4591 }
4592
4593 int isl_set_is_equal(struct isl_set *set1, struct isl_set *set2)
4594 {
4595         return isl_map_is_equal((struct isl_map *)set1, (struct isl_map *)set2);
4596 }
4597
4598 int isl_basic_map_is_subset(
4599                 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4600 {
4601         int is_subset;
4602         struct isl_map *map1;
4603         struct isl_map *map2;
4604
4605         if (!bmap1 || !bmap2)
4606                 return -1;
4607
4608         map1 = isl_map_from_basic_map(isl_basic_map_copy(bmap1));
4609         map2 = isl_map_from_basic_map(isl_basic_map_copy(bmap2));
4610
4611         is_subset = isl_map_is_subset(map1, map2);
4612
4613         isl_map_free(map1);
4614         isl_map_free(map2);
4615
4616         return is_subset;
4617 }
4618
4619 int isl_basic_map_is_equal(
4620                 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4621 {
4622         int is_subset;
4623
4624         if (!bmap1 || !bmap2)
4625                 return -1;
4626         is_subset = isl_basic_map_is_subset(bmap1, bmap2);
4627         if (is_subset != 1)
4628                 return is_subset;
4629         is_subset = isl_basic_map_is_subset(bmap2, bmap1);
4630         return is_subset;
4631 }
4632
4633 int isl_basic_set_is_equal(
4634                 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
4635 {
4636         return isl_basic_map_is_equal(
4637                 (struct isl_basic_map *)bset1, (struct isl_basic_map *)bset2);
4638 }
4639
4640 int isl_map_is_empty(struct isl_map *map)
4641 {
4642         int i;
4643         int is_empty;
4644
4645         if (!map)
4646                 return -1;
4647         for (i = 0; i < map->n; ++i) {
4648                 is_empty = isl_basic_map_is_empty(map->p[i]);
4649                 if (is_empty < 0)
4650                         return -1;
4651                 if (!is_empty)
4652                         return 0;
4653         }
4654         return 1;
4655 }
4656
4657 int isl_map_fast_is_empty(struct isl_map *map)
4658 {
4659         return map->n == 0;
4660 }
4661
4662 int isl_set_fast_is_empty(struct isl_set *set)
4663 {
4664         return set->n == 0;
4665 }
4666
4667 int isl_set_is_empty(struct isl_set *set)
4668 {
4669         return isl_map_is_empty((struct isl_map *)set);
4670 }
4671
4672 int isl_map_is_equal(struct isl_map *map1, struct isl_map *map2)
4673 {
4674         int is_subset;
4675
4676         if (!map1 || !map2)
4677                 return -1;
4678         is_subset = isl_map_is_subset(map1, map2);
4679         if (is_subset != 1)
4680                 return is_subset;
4681         is_subset = isl_map_is_subset(map2, map1);
4682         return is_subset;
4683 }
4684
4685 int isl_basic_map_is_strict_subset(
4686                 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4687 {
4688         int is_subset;
4689
4690         if (!bmap1 || !bmap2)
4691                 return -1;
4692         is_subset = isl_basic_map_is_subset(bmap1, bmap2);
4693         if (is_subset != 1)
4694                 return is_subset;
4695         is_subset = isl_basic_map_is_subset(bmap2, bmap1);
4696         if (is_subset == -1)
4697                 return is_subset;
4698         return !is_subset;
4699 }
4700
4701 int isl_map_is_strict_subset(struct isl_map *map1, struct isl_map *map2)
4702 {
4703         int is_subset;
4704
4705         if (!map1 || !map2)
4706                 return -1;
4707         is_subset = isl_map_is_subset(map1, map2);
4708         if (is_subset != 1)
4709                 return is_subset;
4710         is_subset = isl_map_is_subset(map2, map1);
4711         if (is_subset == -1)
4712                 return is_subset;
4713         return !is_subset;
4714 }
4715
4716 int isl_set_is_strict_subset(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
4717 {
4718         return isl_map_is_strict_subset((isl_map *)set1, (isl_map *)set2);
4719 }
4720
4721 int isl_basic_map_is_universe(struct isl_basic_map *bmap)
4722 {
4723         if (!bmap)
4724                 return -1;
4725         return bmap->n_eq == 0 && bmap->n_ineq == 0;
4726 }
4727
4728 int isl_basic_set_is_universe(struct isl_basic_set *bset)
4729 {
4730         if (!bset)
4731                 return -1;
4732         return bset->n_eq == 0 && bset->n_ineq == 0;
4733 }
4734
4735 int isl_map_fast_is_universe(__isl_keep isl_map *map)
4736 {
4737         if (!map)
4738                 return -1;
4739
4740         return map->n == 1 && isl_basic_map_is_universe(map->p[0]);
4741 }
4742
4743 int isl_basic_map_is_empty(struct isl_basic_map *bmap)
4744 {
4745         struct isl_basic_set *bset = NULL;
4746         struct isl_vec *sample = NULL;
4747         int empty;
4748         unsigned total;
4749
4750         if (!bmap)
4751                 return -1;
4752
4753         if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
4754                 return 1;
4755
4756         if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
4757                 struct isl_basic_map *copy = isl_basic_map_copy(bmap);
4758                 copy = isl_basic_map_convex_hull(copy);
4759                 empty = ISL_F_ISSET(copy, ISL_BASIC_MAP_EMPTY);
4760                 isl_basic_map_free(copy);
4761                 return empty;
4762         }
4763
4764         total = 1 + isl_basic_map_total_dim(bmap);
4765         if (bmap->sample && bmap->sample->size == total) {
4766                 int contains = isl_basic_map_contains(bmap, bmap->sample);
4767                 if (contains < 0)
4768                         return -1;
4769                 if (contains)
4770                         return 0;
4771         }
4772         isl_vec_free(bmap->sample);
4773         bmap->sample = NULL;
4774         bset = isl_basic_map_underlying_set(isl_basic_map_copy(bmap));
4775         if (!bset)
4776                 return -1;
4777         sample = isl_basic_set_sample_vec(bset);
4778         if (!sample)
4779                 return -1;
4780         empty = sample->size == 0;
4781         isl_vec_free(bmap->sample);
4782         bmap->sample = sample;
4783         if (empty)
4784                 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
4785
4786         return empty;
4787 }
4788
4789 int isl_basic_map_fast_is_empty(struct isl_basic_map *bmap)
4790 {
4791         if (!bmap)
4792                 return -1;
4793         return ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY);
4794 }
4795
4796 int isl_basic_set_fast_is_empty(struct isl_basic_set *bset)
4797 {
4798         if (!bset)
4799                 return -1;
4800         return ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY);
4801 }
4802
4803 int isl_basic_set_is_empty(struct isl_basic_set *bset)
4804 {
4805         return isl_basic_map_is_empty((struct isl_basic_map *)bset);
4806 }
4807
4808 struct isl_map *isl_basic_map_union(
4809         struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
4810 {
4811         struct isl_map *map;
4812         if (!bmap1 || !bmap2)
4813                 return NULL;
4814
4815         isl_assert(bmap1->ctx, isl_dim_equal(bmap1->dim, bmap2->dim), goto error);
4816
4817         map = isl_map_alloc_dim(isl_dim_copy(bmap1->dim), 2, 0);
4818         if (!map)
4819                 goto error;
4820         map = isl_map_add_basic_map(map, bmap1);
4821         map = isl_map_add_basic_map(map, bmap2);
4822         return map;
4823 error:
4824         isl_basic_map_free(bmap1);
4825         isl_basic_map_free(bmap2);
4826         return NULL;
4827 }
4828
4829 struct isl_set *isl_basic_set_union(
4830                 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
4831 {
4832         return (struct isl_set *)isl_basic_map_union(
4833                                             (struct isl_basic_map *)bset1,
4834                                             (struct isl_basic_map *)bset2);
4835 }
4836
4837 /* Order divs such that any div only depends on previous divs */
4838 struct isl_basic_map *isl_basic_map_order_divs(struct isl_basic_map *bmap)
4839 {
4840         int i;
4841         unsigned off = isl_dim_total(bmap->dim);
4842
4843         for (i = 0; i < bmap->n_div; ++i) {
4844                 int pos;
4845                 if (isl_int_is_zero(bmap->div[i][0]))
4846                         continue;
4847                 pos = isl_seq_first_non_zero(bmap->div[i]+1+1+off+i,
4848                                                             bmap->n_div-i);
4849                 if (pos == -1)
4850                         continue;
4851                 isl_basic_map_swap_div(bmap, i, i + pos);
4852                 --i;
4853         }
4854         return bmap;
4855 }
4856
4857 struct isl_basic_set *isl_basic_set_order_divs(struct isl_basic_set *bset)
4858 {
4859         return (struct isl_basic_set *)
4860                 isl_basic_map_order_divs((struct isl_basic_map *)bset);
4861 }
4862
4863 /* Look for a div in dst that corresponds to the div "div" in src.
4864  * The divs before "div" in src and dst are assumed to be the same.
4865  * 
4866  * Returns -1 if no corresponding div was found and the position
4867  * of the corresponding div in dst otherwise.
4868  */
4869 static int find_div(struct isl_basic_map *dst,
4870                         struct isl_basic_map *src, unsigned div)
4871 {
4872         int i;
4873
4874         unsigned total = isl_dim_total(src->dim);
4875
4876         isl_assert(dst->ctx, div <= dst->n_div, return -1);
4877         for (i = div; i < dst->n_div; ++i)
4878                 if (isl_seq_eq(dst->div[i], src->div[div], 1+1+total+div) &&
4879                     isl_seq_first_non_zero(dst->div[i]+1+1+total+div,
4880                                                 dst->n_div - div) == -1)
4881                         return i;
4882         return -1;
4883 }
4884
4885 struct isl_basic_map *isl_basic_map_align_divs(
4886                 struct isl_basic_map *dst, struct isl_basic_map *src)
4887 {
4888         int i;
4889         unsigned total = isl_dim_total(src->dim);
4890
4891         if (!dst || !src)
4892                 goto error;
4893
4894         if (src->n_div == 0)
4895                 return dst;
4896
4897         for (i = 0; i < src->n_div; ++i)
4898                 isl_assert(src->ctx, !isl_int_is_zero(src->div[i][0]), goto error);
4899
4900         src = isl_basic_map_order_divs(src);
4901         dst = isl_basic_map_cow(dst);
4902         dst = isl_basic_map_extend_dim(dst, isl_dim_copy(dst->dim),
4903                         src->n_div, 0, 2 * src->n_div);
4904         if (!dst)
4905                 return NULL;
4906         for (i = 0; i < src->n_div; ++i) {
4907                 int j = find_div(dst, src, i);
4908                 if (j < 0) {
4909                         j = isl_basic_map_alloc_div(dst);
4910                         if (j < 0)
4911                                 goto error;
4912                         isl_seq_cpy(dst->div[j], src->div[i], 1+1+total+i);
4913                         isl_seq_clr(dst->div[j]+1+1+total+i, dst->n_div - i);
4914                         if (isl_basic_map_add_div_constraints(dst, j) < 0)
4915                                 goto error;
4916                 }
4917                 if (j != i)
4918                         isl_basic_map_swap_div(dst, i, j);
4919         }
4920         return dst;
4921 error:
4922         isl_basic_map_free(dst);
4923         return NULL;
4924 }
4925
4926 struct isl_basic_set *isl_basic_set_align_divs(
4927                 struct isl_basic_set *dst, struct isl_basic_set *src)
4928 {
4929         return (struct isl_basic_set *)isl_basic_map_align_divs(
4930                 (struct isl_basic_map *)dst, (struct isl_basic_map *)src);
4931 }
4932
4933 struct isl_map *isl_map_align_divs(struct isl_map *map)
4934 {
4935         int i;
4936
4937         if (!map)
4938                 return NULL;
4939         if (map->n == 0)
4940                 return map;
4941         map = isl_map_compute_divs(map);
4942         map = isl_map_cow(map);
4943         if (!map)
4944                 return NULL;
4945
4946         for (i = 1; i < map->n; ++i)
4947                 map->p[0] = isl_basic_map_align_divs(map->p[0], map->p[i]);
4948         for (i = 1; i < map->n; ++i)
4949                 map->p[i] = isl_basic_map_align_divs(map->p[i], map->p[0]);
4950
4951         ISL_F_CLR(map, ISL_MAP_NORMALIZED);
4952         return map;
4953 }
4954
4955 struct isl_set *isl_set_align_divs(struct isl_set *set)
4956 {
4957         return (struct isl_set *)isl_map_align_divs((struct isl_map *)set);
4958 }
4959
4960 struct isl_set *isl_set_apply(struct isl_set *set, struct isl_map *map)
4961 {
4962         if (!set || !map)
4963                 goto error;
4964         isl_assert(set->ctx, isl_map_compatible_domain(map, set), goto error);
4965         map = isl_map_intersect_domain(map, set);
4966         set = isl_map_range(map);
4967         return set;
4968 error:
4969         isl_set_free(set);
4970         isl_map_free(map);
4971         return NULL;
4972 }
4973
4974 /* There is no need to cow as removing empty parts doesn't change
4975  * the meaning of the set.
4976  */
4977 struct isl_map *isl_map_remove_empty_parts(struct isl_map *map)
4978 {
4979         int i;
4980
4981         if (!map)
4982                 return NULL;
4983
4984         for (i = map->n-1; i >= 0; --i) {
4985                 if (!ISL_F_ISSET(map->p[i], ISL_BASIC_MAP_EMPTY))
4986                         continue;
4987                 isl_basic_map_free(map->p[i]);
4988                 if (i != map->n-1) {
4989                         ISL_F_CLR(map, ISL_MAP_NORMALIZED);
4990                         map->p[i] = map->p[map->n-1];
4991                 }
4992                 map->n--;
4993         }
4994
4995         return map;
4996 }
4997
4998 struct isl_set *isl_set_remove_empty_parts(struct isl_set *set)
4999 {
5000         return (struct isl_set *)
5001                 isl_map_remove_empty_parts((struct isl_map *)set);
5002 }
5003
5004 struct isl_basic_map *isl_map_copy_basic_map(struct isl_map *map)
5005 {
5006         struct isl_basic_map *bmap;
5007         if (!map || map->n == 0)
5008                 return NULL;
5009         bmap = map->p[map->n-1];
5010         isl_assert(map->ctx, ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL), return NULL);
5011         return isl_basic_map_copy(bmap);
5012 }
5013
5014 struct isl_basic_set *isl_set_copy_basic_set(struct isl_set *set)
5015 {
5016         return (struct isl_basic_set *)
5017                 isl_map_copy_basic_map((struct isl_map *)set);
5018 }
5019
5020 __isl_give isl_map *isl_map_drop_basic_map(__isl_take isl_map *map,
5021                                                 __isl_keep isl_basic_map *bmap)
5022 {
5023         int i;
5024
5025         if (!map || !bmap)
5026                 goto error;
5027         for (i = map->n-1; i >= 0; --i) {
5028                 if (map->p[i] != bmap)
5029                         continue;
5030                 map = isl_map_cow(map);
5031                 if (!map)
5032                         goto error;
5033                 isl_basic_map_free(map->p[i]);
5034                 if (i != map->n-1) {
5035                         ISL_F_CLR(map, ISL_SET_NORMALIZED);
5036                         map->p[i] = map->p[map->n-1];
5037                 }
5038                 map->n--;
5039                 return map;
5040         }
5041         return map;
5042 error:
5043         isl_map_free(map);
5044         return NULL;
5045 }
5046
5047 struct isl_set *isl_set_drop_basic_set(struct isl_set *set,
5048                                                 struct isl_basic_set *bset)
5049 {
5050         return (struct isl_set *)isl_map_drop_basic_map((struct isl_map *)set,
5051                                                 (struct isl_basic_map *)bset);
5052 }
5053
5054 /* Given two basic sets bset1 and bset2, compute the maximal difference
5055  * between the values of dimension pos in bset1 and those in bset2
5056  * for any common value of the parameters and dimensions preceding pos.
5057  */
5058 static enum isl_lp_result basic_set_maximal_difference_at(
5059         __isl_keep isl_basic_set *bset1, __isl_keep isl_basic_set *bset2,
5060         int pos, isl_int *opt)
5061 {
5062         struct isl_dim *dims;
5063         struct isl_basic_map *bmap1 = NULL;
5064         struct isl_basic_map *bmap2 = NULL;
5065         struct isl_ctx *ctx;
5066         struct isl_vec *obj;
5067         unsigned total;
5068         unsigned nparam;
5069         unsigned dim1, dim2;
5070         enum isl_lp_result res;
5071
5072         if (!bset1 || !bset2)
5073                 return isl_lp_error;
5074
5075         nparam = isl_basic_set_n_param(bset1);
5076         dim1 = isl_basic_set_n_dim(bset1);
5077         dim2 = isl_basic_set_n_dim(bset2);
5078         dims = isl_dim_alloc(bset1->ctx, nparam, pos, dim1 - pos);
5079         bmap1 = isl_basic_map_from_basic_set(isl_basic_set_copy(bset1), dims);
5080         dims = isl_dim_alloc(bset2->ctx, nparam, pos, dim2 - pos);
5081         bmap2 = isl_basic_map_from_basic_set(isl_basic_set_copy(bset2), dims);
5082         if (!bmap1 || !bmap2)
5083                 goto error;
5084         bmap1 = isl_basic_map_cow(bmap1);
5085         bmap1 = isl_basic_map_extend(bmap1, nparam,
5086                         pos, (dim1 - pos) + (dim2 - pos),
5087                         bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
5088         bmap1 = add_constraints(bmap1, bmap2, 0, dim1 - pos);
5089         if (!bmap1)
5090                 goto error;
5091         total = isl_basic_map_total_dim(bmap1);
5092         ctx = bmap1->ctx;
5093         obj = isl_vec_alloc(ctx, 1 + total);
5094         isl_seq_clr(obj->block.data, 1 + total);
5095         isl_int_set_si(obj->block.data[1+nparam+pos], 1);
5096         isl_int_set_si(obj->block.data[1+nparam+pos+(dim1-pos)], -1);
5097         if (!obj)
5098                 goto error;
5099         res = isl_basic_map_solve_lp(bmap1, 1, obj->block.data, ctx->one,
5100                                         opt, NULL, NULL);
5101         isl_basic_map_free(bmap1);
5102         isl_vec_free(obj);
5103         return res;
5104 error:
5105         isl_basic_map_free(bmap1);
5106         isl_basic_map_free(bmap2);
5107         return isl_lp_error;
5108 }
5109
5110 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
5111  * for any common value of the parameters and dimensions preceding pos
5112  * in both basic sets, the values of dimension pos in bset1 are
5113  * smaller or larger than those in bset2.
5114  *
5115  * Returns
5116  *       1 if bset1 follows bset2
5117  *      -1 if bset1 precedes bset2
5118  *       0 if bset1 and bset2 are incomparable
5119  *      -2 if some error occurred.
5120  */
5121 int isl_basic_set_compare_at(struct isl_basic_set *bset1,
5122         struct isl_basic_set *bset2, int pos)
5123 {
5124         isl_int opt;
5125         enum isl_lp_result res;
5126         int cmp;
5127
5128         isl_int_init(opt);
5129
5130         res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
5131
5132         if (res == isl_lp_empty)
5133                 cmp = 0;
5134         else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
5135                   res == isl_lp_unbounded)
5136                 cmp = 1;
5137         else if (res == isl_lp_ok && isl_int_is_neg(opt))
5138                 cmp = -1;
5139         else
5140                 cmp = -2;
5141
5142         isl_int_clear(opt);
5143         return cmp;
5144 }
5145
5146 /* Given two basic sets bset1 and bset2, check whether
5147  * for any common value of the parameters and dimensions preceding pos
5148  * there is a value of dimension pos in bset1 that is larger
5149  * than a value of the same dimension in bset2.
5150  *
5151  * Return
5152  *       1 if there exists such a pair
5153  *       0 if there is no such pair, but there is a pair of equal values
5154  *      -1 otherwise
5155  *      -2 if some error occurred.
5156  */
5157 int isl_basic_set_follows_at(__isl_keep isl_basic_set *bset1,
5158         __isl_keep isl_basic_set *bset2, int pos)
5159 {
5160         isl_int opt;
5161         enum isl_lp_result res;
5162         int cmp;
5163
5164         isl_int_init(opt);
5165
5166         res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
5167
5168         if (res == isl_lp_empty)
5169                 cmp = -1;
5170         else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
5171                   res == isl_lp_unbounded)
5172                 cmp = 1;
5173         else if (res == isl_lp_ok && isl_int_is_neg(opt))
5174                 cmp = -1;
5175         else if (res == isl_lp_ok)
5176                 cmp = 0;
5177         else
5178                 cmp = -2;
5179
5180         isl_int_clear(opt);
5181         return cmp;
5182 }
5183
5184 /* Given two sets set1 and set2, check whether
5185  * for any common value of the parameters and dimensions preceding pos
5186  * there is a value of dimension pos in set1 that is larger
5187  * than a value of the same dimension in set2.
5188  *
5189  * Return
5190  *       1 if there exists such a pair
5191  *       0 if there is no such pair, but there is a pair of equal values
5192  *      -1 otherwise
5193  *      -2 if some error occurred.
5194  */
5195 int isl_set_follows_at(__isl_keep isl_set *set1,
5196         __isl_keep isl_set *set2, int pos)
5197 {
5198         int i, j;
5199         int follows = -1;
5200
5201         if (!set1 || !set2)
5202                 return -2;
5203
5204         for (i = 0; i < set1->n; ++i)
5205                 for (j = 0; j < set2->n; ++j) {
5206                         int f;
5207                         f = isl_basic_set_follows_at(set1->p[i], set2->p[j], pos);
5208                         if (f == 1 || f == -2)
5209                                 return f;
5210                         if (f > follows)
5211                                 follows = f;
5212                 }
5213
5214         return follows;
5215 }
5216
5217 static int isl_basic_map_fast_has_fixed_var(struct isl_basic_map *bmap,
5218         unsigned pos, isl_int *val)
5219 {
5220         int i;
5221         int d;
5222         unsigned total;
5223
5224         if (!bmap)
5225                 return -1;
5226         total = isl_basic_map_total_dim(bmap);
5227         for (i = 0, d = total-1; i < bmap->n_eq && d+1 > pos; ++i) {
5228                 for (; d+1 > pos; --d)
5229                         if (!isl_int_is_zero(bmap->eq[i][1+d]))
5230                                 break;
5231                 if (d != pos)
5232                         continue;
5233                 if (isl_seq_first_non_zero(bmap->eq[i]+1, d) != -1)
5234                         return 0;
5235                 if (isl_seq_first_non_zero(bmap->eq[i]+1+d+1, total-d-1) != -1)
5236                         return 0;
5237                 if (!isl_int_is_one(bmap->eq[i][1+d]))
5238                         return 0;
5239                 if (val)
5240                         isl_int_neg(*val, bmap->eq[i][0]);
5241                 return 1;
5242         }
5243         return 0;
5244 }
5245
5246 static int isl_map_fast_has_fixed_var(struct isl_map *map,
5247         unsigned pos, isl_int *val)
5248 {
5249         int i;
5250         isl_int v;
5251         isl_int tmp;
5252         int fixed;
5253
5254         if (!map)
5255                 return -1;
5256         if (map->n == 0)
5257                 return 0;
5258         if (map->n == 1)
5259                 return isl_basic_map_fast_has_fixed_var(map->p[0], pos, val); 
5260         isl_int_init(v);
5261         isl_int_init(tmp);
5262         fixed = isl_basic_map_fast_has_fixed_var(map->p[0], pos, &v); 
5263         for (i = 1; fixed == 1 && i < map->n; ++i) {
5264                 fixed = isl_basic_map_fast_has_fixed_var(map->p[i], pos, &tmp); 
5265                 if (fixed == 1 && isl_int_ne(tmp, v))
5266                         fixed = 0;
5267         }
5268         if (val)
5269                 isl_int_set(*val, v);
5270         isl_int_clear(tmp);
5271         isl_int_clear(v);
5272         return fixed;
5273 }
5274
5275 static int isl_basic_set_fast_has_fixed_var(struct isl_basic_set *bset,
5276         unsigned pos, isl_int *val)
5277 {
5278         return isl_basic_map_fast_has_fixed_var((struct isl_basic_map *)bset,
5279                                                 pos, val);
5280 }
5281
5282 static int isl_set_fast_has_fixed_var(struct isl_set *set, unsigned pos,
5283         isl_int *val)
5284 {
5285         return isl_map_fast_has_fixed_var((struct isl_map *)set, pos, val);
5286 }
5287
5288 int isl_basic_map_fast_is_fixed(struct isl_basic_map *bmap,
5289         enum isl_dim_type type, unsigned pos, isl_int *val)
5290 {
5291         if (pos >= isl_basic_map_dim(bmap, type))
5292                 return -1;
5293         return isl_basic_map_fast_has_fixed_var(bmap,
5294                 isl_basic_map_offset(bmap, type) - 1 + pos, val);
5295 }
5296
5297 int isl_map_fast_is_fixed(struct isl_map *map,
5298         enum isl_dim_type type, unsigned pos, isl_int *val)
5299 {
5300         if (pos >= isl_map_dim(map, type))
5301                 return -1;
5302         return isl_map_fast_has_fixed_var(map,
5303                 map_offset(map, type) - 1 + pos, val);
5304 }
5305
5306 /* Check if dimension dim has fixed value and if so and if val is not NULL,
5307  * then return this fixed value in *val.
5308  */
5309 int isl_basic_set_fast_dim_is_fixed(struct isl_basic_set *bset, unsigned dim,
5310         isl_int *val)
5311 {
5312         return isl_basic_set_fast_has_fixed_var(bset,
5313                                         isl_basic_set_n_param(bset) + dim, val);
5314 }
5315
5316 /* Check if dimension dim has fixed value and if so and if val is not NULL,
5317  * then return this fixed value in *val.
5318  */
5319 int isl_set_fast_dim_is_fixed(struct isl_set *set, unsigned dim, isl_int *val)
5320 {
5321         return isl_set_fast_has_fixed_var(set, isl_set_n_param(set) + dim, val);
5322 }
5323
5324 /* Check if input variable in has fixed value and if so and if val is not NULL,
5325  * then return this fixed value in *val.
5326  */
5327 int isl_map_fast_input_is_fixed(struct isl_map *map, unsigned in, isl_int *val)
5328 {
5329         return isl_map_fast_has_fixed_var(map, isl_map_n_param(map) + in, val);
5330 }
5331
5332 /* Check if dimension dim has an (obvious) fixed lower bound and if so
5333  * and if val is not NULL, then return this lower bound in *val.
5334  */
5335 int isl_basic_set_fast_dim_has_fixed_lower_bound(struct isl_basic_set *bset,
5336         unsigned dim, isl_int *val)
5337 {
5338         int i, i_eq = -1, i_ineq = -1;
5339         isl_int *c;
5340         unsigned total;
5341         unsigned nparam;
5342
5343         if (!bset)
5344                 return -1;
5345         total = isl_basic_set_total_dim(bset);
5346         nparam = isl_basic_set_n_param(bset);
5347         for (i = 0; i < bset->n_eq; ++i) {
5348                 if (isl_int_is_zero(bset->eq[i][1+nparam+dim]))
5349                         continue;
5350                 if (i_eq != -1)
5351                         return 0;
5352                 i_eq = i;
5353         }
5354         for (i = 0; i < bset->n_ineq; ++i) {
5355                 if (!isl_int_is_pos(bset->ineq[i][1+nparam+dim]))
5356                         continue;
5357                 if (i_eq != -1 || i_ineq != -1)
5358                         return 0;
5359                 i_ineq = i;
5360         }
5361         if (i_eq == -1 && i_ineq == -1)
5362                 return 0;
5363         c = i_eq != -1 ? bset->eq[i_eq] : bset->ineq[i_ineq];
5364         /* The coefficient should always be one due to normalization. */
5365         if (!isl_int_is_one(c[1+nparam+dim]))
5366                 return 0;
5367         if (isl_seq_first_non_zero(c+1, nparam+dim) != -1)
5368                 return 0;
5369         if (isl_seq_first_non_zero(c+1+nparam+dim+1,
5370                                         total - nparam - dim - 1) != -1)
5371                 return 0;
5372         if (val)
5373                 isl_int_neg(*val, c[0]);
5374         return 1;
5375 }
5376
5377 int isl_set_fast_dim_has_fixed_lower_bound(struct isl_set *set,
5378         unsigned dim, isl_int *val)
5379 {
5380         int i;
5381         isl_int v;
5382         isl_int tmp;
5383         int fixed;
5384
5385         if (!set)
5386                 return -1;
5387         if (set->n == 0)
5388                 return 0;
5389         if (set->n == 1)
5390                 return isl_basic_set_fast_dim_has_fixed_lower_bound(set->p[0],
5391                                                                 dim, val);
5392         isl_int_init(v);
5393         isl_int_init(tmp);
5394         fixed = isl_basic_set_fast_dim_has_fixed_lower_bound(set->p[0],
5395                                                                 dim, &v);
5396         for (i = 1; fixed == 1 && i < set->n; ++i) {
5397                 fixed = isl_basic_set_fast_dim_has_fixed_lower_bound(set->p[i],
5398                                                                 dim, &tmp);
5399                 if (fixed == 1 && isl_int_ne(tmp, v))
5400                         fixed = 0;
5401         }
5402         if (val)
5403                 isl_int_set(*val, v);
5404         isl_int_clear(tmp);
5405         isl_int_clear(v);
5406         return fixed;
5407 }
5408
5409 struct constraint {
5410         unsigned        size;
5411         isl_int         *c;
5412 };
5413
5414 static int qsort_constraint_cmp(const void *p1, const void *p2)
5415 {
5416         const struct constraint *c1 = (const struct constraint *)p1;
5417         const struct constraint *c2 = (const struct constraint *)p2;
5418         unsigned size = isl_min(c1->size, c2->size);
5419         return isl_seq_cmp(c1->c, c2->c, size);
5420 }
5421
5422 static struct isl_basic_map *isl_basic_map_sort_constraints(
5423         struct isl_basic_map *bmap)
5424 {
5425         int i;
5426         struct constraint *c;
5427         unsigned total;
5428
5429         if (!bmap)
5430                 return NULL;
5431         total = isl_basic_map_total_dim(bmap);
5432         c = isl_alloc_array(bmap->ctx, struct constraint, bmap->n_ineq);
5433         if (!c)
5434                 goto error;
5435         for (i = 0; i < bmap->n_ineq; ++i) {
5436                 c[i].size = total;
5437                 c[i].c = bmap->ineq[i];
5438         }
5439         qsort(c, bmap->n_ineq, sizeof(struct constraint), qsort_constraint_cmp);
5440         for (i = 0; i < bmap->n_ineq; ++i)
5441                 bmap->ineq[i] = c[i].c;
5442         free(c);
5443         return bmap;
5444 error:
5445         isl_basic_map_free(bmap);
5446         return NULL;
5447 }
5448
5449 struct isl_basic_map *isl_basic_map_normalize(struct isl_basic_map *bmap)
5450 {
5451         if (!bmap)
5452                 return NULL;
5453         if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
5454                 return bmap;
5455         bmap = isl_basic_map_convex_hull(bmap);
5456         bmap = isl_basic_map_sort_constraints(bmap);
5457         ISL_F_SET(bmap, ISL_BASIC_MAP_NORMALIZED);
5458         return bmap;
5459 }
5460
5461 struct isl_basic_set *isl_basic_set_normalize(struct isl_basic_set *bset)
5462 {
5463         return (struct isl_basic_set *)isl_basic_map_normalize(
5464                                                 (struct isl_basic_map *)bset);
5465 }
5466
5467 static int isl_basic_map_fast_cmp(const struct isl_basic_map *bmap1,
5468         const struct isl_basic_map *bmap2)
5469 {
5470         int i, cmp;
5471         unsigned total;
5472
5473         if (bmap1 == bmap2)
5474                 return 0;
5475         if (isl_basic_map_n_param(bmap1) != isl_basic_map_n_param(bmap2))
5476                 return isl_basic_map_n_param(bmap1) - isl_basic_map_n_param(bmap2);
5477         if (isl_basic_map_n_in(bmap1) != isl_basic_map_n_in(bmap2))
5478                 return isl_basic_map_n_out(bmap1) - isl_basic_map_n_out(bmap2);
5479         if (isl_basic_map_n_out(bmap1) != isl_basic_map_n_out(bmap2))
5480                 return isl_basic_map_n_out(bmap1) - isl_basic_map_n_out(bmap2);
5481         if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY) &&
5482             ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
5483                 return 0;
5484         if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY))
5485                 return 1;
5486         if (ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
5487                 return -1;
5488         if (bmap1->n_eq != bmap2->n_eq)
5489                 return bmap1->n_eq - bmap2->n_eq;
5490         if (bmap1->n_ineq != bmap2->n_ineq)
5491                 return bmap1->n_ineq - bmap2->n_ineq;
5492         if (bmap1->n_div != bmap2->n_div)
5493                 return bmap1->n_div - bmap2->n_div;
5494         total = isl_basic_map_total_dim(bmap1);
5495         for (i = 0; i < bmap1->n_eq; ++i) {
5496                 cmp = isl_seq_cmp(bmap1->eq[i], bmap2->eq[i], 1+total);
5497                 if (cmp)
5498                         return cmp;
5499         }
5500         for (i = 0; i < bmap1->n_ineq; ++i) {
5501                 cmp = isl_seq_cmp(bmap1->ineq[i], bmap2->ineq[i], 1+total);
5502                 if (cmp)
5503                         return cmp;
5504         }
5505         for (i = 0; i < bmap1->n_div; ++i) {
5506                 cmp = isl_seq_cmp(bmap1->div[i], bmap2->div[i], 1+1+total);
5507                 if (cmp)
5508                         return cmp;
5509         }
5510         return 0;
5511 }
5512
5513 static int isl_basic_map_fast_is_equal(struct isl_basic_map *bmap1,
5514         struct isl_basic_map *bmap2)
5515 {
5516         return isl_basic_map_fast_cmp(bmap1, bmap2) == 0;
5517 }
5518
5519 static int qsort_bmap_cmp(const void *p1, const void *p2)
5520 {
5521         const struct isl_basic_map *bmap1 = *(const struct isl_basic_map **)p1;
5522         const struct isl_basic_map *bmap2 = *(const struct isl_basic_map **)p2;
5523
5524         return isl_basic_map_fast_cmp(bmap1, bmap2);
5525 }
5526
5527 /* We normalize in place, but if anything goes wrong we need
5528  * to return NULL, so we need to make sure we don't change the
5529  * meaning of any possible other copies of map.
5530  */
5531 struct isl_map *isl_map_normalize(struct isl_map *map)
5532 {
5533         int i, j;
5534         struct isl_basic_map *bmap;
5535
5536         if (!map)
5537                 return NULL;
5538         if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED))
5539                 return map;
5540         for (i = 0; i < map->n; ++i) {
5541                 bmap = isl_basic_map_normalize(isl_basic_map_copy(map->p[i]));
5542                 if (!bmap)
5543                         goto error;
5544                 isl_basic_map_free(map->p[i]);
5545                 map->p[i] = bmap;
5546         }
5547         qsort(map->p, map->n, sizeof(struct isl_basic_map *), qsort_bmap_cmp);
5548         ISL_F_SET(map, ISL_MAP_NORMALIZED);
5549         map = isl_map_remove_empty_parts(map);
5550         if (!map)
5551                 return NULL;
5552         for (i = map->n - 1; i >= 1; --i) {
5553                 if (!isl_basic_map_fast_is_equal(map->p[i-1], map->p[i]))
5554                         continue;
5555                 isl_basic_map_free(map->p[i-1]);
5556                 for (j = i; j < map->n; ++j)
5557                         map->p[j-1] = map->p[j];
5558                 map->n--;
5559         }
5560         return map;
5561 error:
5562         isl_map_free(map);
5563         return NULL;
5564
5565 }
5566
5567 struct isl_set *isl_set_normalize(struct isl_set *set)
5568 {
5569         return (struct isl_set *)isl_map_normalize((struct isl_map *)set);
5570 }
5571
5572 int isl_map_fast_is_equal(struct isl_map *map1, struct isl_map *map2)
5573 {
5574         int i;
5575         int equal;
5576
5577         if (!map1 || !map2)
5578                 return -1;
5579
5580         if (map1 == map2)
5581                 return 1;
5582         if (!isl_dim_equal(map1->dim, map2->dim))
5583                 return 0;
5584
5585         map1 = isl_map_copy(map1);
5586         map2 = isl_map_copy(map2);
5587         map1 = isl_map_normalize(map1);
5588         map2 = isl_map_normalize(map2);
5589         if (!map1 || !map2)
5590                 goto error;
5591         equal = map1->n == map2->n;
5592         for (i = 0; equal && i < map1->n; ++i) {
5593                 equal = isl_basic_map_fast_is_equal(map1->p[i], map2->p[i]);
5594                 if (equal < 0)
5595                         goto error;
5596         }
5597         isl_map_free(map1);
5598         isl_map_free(map2);
5599         return equal;
5600 error:
5601         isl_map_free(map1);
5602         isl_map_free(map2);
5603         return -1;
5604 }
5605
5606 int isl_set_fast_is_equal(struct isl_set *set1, struct isl_set *set2)
5607 {
5608         return isl_map_fast_is_equal((struct isl_map *)set1,
5609                                                 (struct isl_map *)set2);
5610 }
5611
5612 /* Return an interval that ranges from min to max (inclusive)
5613  */
5614 struct isl_basic_set *isl_basic_set_interval(struct isl_ctx *ctx,
5615         isl_int min, isl_int max)
5616 {
5617         int k;
5618         struct isl_basic_set *bset = NULL;
5619
5620         bset = isl_basic_set_alloc(ctx, 0, 1, 0, 0, 2);
5621         if (!bset)
5622                 goto error;
5623
5624         k = isl_basic_set_alloc_inequality(bset);
5625         if (k < 0)
5626                 goto error;
5627         isl_int_set_si(bset->ineq[k][1], 1);
5628         isl_int_neg(bset->ineq[k][0], min);
5629
5630         k = isl_basic_set_alloc_inequality(bset);
5631         if (k < 0)
5632                 goto error;
5633         isl_int_set_si(bset->ineq[k][1], -1);
5634         isl_int_set(bset->ineq[k][0], max);
5635
5636         return bset;
5637 error:
5638         isl_basic_set_free(bset);
5639         return NULL;
5640 }
5641
5642 /* Return the Cartesian product of the basic sets in list (in the given order).
5643  */
5644 struct isl_basic_set *isl_basic_set_product(struct isl_basic_set_list *list)
5645 {
5646         int i;
5647         unsigned dim;
5648         unsigned nparam;
5649         unsigned extra;
5650         unsigned n_eq;
5651         unsigned n_ineq;
5652         struct isl_basic_set *product = NULL;
5653
5654         if (!list)
5655                 goto error;
5656         isl_assert(list->ctx, list->n > 0, goto error);
5657         isl_assert(list->ctx, list->p[0], goto error);
5658         nparam = isl_basic_set_n_param(list->p[0]);
5659         dim = isl_basic_set_n_dim(list->p[0]);
5660         extra = list->p[0]->n_div;
5661         n_eq = list->p[0]->n_eq;
5662         n_ineq = list->p[0]->n_ineq;
5663         for (i = 1; i < list->n; ++i) {
5664                 isl_assert(list->ctx, list->p[i], goto error);
5665                 isl_assert(list->ctx,
5666                     nparam == isl_basic_set_n_param(list->p[i]), goto error);
5667                 dim += isl_basic_set_n_dim(list->p[i]);
5668                 extra += list->p[i]->n_div;
5669                 n_eq += list->p[i]->n_eq;
5670                 n_ineq += list->p[i]->n_ineq;
5671         }
5672         product = isl_basic_set_alloc(list->ctx, nparam, dim, extra,
5673                                         n_eq, n_ineq);
5674         if (!product)
5675                 goto error;
5676         dim = 0;
5677         for (i = 0; i < list->n; ++i) {
5678                 isl_basic_set_add_constraints(product,
5679                                         isl_basic_set_copy(list->p[i]), dim);
5680                 dim += isl_basic_set_n_dim(list->p[i]);
5681         }
5682         isl_basic_set_list_free(list);
5683         return product;
5684 error:
5685         isl_basic_set_free(product);
5686         isl_basic_set_list_free(list);
5687         return NULL;
5688 }
5689
5690 struct isl_basic_map *isl_basic_map_product(
5691                 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
5692 {
5693         struct isl_dim *dim_result = NULL;
5694         struct isl_basic_map *bmap;
5695         unsigned in1, in2, out1, out2, nparam, total, pos;
5696         struct isl_dim_map *dim_map1, *dim_map2;
5697
5698         if (!bmap1 || !bmap2)
5699                 goto error;
5700
5701         isl_assert(bmap1->ctx, isl_dim_match(bmap1->dim, isl_dim_param,
5702                                      bmap2->dim, isl_dim_param), goto error);
5703         dim_result = isl_dim_product(isl_dim_copy(bmap1->dim),
5704                                                    isl_dim_copy(bmap2->dim));
5705
5706         in1 = isl_basic_map_n_in(bmap1);
5707         in2 = isl_basic_map_n_in(bmap2);
5708         out1 = isl_basic_map_n_out(bmap1);
5709         out2 = isl_basic_map_n_out(bmap2);
5710         nparam = isl_basic_map_n_param(bmap1);
5711
5712         total = nparam + in1 + in2 + out1 + out2 + bmap1->n_div + bmap2->n_div;
5713         dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
5714         dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
5715         isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
5716         isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
5717         isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
5718         isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
5719         isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
5720         isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
5721         isl_dim_map_div(dim_map1, bmap1, pos += out2);
5722         isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
5723
5724         bmap = isl_basic_map_alloc_dim(dim_result,
5725                         bmap1->n_div + bmap2->n_div,
5726                         bmap1->n_eq + bmap2->n_eq,
5727                         bmap1->n_ineq + bmap2->n_ineq);
5728         bmap = add_constraints_dim_map(bmap, bmap1, dim_map1);
5729         bmap = add_constraints_dim_map(bmap, bmap2, dim_map2);
5730         bmap = isl_basic_map_simplify(bmap);
5731         return isl_basic_map_finalize(bmap);
5732 error:
5733         isl_basic_map_free(bmap1);
5734         isl_basic_map_free(bmap2);
5735         return NULL;
5736 }
5737
5738 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
5739  */
5740 struct isl_map *isl_map_product(struct isl_map *map1, struct isl_map *map2)
5741 {
5742         unsigned flags = 0;
5743         struct isl_map *result;
5744         int i, j;
5745
5746         if (!map1 || !map2)
5747                 goto error;
5748
5749         isl_assert(map1->ctx, isl_dim_match(map1->dim, isl_dim_param,
5750                                          map2->dim, isl_dim_param), goto error);
5751
5752         if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
5753             ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
5754                 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
5755
5756         result = isl_map_alloc_dim(isl_dim_product(isl_dim_copy(map1->dim),
5757                                                    isl_dim_copy(map2->dim)),
5758                                 map1->n * map2->n, flags);
5759         if (!result)
5760                 goto error;
5761         for (i = 0; i < map1->n; ++i)
5762                 for (j = 0; j < map2->n; ++j) {
5763                         struct isl_basic_map *part;
5764                         part = isl_basic_map_product(
5765                                     isl_basic_map_copy(map1->p[i]),
5766                                     isl_basic_map_copy(map2->p[j]));
5767                         if (isl_basic_map_is_empty(part))
5768                                 isl_basic_map_free(part);
5769                         else
5770                                 result = isl_map_add_basic_map(result, part);
5771                         if (!result)
5772                                 goto error;
5773                 }
5774         isl_map_free(map1);
5775         isl_map_free(map2);
5776         return result;
5777 error:
5778         isl_map_free(map1);
5779         isl_map_free(map2);
5780         return NULL;
5781 }
5782
5783 /* Given two set A and B, construct its Cartesian product A x B.
5784  */
5785 struct isl_set *isl_set_product(struct isl_set *set1, struct isl_set *set2)
5786 {
5787         return (struct isl_set *)isl_map_product((struct isl_map *)set1,
5788                                                  (struct isl_map *)set2);
5789 }
5790
5791 uint32_t isl_basic_set_get_hash(struct isl_basic_set *bset)
5792 {
5793         int i;
5794         uint32_t hash = isl_hash_init();
5795         unsigned total;
5796
5797         if (!bset)
5798                 return 0;
5799         bset = isl_basic_set_copy(bset);
5800         bset = isl_basic_set_normalize(bset);
5801         if (!bset)
5802                 return 0;
5803         total = isl_basic_set_total_dim(bset);
5804         isl_hash_byte(hash, bset->n_eq & 0xFF);
5805         for (i = 0; i < bset->n_eq; ++i) {
5806                 uint32_t c_hash;
5807                 c_hash = isl_seq_get_hash(bset->eq[i], 1 + total);
5808                 isl_hash_hash(hash, c_hash);
5809         }
5810         isl_hash_byte(hash, bset->n_ineq & 0xFF);
5811         for (i = 0; i < bset->n_ineq; ++i) {
5812                 uint32_t c_hash;
5813                 c_hash = isl_seq_get_hash(bset->ineq[i], 1 + total);
5814                 isl_hash_hash(hash, c_hash);
5815         }
5816         isl_hash_byte(hash, bset->n_div & 0xFF);
5817         for (i = 0; i < bset->n_div; ++i) {
5818                 uint32_t c_hash;
5819                 if (isl_int_is_zero(bset->div[i][0]))
5820                         continue;
5821                 isl_hash_byte(hash, i & 0xFF);
5822                 c_hash = isl_seq_get_hash(bset->div[i], 1 + 1 + total);
5823                 isl_hash_hash(hash, c_hash);
5824         }
5825         isl_basic_set_free(bset);
5826         return hash;
5827 }
5828
5829 uint32_t isl_set_get_hash(struct isl_set *set)
5830 {
5831         int i;
5832         uint32_t hash;
5833
5834         if (!set)
5835                 return 0;
5836         set = isl_set_copy(set);
5837         set = isl_set_normalize(set);
5838         if (!set)
5839                 return 0;
5840
5841         hash = isl_hash_init();
5842         for (i = 0; i < set->n; ++i) {
5843                 uint32_t bset_hash;
5844                 bset_hash = isl_basic_set_get_hash(set->p[i]);
5845                 isl_hash_hash(hash, bset_hash);
5846         }
5847                 
5848         isl_set_free(set);
5849
5850         return hash;
5851 }
5852
5853 /* Check if the value for dimension dim is completely determined
5854  * by the values of the other parameters and variables.
5855  * That is, check if dimension dim is involved in an equality.
5856  */
5857 int isl_basic_set_dim_is_unique(struct isl_basic_set *bset, unsigned dim)
5858 {
5859         int i;
5860         unsigned nparam;
5861
5862         if (!bset)
5863                 return -1;
5864         nparam = isl_basic_set_n_param(bset);
5865         for (i = 0; i < bset->n_eq; ++i)
5866                 if (!isl_int_is_zero(bset->eq[i][1 + nparam + dim]))
5867                         return 1;
5868         return 0;
5869 }
5870
5871 /* Check if the value for dimension dim is completely determined
5872  * by the values of the other parameters and variables.
5873  * That is, check if dimension dim is involved in an equality
5874  * for each of the subsets.
5875  */
5876 int isl_set_dim_is_unique(struct isl_set *set, unsigned dim)
5877 {
5878         int i;
5879
5880         if (!set)
5881                 return -1;
5882         for (i = 0; i < set->n; ++i) {
5883                 int unique;
5884                 unique = isl_basic_set_dim_is_unique(set->p[i], dim);
5885                 if (unique != 1)
5886                         return unique;
5887         }
5888         return 1;
5889 }
5890
5891 int isl_map_foreach_basic_map(__isl_keep isl_map *map,
5892         int (*fn)(__isl_take isl_basic_map *bmap, void *user), void *user)
5893 {
5894         int i;
5895
5896         if (!map)
5897                 return -1;
5898
5899         for (i = 0; i < map->n; ++i)
5900                 if (fn(isl_basic_map_copy(map->p[i]), user) < 0)
5901                         return -1;
5902
5903         return 0;
5904 }
5905
5906 int isl_set_foreach_basic_set(__isl_keep isl_set *set,
5907         int (*fn)(__isl_take isl_basic_set *bset, void *user), void *user)
5908 {
5909         int i;
5910
5911         if (!set)
5912                 return -1;
5913
5914         for (i = 0; i < set->n; ++i)
5915                 if (fn(isl_basic_set_copy(set->p[i]), user) < 0)
5916                         return -1;
5917
5918         return 0;
5919 }
5920
5921 __isl_give isl_map *isl_set_lifting(__isl_take isl_set *set)
5922 {
5923         struct isl_dim *dim;
5924         struct isl_basic_map *bmap;
5925         unsigned n_set;
5926         unsigned n_div;
5927         unsigned n_param;
5928         unsigned total;
5929         int i, k, l;
5930
5931         set = isl_set_align_divs(set);
5932
5933         if (!set)
5934                 return NULL;
5935
5936         dim = isl_set_get_dim(set);
5937         if (set->n == 0 || set->p[0]->n_div == 0) {
5938                 isl_set_free(set);
5939                 return isl_map_identity(dim);
5940         }
5941
5942         n_div = set->p[0]->n_div;
5943         dim = isl_dim_map(dim);
5944         n_param = isl_dim_size(dim, isl_dim_param);
5945         n_set = isl_dim_size(dim, isl_dim_in);
5946         dim = isl_dim_extend(dim, n_param, n_set, n_set + n_div);
5947         bmap = isl_basic_map_alloc_dim(dim, 0, n_set, 2 * n_div);
5948         for (i = 0; i < n_set; ++i)
5949                 bmap = var_equal(bmap, i);
5950
5951         total = n_param + n_set + n_set + n_div;
5952         for (i = 0; i < n_div; ++i) {
5953                 k = isl_basic_map_alloc_inequality(bmap);
5954                 if (k < 0)
5955                         goto error;
5956                 isl_seq_cpy(bmap->ineq[k], set->p[0]->div[i]+1, 1+n_param);
5957                 isl_seq_clr(bmap->ineq[k]+1+n_param, n_set);
5958                 isl_seq_cpy(bmap->ineq[k]+1+n_param+n_set,
5959                             set->p[0]->div[i]+1+1+n_param, n_set + n_div);
5960                 isl_int_neg(bmap->ineq[k][1+n_param+n_set+n_set+i],
5961                             set->p[0]->div[i][0]);
5962
5963                 l = isl_basic_map_alloc_inequality(bmap);
5964                 if (l < 0)
5965                         goto error;
5966                 isl_seq_neg(bmap->ineq[l], bmap->ineq[k], 1 + total);
5967                 isl_int_add(bmap->ineq[l][0], bmap->ineq[l][0],
5968                             set->p[0]->div[i][0]);
5969                 isl_int_sub_ui(bmap->ineq[l][0], bmap->ineq[l][0], 1);
5970         }
5971
5972         isl_set_free(set);
5973         return isl_map_from_basic_map(bmap);
5974 error:
5975         isl_set_free(set);
5976         isl_basic_map_free(bmap);
5977         return NULL;
5978 }
5979
5980 int isl_basic_set_size(__isl_keep isl_basic_set *bset)
5981 {
5982         unsigned dim;
5983         int size = 0;
5984
5985         if (!bset)
5986                 return -1;
5987
5988         dim = isl_basic_set_total_dim(bset);
5989         size += bset->n_eq * (1 + dim);
5990         size += bset->n_ineq * (1 + dim);
5991         size += bset->n_div * (2 + dim);
5992
5993         return size;
5994 }
5995
5996 int isl_set_size(__isl_keep isl_set *set)
5997 {
5998         int i;
5999         int size = 0;
6000
6001         if (!set)
6002                 return -1;
6003
6004         for (i = 0; i < set->n; ++i)
6005                 size += isl_basic_set_size(set->p[i]);
6006
6007         return size;
6008 }