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
13 #include <isl_map_private.h>
17 #include "isl_sample.h"
21 #include <isl/printer.h>
22 #include <isl_point_private.h>
24 /* The input of this program is the same as that of the "example" program
25 * from the PipLib distribution, except that the "big parameter column"
26 * should always be -1.
28 * Context constraints in PolyLib format
30 * Problem constraints in PolyLib format
31 * Optional list of options
34 * Maximize compute maximum instead of minimum
35 * Rational compute rational optimum instead of integer optimum
36 * Urs_parms don't assume parameters are non-negative
37 * Urs_unknowns don't assume unknowns are non-negative
41 struct isl_options *isl;
49 struct isl_arg_choice pip_format[] = {
51 {"affine", FORMAT_AFF},
55 struct isl_arg options_arg[] = {
56 ISL_ARG_CHILD(struct options, isl, "isl", isl_options_arg, "isl options")
57 ISL_ARG_BOOL(struct options, verify, 'T', "verify", 0, NULL)
58 ISL_ARG_CHOICE(struct options, format, 0, "format",
59 pip_format, FORMAT_SET, "output format")
63 ISL_ARG_DEF(options, struct options, options_arg)
65 static __isl_give isl_basic_set *set_bounds(__isl_take isl_basic_set *bset)
72 nparam = isl_basic_set_dim(bset, isl_dim_param);
73 r = nparam >= 8 ? 4 : nparam >= 5 ? 6 : 30;
75 pt = isl_basic_set_sample_point(isl_basic_set_copy(bset));
76 pt2 = isl_point_copy(pt);
78 for (i = 0; i < nparam; ++i) {
79 pt = isl_point_add_ui(pt, isl_dim_param, i, r);
80 pt2 = isl_point_sub_ui(pt2, isl_dim_param, i, r);
83 box = isl_basic_set_box_from_points(pt, pt2);
85 return isl_basic_set_intersect(bset, box);
88 static struct isl_basic_set *to_parameter_domain(struct isl_basic_set *context)
90 context = isl_basic_set_move_dims(context, isl_dim_param, 0,
91 isl_dim_set, 0, isl_basic_set_dim(context, isl_dim_set));
92 context = isl_basic_set_params(context);
96 isl_basic_set *plug_in_parameters(isl_basic_set *bset, struct isl_vec *params)
100 for (i = 0; i < params->size - 1; ++i)
101 bset = isl_basic_set_fix(bset,
102 isl_dim_param, i, params->el[1 + i]);
104 bset = isl_basic_set_remove_dims(bset,
105 isl_dim_param, 0, params->size - 1);
107 isl_vec_free(params);
112 isl_set *set_plug_in_parameters(isl_set *set, struct isl_vec *params)
116 for (i = 0; i < params->size - 1; ++i)
117 set = isl_set_fix(set, isl_dim_param, i, params->el[1 + i]);
119 set = isl_set_remove_dims(set, isl_dim_param, 0, params->size - 1);
121 isl_vec_free(params);
126 /* Compute the lexicographically minimal (or maximal if max is set)
127 * element of bset for the given values of the parameters, by
128 * successively solving an ilp problem in each direction.
130 struct isl_vec *opt_at(struct isl_basic_set *bset,
131 struct isl_vec *params, int max)
138 dim = isl_basic_set_dim(bset, isl_dim_set);
140 bset = plug_in_parameters(bset, params);
142 if (isl_basic_set_plain_is_empty(bset)) {
143 opt = isl_vec_alloc(bset->ctx, 0);
144 isl_basic_set_free(bset);
148 opt = isl_vec_alloc(bset->ctx, 1 + dim);
151 obj = isl_vec_alloc(bset->ctx, 1 + dim);
154 isl_int_set_si(opt->el[0], 1);
155 isl_int_set_si(obj->el[0], 0);
157 for (i = 0; i < dim; ++i) {
158 enum isl_lp_result res;
160 isl_seq_clr(obj->el + 1, dim);
161 isl_int_set_si(obj->el[1 + i], 1);
162 res = isl_basic_set_solve_ilp(bset, max, obj->el,
163 &opt->el[1 + i], NULL);
164 if (res == isl_lp_empty)
166 assert(res == isl_lp_ok);
167 bset = isl_basic_set_fix(bset, isl_dim_set, i, opt->el[1 + i]);
170 isl_basic_set_free(bset);
176 opt = isl_vec_alloc(bset->ctx, 0);
177 isl_basic_set_free(bset);
183 struct isl_scan_pip {
184 struct isl_scan_callback callback;
193 /* Check if the "manually" computed optimum of bset at the "sample"
194 * values of the parameters agrees with the solution of pilp problem
195 * represented by the pair (sol, empty).
196 * In particular, if there is no solution for this value of the parameters,
197 * then it should be an element of the parameter domain "empty".
198 * Otherwise, the optimal solution, should be equal to the result of
199 * plugging in the value of the parameters in "sol".
201 static int scan_one(struct isl_scan_callback *callback,
202 __isl_take isl_vec *sample)
204 struct isl_scan_pip *sp = (struct isl_scan_pip *)callback;
209 opt = opt_at(isl_basic_set_copy(sp->bset), isl_vec_copy(sample), sp->max);
212 if (opt->size == 0) {
213 isl_point *sample_pnt;
214 sample_pnt = isl_point_alloc(isl_set_get_space(sp->empty), sample);
215 assert(isl_set_contains_point(sp->empty, sample_pnt));
216 isl_point_free(sample_pnt);
221 opt_set = isl_set_from_basic_set(isl_basic_set_from_vec(opt));
222 sol = set_plug_in_parameters(isl_set_copy(sp->sol), sample);
223 assert(isl_set_is_equal(opt_set, sol));
225 isl_set_free(opt_set);
228 if (!(sp->n % sp->stride)) {
233 return sp->n >= 1 ? 0 : -1;
236 static void check_solution(isl_basic_set *bset, isl_basic_set *context,
237 isl_set *sol, isl_set *empty, int max)
239 struct isl_scan_pip sp;
240 isl_int count, count_max;
244 context = set_bounds(context);
245 context = isl_basic_set_underlying_set(context);
248 isl_int_init(count_max);
250 isl_int_set_si(count_max, 2000);
251 r = isl_basic_set_count_upto(context, count_max, &count);
253 n = isl_int_get_si(count);
255 isl_int_clear(count_max);
256 isl_int_clear(count);
258 sp.callback.add = scan_one;
263 sp.stride = n > 70 ? 1 + (n + 1)/70 : 1;
266 for (i = 0; i < n; i += sp.stride)
271 isl_basic_set_scan(context, &sp.callback);
275 isl_basic_set_free(bset);
278 int main(int argc, char **argv)
281 struct isl_basic_set *context, *bset, *copy, *context_copy;
282 struct isl_set *set = NULL;
283 struct isl_set *empty;
284 isl_pw_multi_aff *pma = NULL;
288 int urs_unknowns = 0;
293 struct options *options;
295 options = options_new_with_defaults();
297 argc = options_parse(options, argc, argv, ISL_ARG_ALL);
299 ctx = isl_ctx_alloc_with_options(options_arg, options);
301 context = isl_basic_set_read_from_file(ctx, stdin);
303 n = fscanf(stdin, "%d", &neg_one);
305 assert(neg_one == -1);
306 bset = isl_basic_set_read_from_file(ctx, stdin);
308 while (fgets(s, sizeof(s), stdin)) {
309 if (strncasecmp(s, "Maximize", 8) == 0)
311 if (strncasecmp(s, "Rational", 8) == 0) {
313 bset = isl_basic_set_set_rational(bset);
315 if (strncasecmp(s, "Urs_parms", 9) == 0)
317 if (strncasecmp(s, "Urs_unknowns", 12) == 0)
321 context = isl_basic_set_intersect(context,
322 isl_basic_set_positive_orthant(isl_basic_set_get_space(context)));
323 context = to_parameter_domain(context);
324 nparam = isl_basic_set_dim(context, isl_dim_param);
325 if (nparam != isl_basic_set_dim(bset, isl_dim_param)) {
326 int dim = isl_basic_set_dim(bset, isl_dim_set);
327 bset = isl_basic_set_move_dims(bset, isl_dim_param, 0,
328 isl_dim_set, dim - nparam, nparam);
331 bset = isl_basic_set_intersect(bset,
332 isl_basic_set_positive_orthant(isl_basic_set_get_space(bset)));
334 if (options->verify) {
335 copy = isl_basic_set_copy(bset);
336 context_copy = isl_basic_set_copy(context);
339 if (options->format == FORMAT_AFF) {
341 pma = isl_basic_set_partial_lexmax_pw_multi_aff(bset,
344 pma = isl_basic_set_partial_lexmin_pw_multi_aff(bset,
348 set = isl_basic_set_partial_lexmax(bset,
351 set = isl_basic_set_partial_lexmin(bset,
355 if (options->verify) {
357 if (options->format == FORMAT_AFF)
358 set = isl_set_from_pw_multi_aff(pma);
359 check_solution(copy, context_copy, set, empty, max);
363 p = isl_printer_to_file(ctx, stdout);
364 if (options->format == FORMAT_AFF)
365 p = isl_printer_print_pw_multi_aff(p, pma);
367 p = isl_printer_print_set(p, set);
368 p = isl_printer_end_line(p);
369 p = isl_printer_print_str(p, "no solution: ");
370 p = isl_printer_print_set(p, empty);
371 p = isl_printer_end_line(p);
374 isl_pw_multi_aff_free(pma);