update isl for change in lexicographic optimization
[isa.git] / size_options.c
blob1c33423750c1017bb3a03ece77cbb54f8699ac6d
1 #include <barvinok/options.h>
2 #include "size_options.h"
3 #include "config.h"
5 static struct isl_arg_choice size[] = {
6 {"bernstein", SIZE_BERNSTEIN},
7 {"simulate", SIZE_SIMULATE},
8 {0}
9 };
11 ISL_ARGS_START(struct size_options, size_options_args)
12 ISL_ARG_CHILD(struct size_options, barvinok, NULL, &barvinok_options_args,
13 "barvinok options")
14 ISL_ARG_CHOICE(struct size_options, flags, 0, "size", size, 0, NULL)
15 ISL_ARGS_END