Polly 19.0.0git
isl_options.c
Go to the documentation of this file.
1/*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 *
4 * Use of this software is governed by the MIT license
5 *
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
8 */
9
10#include <stdio.h>
11#include <stdlib.h>
12#include <string.h>
13
14#include <isl/ctx.h>
15#include <isl_options_private.h>
16#include <isl/ast_build.h>
17#include <isl/schedule.h>
18#include <isl/version.h>
19
21 {"gbr", ISL_CONTEXT_GBR},
22 {"lexmin", ISL_CONTEXT_LEXMIN},
23 {0}
24};
25
27 {"never", ISL_GBR_NEVER},
28 {"once", ISL_GBR_ONCE},
29 {"always", ISL_GBR_ALWAYS},
30 {0}
31};
32
34 {"isl", ISL_CLOSURE_ISL},
35 {"box", ISL_CLOSURE_BOX},
36 {0}
37};
38
39static struct isl_arg_choice bound[] = {
40 {"bernstein", ISL_BOUND_BERNSTEIN},
41 {"range", ISL_BOUND_RANGE},
42 {0}
43};
44
45static struct isl_arg_choice on_error[] = {
46 {"warn", ISL_ON_ERROR_WARN},
47 {"continue", ISL_ON_ERROR_CONTINUE},
48 {"abort", ISL_ON_ERROR_ABORT},
49 {0}
50};
51
55 {0}
56};
57
66 {0}
67};
68
69static struct isl_arg_choice convex[] = {
70 {"wrap", ISL_CONVEX_HULL_WRAP},
71 {"fm", ISL_CONVEX_HULL_FM},
72 {0}
73};
74
75#define ISL_SCHEDULE_FUSE_MAX 0
76#define ISL_SCHEDULE_FUSE_MIN 1
77
78static struct isl_arg_choice fuse[] = {
79 {"max", ISL_SCHEDULE_FUSE_MAX},
80 {"min", ISL_SCHEDULE_FUSE_MIN},
81 {0}
82};
83
84/* Callback for setting the "schedule-fuse" option.
85 * This (now hidden) option tries to mimic an option that was
86 * replaced by the schedule-serialize-sccs option.
87 * Setting the old option to ISL_SCHEDULE_FUSE_MIN is now
88 * expressed by turning on the schedule-serialize-sccs option.
89 */
90static int set_fuse(void *opt, unsigned val)
91{
92 struct isl_options *options = opt;
93
94 options->schedule_serialize_sccs = (val == ISL_SCHEDULE_FUSE_MIN);
95
96 return 0;
97}
98
102 {0}
103};
104
105static void print_version(void)
106{
107 printf("%s", isl_version());
108}
109
110ISL_ARGS_START(struct isl_options, isl_options_args)
111ISL_ARG_CHOICE(struct isl_options, context, 0, "context", \
113 "how to handle the pip context tableau")
114ISL_ARG_CHOICE(struct isl_options, gbr, 0, "gbr", \
116 "how often to use generalized basis reduction")
117ISL_ARG_CHOICE(struct isl_options, closure, 0, "closure", \
119 "closure operation to use")
120ISL_ARG_BOOL(struct isl_options, gbr_only_first, 0, "gbr-only-first", 0,
121 "only perform basis reduction in first direction")
123 ISL_BOUND_BERNSTEIN, "algorithm to use for computing bounds")
124ISL_ARG_CHOICE(struct isl_options, on_error, 0, "on-error", on_error,
125 ISL_ON_ERROR_WARN, "how to react if an error is detected")
128ISL_ARG_BOOL(struct isl_options, bernstein_triangulate, 0,
129 "bernstein-triangulate", 1,
130 "triangulate domains during Bernstein expansion")
131ISL_ARG_BOOL(struct isl_options, pip_symmetry, 0, "pip-symmetry", 1,
132 "detect simple symmetries in PIP input")
134 convex, ISL_CONVEX_HULL_WRAP, "convex hull algorithm to use")
135ISL_ARG_BOOL(struct isl_options, coalesce_bounded_wrapping, 0,
136 "coalesce-bounded-wrapping", 1, "bound wrapping during coalescing")
137ISL_ARG_BOOL(struct isl_options, coalesce_preserve_locals, 0,
138 "coalesce-preserve-locals", 0,
139 "preserve local variables during coalescing")
140ISL_ARG_INT(struct isl_options, schedule_max_coefficient, 0,
141 "schedule-max-coefficient", "limit", -1, "Only consider schedules "
142 "where the coefficients of the variable and parameter dimensions "
143 "do not exceed <limit>. A value of -1 allows arbitrary coefficients.")
144ISL_ARG_INT(struct isl_options, schedule_max_constant_term, 0,
145 "schedule-max-constant-term", "limit", -1, "Only consider schedules "
146 "where the coefficients of the constant dimension do not exceed "
147 "<limit>. A value of -1 allows arbitrary coefficients.")
148ISL_ARG_BOOL(struct isl_options, schedule_parametric, 0,
149 "schedule-parametric", 1, "construct possibly parametric schedules")
150ISL_ARG_BOOL(struct isl_options, schedule_outer_coincidence, 0,
151 "schedule-outer-coincidence", 0,
152 "try to construct schedules where the outer member of each band "
153 "satisfies the coincidence constraints")
154ISL_ARG_BOOL(struct isl_options, schedule_maximize_band_depth, 0,
155 "schedule-maximize-band-depth", 0,
156 "maximize the number of scheduling dimensions in a band")
157ISL_ARG_BOOL(struct isl_options, schedule_maximize_coincidence, 0,
158 "schedule-maximize-coincidence", 0,
159 "maximize the number of coincident dimensions in a band")
160ISL_ARG_BOOL(struct isl_options, schedule_split_scaled, 0,
161 "schedule-split-scaled", 1,
162 "split non-tilable bands with scaled schedules")
163ISL_ARG_BOOL(struct isl_options, schedule_treat_coalescing, 0,
164 "schedule-treat-coalescing", 1,
165 "try and prevent or adjust schedules that perform loop coalescing")
166ISL_ARG_BOOL(struct isl_options, schedule_separate_components, 0,
167 "schedule-separate-components", 1,
168 "separate components in dependence graph")
169ISL_ARG_BOOL(struct isl_options, schedule_whole_component, 0,
170 "schedule-whole-component", 0,
171 "try and compute schedule for entire component first")
172ISL_ARG_CHOICE(struct isl_options, schedule_algorithm, 0,
174 ISL_SCHEDULE_ALGORITHM_ISL, "scheduling algorithm to use")
175ISL_ARG_BOOL(struct isl_options, schedule_carry_self_first, 0,
176 "schedule-carry-self-first", 1, "try and carry self-dependences first")
177ISL_ARG_BOOL(struct isl_options, schedule_serialize_sccs, 0,
178 "schedule-serialize-sccs", 0,
179 "serialize strongly connected components in dependence graph")
181 ISL_SCHEDULE_FUSE_MAX, "level of fusion during scheduling",
183ISL_ARG_BOOL(struct isl_options, tile_scale_tile_loops, 0,
184 "tile-scale-tile-loops", 1, "scale tile loops")
185ISL_ARG_BOOL(struct isl_options, tile_shift_point_loops, 0,
186 "tile-shift-point-loops", 1, "shift point loops to start at zero")
187ISL_ARG_STR(struct isl_options, ast_iterator_type, 0,
188 "ast-iterator-type", "type", "int",
189 "type used for iterators during printing of AST")
190ISL_ARG_BOOL(struct isl_options, ast_always_print_block, 0,
191 "ast-always-print-block", 0, "print for and if bodies as a block "
192 "regardless of the number of statements in the body")
193ISL_ARG_BOOL(struct isl_options, ast_print_outermost_block, 0,
194 "ast-print-outermost-block", 1, "print outermost block node as a block")
195ISL_ARG_BOOL(struct isl_options, ast_print_macro_once, 0,
196 "ast-print-macro-once", 0, "only print macro definitions once")
197ISL_ARG_BOOL(struct isl_options, ast_build_atomic_upper_bound, 0,
198 "ast-build-atomic-upper-bound", 1, "generate atomic upper bounds")
199ISL_ARG_BOOL(struct isl_options, ast_build_prefer_pdiv, 0,
200 "ast-build-prefer-pdiv", 1, "prefer pdiv operation over fdiv")
201ISL_ARG_BOOL(struct isl_options, ast_build_detect_min_max, 0,
202 "ast-build-detect-min-max", 0, "detect min/max expressions")
203ISL_ARG_BOOL(struct isl_options, ast_build_exploit_nested_bounds, 0,
204 "ast-build-exploit-nested-bounds", 1,
205 "simplify conditions based on bounds of nested for loops")
206ISL_ARG_BOOL(struct isl_options, ast_build_group_coscheduled, 0,
207 "ast-build-group-coscheduled", 0,
208 "keep coscheduled domain elements together")
209ISL_ARG_CHOICE(struct isl_options, ast_build_separation_bounds, 0,
210 "ast-build-separation-bounds", separation_bounds,
212 "bounds to use during separation")
213ISL_ARG_BOOL(struct isl_options, ast_build_scale_strides, 0,
214 "ast-build-scale-strides", 1,
215 "allow iterators of strided loops to be scaled down")
216ISL_ARG_BOOL(struct isl_options, ast_build_allow_else, 0,
217 "ast-build-allow-else", 1, "generate if statements with else branches")
218ISL_ARG_BOOL(struct isl_options, ast_build_allow_or, 0,
219 "ast-build-allow-or", 1, "generate if conditions with disjunctions")
220ISL_ARG_BOOL(struct isl_options, print_stats, 0, "print-stats", 0,
221 "print statistics for every isl_ctx")
222ISL_ARG_ULONG(struct isl_options, max_operations, 0,
223 "max-operations", 0, "default number of maximal operations per isl_ctx")
226
227ISL_ARG_DEF(isl_options, struct isl_options, isl_options_args)
228
229ISL_ARG_CTX_DEF(isl_options, struct isl_options, isl_options_args)
230
231ISL_CTX_SET_CHOICE_DEF(isl_options, struct isl_options, isl_options_args, bound)
232ISL_CTX_GET_CHOICE_DEF(isl_options, struct isl_options, isl_options_args, bound)
233
234ISL_CTX_SET_CHOICE_DEF(isl_options, struct isl_options, isl_options_args,
235 on_error)
236ISL_CTX_GET_CHOICE_DEF(isl_options, struct isl_options, isl_options_args,
237 on_error)
238
239ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
240 pip_symmetry)
241ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
242 pip_symmetry)
243
244ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
245 coalesce_bounded_wrapping)
246ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
247 coalesce_bounded_wrapping)
248
249ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
250 coalesce_preserve_locals)
251ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
252 coalesce_preserve_locals)
253
254ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
255 gbr_only_first)
256ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
257 gbr_only_first)
258
259ISL_CTX_SET_INT_DEF(isl_options, struct isl_options, isl_options_args,
260 schedule_max_coefficient)
261ISL_CTX_GET_INT_DEF(isl_options, struct isl_options, isl_options_args,
262 schedule_max_coefficient)
263
264ISL_CTX_SET_INT_DEF(isl_options, struct isl_options, isl_options_args,
265 schedule_max_constant_term)
266ISL_CTX_GET_INT_DEF(isl_options, struct isl_options, isl_options_args,
267 schedule_max_constant_term)
268
269ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
270 schedule_maximize_band_depth)
271ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
272 schedule_maximize_band_depth)
273
274ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
275 schedule_maximize_coincidence)
276ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
277 schedule_maximize_coincidence)
278
279ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
280 schedule_split_scaled)
281ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
282 schedule_split_scaled)
283
284ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
285 schedule_treat_coalescing)
286ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
287 schedule_treat_coalescing)
288
289ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
290 schedule_separate_components)
291ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
292 schedule_separate_components)
293
294ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
295 schedule_whole_component)
296ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
297 schedule_whole_component)
298
299ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
300 schedule_outer_coincidence)
301ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
302 schedule_outer_coincidence)
303
304ISL_CTX_SET_CHOICE_DEF(isl_options, struct isl_options, isl_options_args,
305 schedule_algorithm)
306ISL_CTX_GET_CHOICE_DEF(isl_options, struct isl_options, isl_options_args,
307 schedule_algorithm)
308
309ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
310 schedule_carry_self_first)
311ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
312 schedule_carry_self_first)
313
314ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
315 schedule_serialize_sccs)
316ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
317 schedule_serialize_sccs)
318
319ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
320 tile_scale_tile_loops)
321ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
322 tile_scale_tile_loops)
323
324ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
325 tile_shift_point_loops)
326ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
327 tile_shift_point_loops)
328
329ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
330 ast_build_atomic_upper_bound)
331ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
332 ast_build_atomic_upper_bound)
333
334ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
335 ast_build_prefer_pdiv)
336ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
337 ast_build_prefer_pdiv)
338
339ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
340 ast_build_detect_min_max)
341ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
342 ast_build_detect_min_max)
343
344ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
345 ast_build_exploit_nested_bounds)
346ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
347 ast_build_exploit_nested_bounds)
348
349ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
350 ast_build_group_coscheduled)
351ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
352 ast_build_group_coscheduled)
353
354ISL_CTX_SET_STR_DEF(isl_options, struct isl_options, isl_options_args,
355 ast_iterator_type)
356ISL_CTX_GET_STR_DEF(isl_options, struct isl_options, isl_options_args,
357 ast_iterator_type)
358
359ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
360 ast_always_print_block)
361ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
362 ast_always_print_block)
363
364ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
365 ast_print_outermost_block)
366ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
367 ast_print_outermost_block)
368
369ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
370 ast_print_macro_once)
371ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
372 ast_print_macro_once)
373
374ISL_CTX_SET_CHOICE_DEF(isl_options, struct isl_options, isl_options_args,
375 ast_build_separation_bounds)
376ISL_CTX_GET_CHOICE_DEF(isl_options, struct isl_options, isl_options_args,
377 ast_build_separation_bounds)
378
379ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
380 ast_build_scale_strides)
381ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
382 ast_build_scale_strides)
383
384ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
385 ast_build_allow_else)
386ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
387 ast_build_allow_else)
388
389ISL_CTX_SET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
390 ast_build_allow_or)
391ISL_CTX_GET_BOOL_DEF(isl_options, struct isl_options, isl_options_args,
392 ast_build_allow_or)
polly simplify
Definition: Simplify.cpp:853
#define ISL_ARG_DEF(prefix, st, args)
Definition: arg.h:302
#define ISL_ARG_VERSION(print)
Definition: arg.h:283
#define ISL_ARG_CHOICE(st, f, s, l, c, d, h)
Definition: arg.h:134
#define ISL_ARG_BOOL(st, f, s, l, d, h)
Definition: arg.h:182
#define ISL_ARG_HIDDEN
Definition: arg.h:61
#define ISL_ARG_INT(st, f, s, l, a, d, h)
Definition: arg.h:198
#define ISL_ARG_FLAGS(st, f, s, l, c, d, h)
Definition: arg.h:270
#define ISL_ARGS_START(s, name)
Definition: arg.h:113
#define ISL_ARGS_END
Definition: arg.h:117
#define ISL_ARG_STR(st, f, s, l, a, d, h)
Definition: arg.h:245
#define ISL_ARG_PHANTOM_USER_CHOICE_F(s, l, c, setter, d, h, fl)
Definition: arg.h:152
#define ISL_ARG_ULONG(st, f, s, l, d, h)
Definition: arg.h:227
#define ISL_AST_BUILD_SEPARATION_BOUNDS_IMPLICIT
Definition: ast_build.h:33
#define ISL_AST_BUILD_SEPARATION_BOUNDS_EXPLICIT
Definition: ast_build.h:32
else
Definition: bilinear.c:6
if(d<=-1)
Definition: bilinear.c:1
for(int c0=1;c0< 3 *M - 1;c0+=3)
Definition: cholesky2.c:6
A()
#define ISL_CTX_GET_INT_DEF(prefix, st, args, field)
Definition: ctx.h:187
#define ISL_ARG_CTX_DEF(prefix, st, args)
Definition: ctx.h:181
#define ISL_CTX_GET_CHOICE_DEF(prefix, st, args, field)
Definition: ctx.h:248
#define ISL_CTX_SET_INT_DEF(prefix, st, args, field)
Definition: ctx.h:199
#define ISL_CTX_SET_CHOICE_DEF(prefix, st, args, field)
Definition: ctx.h:251
#define ISL_CTX_SET_BOOL_DEF(prefix, st, args, field)
Definition: ctx.h:245
#define ISL_CTX_GET_BOOL_DEF(prefix, st, args, field)
Definition: ctx.h:242
#define ISL_CTX_GET_STR_DEF(prefix, st, args, field)
Definition: ctx.h:212
#define ISL_CTX_SET_STR_DEF(prefix, st, args, field)
Definition: ctx.h:224
static void generate(MyASTConsumer &consumer, SourceManager &SM)
__isl_export __isl_give ISL_HMAP __isl_take ISL_KEY __isl_take ISL_VAL * val
Definition: hmap.h:32
static __isl_give isl_ast_expr * scale(__isl_take isl_ast_expr *expr, __isl_take isl_val *v)
static int coalesce(isl_ctx *ctx, int n, struct isl_coalesce_info *info)
static void print_stats(isl_ctx *ctx)
Definition: isl_ctx.c:283
static isl_bool coscheduled(void *first, void *second)
Definition: isl_flow.c:2460
static struct isl_arg_choice separation_bounds[]
Definition: isl_options.c:99
static void print_version(void)
Definition: isl_options.c:105
static struct isl_arg_flags bernstein_recurse[]
Definition: isl_options.c:58
#define ISL_SCHEDULE_FUSE_MAX
Definition: isl_options.c:75
static int set_fuse(void *opt, unsigned val)
Definition: isl_options.c:90
struct isl_arg_choice isl_gbr_choice[]
Definition: isl_options.c:26
static struct isl_arg_choice convex[]
Definition: isl_options.c:69
static struct isl_arg_choice on_error[]
Definition: isl_options.c:45
static struct isl_arg_choice bound[]
Definition: isl_options.c:39
#define ISL_SCHEDULE_FUSE_MIN
Definition: isl_options.c:76
struct isl_arg_choice isl_closure_choice[]
Definition: isl_options.c:33
static struct isl_arg_choice fuse[]
Definition: isl_options.c:78
static struct isl_arg_choice isl_schedule_algorithm_choice[]
Definition: isl_options.c:52
struct isl_arg_choice isl_pip_context_choice[]
Definition: isl_options.c:20
#define ISL_CONTEXT_LEXMIN
#define ISL_CONVEX_HULL_FM
#define ISL_CLOSURE_ISL
#define ISL_CONTEXT_GBR
#define ISL_GBR_ONCE
#define ISL_GBR_NEVER
#define ISL_GBR_ALWAYS
#define ISL_CONVEX_HULL_WRAP
#define ISL_CLOSURE_BOX
#define ISL_BERNSTEIN_INTERVALS
#define ISL_BERNSTEIN_FACTORS
static isl_bool not(__isl_keep isl_set *set, void *user)
static __isl_give isl_schedule_node * carry(__isl_take isl_schedule_node *node, struct isl_sched_graph *graph, int fallback, int coincidence)
static int at(int i, void *user)
static __isl_give isl_schedule_node * recurse(struct isl_scc_graph *scc_graph, int *pos, int n, __isl_take isl_schedule_node *node)
static __isl_keep isl_space * nested(__isl_keep isl_space *space, enum isl_dim_type type)
Definition: isl_space.c:982
static __isl_give isl_set * split(__isl_take isl_set *empty, __isl_take isl_set *min_expr, __isl_take isl_mat *cst)
Definition: isl_tab_pip.c:4881
const char * tile
Definition: isl_test.c:10699
enum isl_fold type
Definition: isl_test.c:4017
const char * schedule
Definition: isl_test.c:10697
const char * hull
Definition: isl_test.c:1485
const char * point
Definition: isl_test.c:10700
const char * context
Definition: isl_test.c:1784
static isl_stat triangulate(__isl_keep isl_cell *cell, __isl_keep isl_vec *v, int *simplex_ids, int n_simplex, int *other_ids, int n_other, isl_stat(*fn)(__isl_take isl_cell *simplex, void *user), void *user)
#define ISL_SCHEDULE_ALGORITHM_ISL
Definition: options.h:38
#define ISL_BOUND_RANGE
Definition: options.h:25
#define ISL_BOUND_BERNSTEIN
Definition: options.h:24
#define ISL_SCHEDULE_ALGORITHM_FEAUTRIER
Definition: options.h:39
#define ISL_ON_ERROR_ABORT
Definition: options.h:31
#define ISL_ON_ERROR_WARN
Definition: options.h:29
#define ISL_ON_ERROR_CONTINUE
Definition: options.h:30
a(0)
unsigned value
Definition: arg.h:22
static std::vector< Signature > each
static Signature domain
const char * isl_version(void)
Definition: isl_version.c:4