projects
/
platform
/
upstream
/
isl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
023e531
)
isl_basic_map_neg: gauss result
author
Sven Verdoolaege
<skimo@kotnet.org>
Tue, 23 Aug 2011 13:22:53 +0000
(15:22 +0200)
committer
Sven Verdoolaege
<skimo@kotnet.org>
Tue, 23 Aug 2011 13:22:53 +0000
(15:22 +0200)
Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
isl_map.c
patch
|
blob
|
history
diff --git
a/isl_map.c
b/isl_map.c
index
7496da7
..
2321dd7
100644
(file)
--- a/
isl_map.c
+++ b/
isl_map.c
@@
-3025,6
+3025,7
@@
struct isl_basic_map *isl_basic_map_neg(struct isl_basic_map *bmap)
for (i = 0; i < bmap->n_div; ++i)
for (j = 0; j < n; ++j)
isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
+ bmap = isl_basic_map_gauss(bmap, NULL);
return isl_basic_map_finalize(bmap);
}