isl_aff_normalize: remove unused divs
[platform/upstream/isl.git] / polyhedron_detect_equalities.c
index 7770862..f66d08f 100644 (file)
@@ -7,14 +7,14 @@
  * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
  */
 
-#include "isl_set.h"
+#include <isl/set.h>
 
 int main(int argc, char **argv)
 {
        struct isl_ctx *ctx = isl_ctx_alloc();
        struct isl_basic_set *bset;
 
-       bset = isl_basic_set_read_from_file(ctx, stdin, 0, ISL_FORMAT_POLYLIB);
+       bset = isl_basic_set_read_from_file(ctx, stdin);
        bset = isl_basic_set_detect_equalities(bset);
        isl_basic_set_print(bset, stdout, 0, "", "", ISL_FORMAT_POLYLIB);
        isl_basic_set_free(bset);