add isl_space_extend_domain_with_range
[platform/upstream/isl.git] / closure.c
index bc020f2..43d69d4 100644 (file)
--- a/closure.c
+++ b/closure.c
@@ -1,5 +1,5 @@
 #include <assert.h>
-#include <isl_map.h>
+#include <isl/map.h>
 
 int main(int argc, char **argv)
 {
@@ -10,9 +10,9 @@ int main(int argc, char **argv)
 
        options = isl_options_new_with_defaults();
        assert(options);
-       argc = isl_options_parse(options, argc, argv);
+       argc = isl_options_parse(options, argc, argv, ISL_ARG_ALL);
 
-       ctx = isl_ctx_alloc_with_options(options);
+       ctx = isl_ctx_alloc_with_options(isl_options_arg, options);
 
        map = isl_map_read_from_file(ctx, stdin, -1);
        map = isl_map_transitive_closure(map, &exact);