X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=polyhedron_detect_equalities.c;h=f66d08f82a756aff56df0586f72b7a5f2328fc37;hb=7b3b67d52653ed07cda4f0f86f0f6cfbfebdce16;hp=77708624de597eb47c7c0b100b0163c281d5b472;hpb=309036cf4fb6d77a3287a8de8a9098c0a1211778;p=platform%2Fupstream%2Fisl.git diff --git a/polyhedron_detect_equalities.c b/polyhedron_detect_equalities.c index 7770862..f66d08f 100644 --- a/polyhedron_detect_equalities.c +++ b/polyhedron_detect_equalities.c @@ -7,14 +7,14 @@ * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium */ -#include "isl_set.h" +#include 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);