From 8f7d6c1c9c2b8e3b451622c2e7f0f50b02778095 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Wed, 17 Apr 2013 16:20:14 +0200 Subject: [PATCH] isl_ast_build_expr.c: remove left-over from refactoring Signed-off-by: Sven Verdoolaege --- isl_ast_build_expr.c | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/isl_ast_build_expr.c b/isl_ast_build_expr.c index 81688dee..86a9e6ef 100644 --- a/isl_ast_build_expr.c +++ b/isl_ast_build_expr.c @@ -12,30 +12,6 @@ #include #include -/* Compute the minimum of the integer affine expression "obj" over the points - * in build->domain and put the result in *opt. - */ -enum isl_lp_result isl_ast_build_min(__isl_keep isl_ast_build *build, - __isl_keep isl_aff *obj, isl_int *opt) -{ - if (!build) - return isl_lp_error; - - return isl_set_min(build->domain, obj, opt); -} - -/* Compute the maximum of the integer affine expression "obj" over the points - * in build->domain and put the result in *opt. - */ -enum isl_lp_result isl_ast_build_max(__isl_keep isl_ast_build *build, - __isl_keep isl_aff *obj, isl_int *opt) -{ - if (!build) - return isl_lp_error; - - return isl_set_max(build->domain, obj, opt); -} - /* Compute the "opposite" of the (numerator of the) argument of a div * with denonimator "d". * -- 2.11.4.GIT