isl_tab_basic_map_partial_lexopt: remove samples that are no longer useful
[isl.git] / polyhedron_detect_equalities.c
bloba46622289ec3c2338332b1e1fb641bea0ab7347e
1 #include "isl_set.h"
3 int main(int argc, char **argv)
5 struct isl_ctx *ctx = isl_ctx_alloc();
6 struct isl_basic_set *bset;
8 bset = isl_basic_set_read_from_file(ctx, stdin, 0, ISL_FORMAT_POLYLIB);
9 bset = isl_basic_set_detect_equalities(bset);
10 isl_basic_set_print(bset, stdout, 0, "", "", ISL_FORMAT_POLYLIB);
11 isl_basic_set_free(bset);
12 isl_ctx_free(ctx);
14 return 0;