From dc6eb0919ac3094074fc11769079b82978d651ae Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Thu, 13 Jan 2011 12:23:49 +0100 Subject: [PATCH] isl_basic_map_insert: don't simplify the result None of the constraints are changed in any way, so there shouldn't be any need to call isl_basic_map_simplify. Signed-off-by: Sven Verdoolaege --- isl_map.c | 1 - 1 file changed, 1 deletion(-) diff --git a/isl_map.c b/isl_map.c index d326458..85124bb 100644 --- a/isl_map.c +++ b/isl_map.c @@ -2373,7 +2373,6 @@ __isl_give isl_basic_map *isl_basic_map_insert(__isl_take isl_basic_map *bmap, res = isl_basic_map_alloc_dim(res_dim, bmap->n_div, bmap->n_eq, bmap->n_ineq); res = add_constraints_dim_map(res, bmap, dim_map); - res = isl_basic_map_simplify(res); return isl_basic_map_finalize(res); } -- 2.7.4