4 #include <isl/union_set.h>
5 #include <isl/union_map.h>
8 #if defined(__cplusplus)
13 typedef struct isl_schedule isl_schedule;
15 int isl_options_set_schedule_max_coefficient(isl_ctx *ctx, int val);
16 int isl_options_get_schedule_max_coefficient(isl_ctx *ctx);
18 int isl_options_set_schedule_max_constant_term(isl_ctx *ctx, int val);
19 int isl_options_get_schedule_max_constant_term(isl_ctx *ctx);
21 int isl_options_set_schedule_maximize_band_depth(isl_ctx *ctx, int val);
22 int isl_options_get_schedule_maximize_band_depth(isl_ctx *ctx);
24 int isl_options_set_schedule_outer_zero_distance(isl_ctx *ctx, int val);
25 int isl_options_get_schedule_outer_zero_distance(isl_ctx *ctx);
27 int isl_options_set_schedule_split_scaled(isl_ctx *ctx, int val);
28 int isl_options_get_schedule_split_scaled(isl_ctx *ctx);
30 #define ISL_SCHEDULE_FUSE_MAX 0
31 #define ISL_SCHEDULE_FUSE_MIN 1
32 int isl_options_set_schedule_fuse(isl_ctx *ctx, int val);
33 int isl_options_get_schedule_fuse(isl_ctx *ctx);
35 __isl_give isl_schedule *isl_union_set_compute_schedule(
36 __isl_take isl_union_set *domain,
37 __isl_take isl_union_map *validity,
38 __isl_take isl_union_map *proximity);
39 void *isl_schedule_free(__isl_take isl_schedule *sched);
40 __isl_give isl_union_map *isl_schedule_get_map(__isl_keep isl_schedule *sched);
42 isl_ctx *isl_schedule_get_ctx(__isl_keep isl_schedule *sched);
44 __isl_give isl_band_list *isl_schedule_get_band_forest(
45 __isl_keep isl_schedule *schedule);
47 __isl_give isl_printer *isl_printer_print_schedule(__isl_take isl_printer *p,
48 __isl_keep isl_schedule *schedule);
49 void isl_schedule_dump(__isl_keep isl_schedule *schedule);
51 #if defined(__cplusplus)