isl_map_subtract.c: tab_add_constraints: avoid NULL pointer dereference
[isl.git] / isl_scan.c
blobf6eb9feee7895162b740022a301fb5c0629730ba
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
4 * Use of this software is governed by the GNU LGPLv2.1 license
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
8 */
10 #include "isl_basis_reduction.h"
11 #include "isl_scan.h"
12 #include "isl_seq.h"
13 #include "isl_tab.h"
14 #include <isl_map_private.h>
16 struct isl_counter {
17 struct isl_scan_callback callback;
18 isl_int count;
19 isl_int max;
22 static int increment_counter(struct isl_scan_callback *cb,
23 __isl_take isl_vec *sample)
25 struct isl_counter *cnt = (struct isl_counter *)cb;
27 isl_int_add_ui(cnt->count, cnt->count, 1);
29 isl_vec_free(sample);
31 if (isl_int_is_zero(cnt->max) || isl_int_lt(cnt->count, cnt->max))
32 return 0;
33 return -1;
36 static int increment_range(struct isl_scan_callback *cb, isl_int min, isl_int max)
38 struct isl_counter *cnt = (struct isl_counter *)cb;
40 isl_int_add(cnt->count, cnt->count, max);
41 isl_int_sub(cnt->count, cnt->count, min);
42 isl_int_add_ui(cnt->count, cnt->count, 1);
44 if (isl_int_is_zero(cnt->max) || isl_int_lt(cnt->count, cnt->max))
45 return 0;
46 isl_int_set(cnt->count, cnt->max);
47 return -1;
50 /* Call callback->add with the current sample value of the tableau "tab".
52 static int add_solution(struct isl_tab *tab, struct isl_scan_callback *callback)
54 struct isl_vec *sample;
56 if (!tab)
57 return -1;
58 sample = isl_tab_get_sample_value(tab);
59 if (!sample)
60 return -1;
62 return callback->add(callback, sample);
65 static int scan_0D(struct isl_basic_set *bset,
66 struct isl_scan_callback *callback)
68 struct isl_vec *sample;
70 sample = isl_vec_alloc(bset->ctx, 1);
71 isl_basic_set_free(bset);
73 if (!sample)
74 return -1;
76 isl_int_set_si(sample->el[0], 1);
78 return callback->add(callback, sample);
81 /* Look for all integer points in "bset", which is assumed to be unbounded,
82 * and call callback->add on each of them.
84 * We first compute a reduced basis for the set and then scan
85 * the set in the directions of this basis.
86 * We basically perform a depth first search, where in each level i
87 * we compute the range in the i-th basis vector direction, given
88 * fixed values in the directions of the previous basis vector.
89 * We then add an equality to the tableau fixing the value in the
90 * direction of the current basis vector to each value in the range
91 * in turn and then continue to the next level.
93 * The search is implemented iteratively. "level" identifies the current
94 * basis vector. "init" is true if we want the first value at the current
95 * level and false if we want the next value.
96 * Solutions are added in the leaves of the search tree, i.e., after
97 * we have fixed a value in each direction of the basis.
99 int isl_basic_set_scan(struct isl_basic_set *bset,
100 struct isl_scan_callback *callback)
102 unsigned dim;
103 struct isl_mat *B = NULL;
104 struct isl_tab *tab = NULL;
105 struct isl_vec *min;
106 struct isl_vec *max;
107 struct isl_tab_undo **snap;
108 int level;
109 int init;
110 enum isl_lp_result res;
112 if (!bset)
113 return -1;
115 dim = isl_basic_set_total_dim(bset);
116 if (dim == 0)
117 return scan_0D(bset, callback);
119 min = isl_vec_alloc(bset->ctx, dim);
120 max = isl_vec_alloc(bset->ctx, dim);
121 snap = isl_alloc_array(bset->ctx, struct isl_tab_undo *, dim);
123 if (!min || !max || !snap)
124 goto error;
126 tab = isl_tab_from_basic_set(bset);
127 if (!tab)
128 goto error;
129 if (isl_tab_extend_cons(tab, dim + 1) < 0)
130 goto error;
132 tab->basis = isl_mat_identity(bset->ctx, 1 + dim);
133 if (1)
134 tab = isl_tab_compute_reduced_basis(tab);
135 if (!tab)
136 goto error;
137 B = isl_mat_copy(tab->basis);
138 if (!B)
139 goto error;
141 level = 0;
142 init = 1;
144 while (level >= 0) {
145 int empty = 0;
146 if (init) {
147 res = isl_tab_min(tab, B->row[1 + level],
148 bset->ctx->one, &min->el[level], NULL, 0);
149 if (res == isl_lp_empty)
150 empty = 1;
151 if (res == isl_lp_error || res == isl_lp_unbounded)
152 goto error;
153 isl_seq_neg(B->row[1 + level] + 1,
154 B->row[1 + level] + 1, dim);
155 res = isl_tab_min(tab, B->row[1 + level],
156 bset->ctx->one, &max->el[level], NULL, 0);
157 isl_seq_neg(B->row[1 + level] + 1,
158 B->row[1 + level] + 1, dim);
159 isl_int_neg(max->el[level], max->el[level]);
160 if (res == isl_lp_empty)
161 empty = 1;
162 if (res == isl_lp_error || res == isl_lp_unbounded)
163 goto error;
164 snap[level] = isl_tab_snap(tab);
165 } else
166 isl_int_add_ui(min->el[level], min->el[level], 1);
168 if (empty || isl_int_gt(min->el[level], max->el[level])) {
169 level--;
170 init = 0;
171 if (level >= 0)
172 if (isl_tab_rollback(tab, snap[level]) < 0)
173 goto error;
174 continue;
176 if (level == dim - 1 && callback->add == increment_counter) {
177 if (increment_range(callback,
178 min->el[level], max->el[level]))
179 goto error;
180 level--;
181 init = 0;
182 if (level >= 0)
183 if (isl_tab_rollback(tab, snap[level]) < 0)
184 goto error;
185 continue;
187 isl_int_neg(B->row[1 + level][0], min->el[level]);
188 tab = isl_tab_add_valid_eq(tab, B->row[1 + level]);
189 isl_int_set_si(B->row[1 + level][0], 0);
190 if (level < dim - 1) {
191 ++level;
192 init = 1;
193 continue;
195 if (add_solution(tab, callback) < 0)
196 goto error;
197 init = 0;
198 if (isl_tab_rollback(tab, snap[level]) < 0)
199 goto error;
202 isl_tab_free(tab);
203 free(snap);
204 isl_vec_free(min);
205 isl_vec_free(max);
206 isl_basic_set_free(bset);
207 isl_mat_free(B);
208 return 0;
209 error:
210 isl_tab_free(tab);
211 free(snap);
212 isl_vec_free(min);
213 isl_vec_free(max);
214 isl_basic_set_free(bset);
215 isl_mat_free(B);
216 return -1;
219 int isl_set_scan(__isl_take isl_set *set, struct isl_scan_callback *callback)
221 int i;
223 if (!set || !callback)
224 goto error;
226 set = isl_set_cow(set);
227 set = isl_set_make_disjoint(set);
228 set = isl_set_compute_divs(set);
229 if (!set)
230 goto error;
232 for (i = 0; i < set->n; ++i)
233 if (isl_basic_set_scan(isl_basic_set_copy(set->p[i]),
234 callback) < 0)
235 goto error;
237 isl_set_free(set);
238 return 0;
239 error:
240 isl_set_free(set);
241 return -1;
244 int isl_set_count_upto(__isl_keep isl_set *set, isl_int max, isl_int *count)
246 struct isl_counter cnt = { { &increment_counter } };
248 if (!set)
249 return -1;
251 isl_int_init(cnt.count);
252 isl_int_init(cnt.max);
254 isl_int_set_si(cnt.count, 0);
255 isl_int_set(cnt.max, max);
256 if (isl_set_scan(isl_set_copy(set), &cnt.callback) < 0 &&
257 isl_int_lt(cnt.count, cnt.max))
258 goto error;
260 isl_int_set(*count, cnt.count);
261 isl_int_clear(cnt.max);
262 isl_int_clear(cnt.count);
264 return 0;
265 error:
266 isl_int_clear(cnt.count);
267 return -1;
270 int isl_set_count(__isl_keep isl_set *set, isl_int *count)
272 if (!set)
273 return -1;
274 return isl_set_count_upto(set, set->ctx->zero, count);