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
14 #include "isl_map_private.h"
15 #include "isl_sample.h"
19 #include <isl_point_private.h>
21 /* The input of this program is the same as that of the "example" program
22 * from the PipLib distribution, except that the "big parameter column"
23 * should always be -1.
25 * Context constraints in PolyLib format
27 * Problem constraints in PolyLib format
28 * Optional list of options
31 * Maximize compute maximum instead of minimum
32 * Rational compute rational optimum instead of integer optimum
33 * Urs_parms don't assume parameters are non-negative
34 * Urs_unknowns don't assume unknowns are non-negative
38 struct isl_options *isl;
42 struct isl_arg options_arg[] = {
43 ISL_ARG_CHILD(struct options, isl, "isl", isl_options_arg, "isl options")
44 ISL_ARG_BOOL(struct options, verify, 'T', "verify", 0, NULL)
48 ISL_ARG_DEF(options, struct options, options_arg)
50 static struct isl_basic_set *to_parameter_domain(struct isl_basic_set *context)
52 struct isl_dim *param_dim;
53 struct isl_basic_set *model;
55 param_dim = isl_dim_set_alloc(context->ctx,
56 isl_basic_set_n_dim(context), 0);
57 model = isl_basic_set_empty(param_dim);
58 context = isl_basic_set_from_underlying_set(context, model);
63 static isl_basic_set *construct_cube(isl_basic_set *context)
69 struct isl_basic_set *cube;
70 struct isl_basic_set *interval;
71 struct isl_basic_set_list *list;
73 dim = isl_basic_set_total_dim(context);
76 dims = isl_dim_set_alloc(context->ctx, 0, 0);
77 return isl_basic_set_universe(dims);
90 isl_int_set_si(m, -range);
91 isl_int_set_si(M, range);
93 interval = isl_basic_set_interval(context->ctx, m, M);
94 list = isl_basic_set_list_alloc(context->ctx, dim);
95 for (i = 0; i < dim; ++i)
96 list = isl_basic_set_list_add(list, isl_basic_set_copy(interval));
97 isl_basic_set_free(interval);
98 cube = isl_basic_set_product(list);
106 isl_basic_set *plug_in_parameters(isl_basic_set *bset, struct isl_vec *params)
110 for (i = 0; i < params->size - 1; ++i)
111 bset = isl_basic_set_fix(bset,
112 isl_dim_param, i, params->el[1 + i]);
114 bset = isl_basic_set_remove(bset, isl_dim_param, 0, params->size - 1);
116 isl_vec_free(params);
121 isl_set *set_plug_in_parameters(isl_set *set, struct isl_vec *params)
125 for (i = 0; i < params->size - 1; ++i)
126 set = isl_set_fix(set, isl_dim_param, i, params->el[1 + i]);
128 set = isl_set_remove(set, isl_dim_param, 0, params->size - 1);
130 isl_vec_free(params);
135 /* Compute the lexicographically minimal (or maximal if max is set)
136 * element of bset for the given values of the parameters, by
137 * successively solving an ilp problem in each direction.
139 struct isl_vec *opt_at(struct isl_basic_set *bset,
140 struct isl_vec *params, int max)
147 dim = isl_basic_set_dim(bset, isl_dim_set);
149 bset = plug_in_parameters(bset, params);
151 if (isl_basic_set_fast_is_empty(bset)) {
152 opt = isl_vec_alloc(bset->ctx, 0);
153 isl_basic_set_free(bset);
157 opt = isl_vec_alloc(bset->ctx, 1 + dim);
160 obj = isl_vec_alloc(bset->ctx, 1 + dim);
163 isl_int_set_si(opt->el[0], 1);
164 isl_int_set_si(obj->el[0], 0);
166 for (i = 0; i < dim; ++i) {
167 enum isl_lp_result res;
169 isl_seq_clr(obj->el + 1, dim);
170 isl_int_set_si(obj->el[1 + i], 1);
171 res = isl_basic_set_solve_ilp(bset, max, obj->el,
172 &opt->el[1 + i], NULL);
173 if (res == isl_lp_empty)
175 assert(res == isl_lp_ok);
176 bset = isl_basic_set_fix(bset, isl_dim_set, i, opt->el[1 + i]);
179 isl_basic_set_free(bset);
185 opt = isl_vec_alloc(bset->ctx, 0);
186 isl_basic_set_free(bset);
192 struct isl_scan_pip {
193 struct isl_scan_callback callback;
202 /* Check if the "manually" computed optimum of bset at the "sample"
203 * values of the parameters agrees with the solution of pilp problem
204 * represented by the pair (sol, empty).
205 * In particular, if there is no solution for this value of the parameters,
206 * then it should be an element of the parameter domain "empty".
207 * Otherwise, the optimal solution, should be equal to the result of
208 * plugging in the value of the parameters in "sol".
210 static int scan_one(struct isl_scan_callback *callback,
211 __isl_take isl_vec *sample)
213 struct isl_scan_pip *sp = (struct isl_scan_pip *)callback;
216 opt = opt_at(isl_basic_set_copy(sp->bset), isl_vec_copy(sample), sp->max);
219 if (opt->size == 0) {
220 isl_point *sample_pnt;
221 sample_pnt = isl_point_alloc(isl_set_get_dim(sp->empty), sample);
222 assert(isl_set_contains_point(sp->empty, sample_pnt));
223 isl_point_free(sample_pnt);
228 opt_set = isl_set_from_basic_set(isl_basic_set_from_vec(opt));
229 sol = set_plug_in_parameters(isl_set_copy(sp->sol), sample);
230 assert(isl_set_is_equal(opt_set, sol));
232 isl_set_free(opt_set);
235 if (!(sp->n++ % sp->stride)) {
243 struct isl_scan_count {
244 struct isl_scan_callback callback;
248 static int count_one(struct isl_scan_callback *callback,
249 __isl_take isl_vec *sample)
251 struct isl_scan_count *sc = (struct isl_scan_count *)callback;
252 isl_vec_free(sample);
259 static void check_solution(isl_basic_set *bset, isl_basic_set *context,
260 isl_set *sol, isl_set *empty, int max)
263 struct isl_scan_count sc;
264 struct isl_scan_pip sp;
268 context = isl_basic_set_underlying_set(context);
270 cube = construct_cube(context);
271 context = isl_basic_set_intersect(context, cube);
273 sc.callback.add = count_one;
276 r = isl_basic_set_scan(isl_basic_set_copy(context), &sc.callback);
279 sp.callback.add = scan_one;
284 sp.stride = sc.n > 70 ? 1 + (sc.n + 1)/70 : 1;
287 for (i = 0; i < sc.n; i += sp.stride)
292 r = isl_basic_set_scan(context, &sp.callback);
297 isl_basic_set_free(bset);
300 int main(int argc, char **argv)
303 struct isl_basic_set *context, *bset, *copy, *context_copy;
305 struct isl_set *empty;
309 int urs_unknowns = 0;
313 struct options *options;
315 options = options_new_with_defaults();
317 argc = options_parse(options, argc, argv, ISL_ARG_ALL);
319 ctx = isl_ctx_alloc_with_options(options_arg, options);
321 context = isl_basic_set_read_from_file(ctx, stdin, 0);
323 n = fscanf(stdin, "%d", &neg_one);
325 assert(neg_one == -1);
326 bset = isl_basic_set_read_from_file(ctx, stdin,
327 isl_basic_set_dim(context, isl_dim_set));
329 while (fgets(s, sizeof(s), stdin)) {
330 if (strncasecmp(s, "Maximize", 8) == 0)
332 if (strncasecmp(s, "Rational", 8) == 0) {
334 bset = isl_basic_set_set_rational(bset);
336 if (strncasecmp(s, "Urs_parms", 9) == 0)
338 if (strncasecmp(s, "Urs_unknowns", 12) == 0)
342 context = isl_basic_set_intersect(context,
343 isl_basic_set_positive_orthant(isl_basic_set_get_dim(context)));
344 context = to_parameter_domain(context);
346 bset = isl_basic_set_intersect(bset,
347 isl_basic_set_positive_orthant(isl_basic_set_get_dim(bset)));
349 if (options->verify) {
350 copy = isl_basic_set_copy(bset);
351 context_copy = isl_basic_set_copy(context);
355 set = isl_basic_set_partial_lexmax(bset, context, &empty);
357 set = isl_basic_set_partial_lexmin(bset, context, &empty);
359 if (options->verify) {
361 check_solution(copy, context_copy, set, empty, max);
363 isl_set_print(set, stdout, 0, ISL_FORMAT_ISL);
364 fprintf(stdout, "\n");
365 fprintf(stdout, "no solution: ");
366 isl_set_print(empty, stdout, 0, ISL_FORMAT_ISL);
367 fprintf(stdout, "\n");