repo.or.cz
/
barvinok.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
perform another range reduction after summation
[barvinok.git]
/
Enumeration_Free.c
blob
d97e52295f2a92563759f148c7860374c773cf91
1
#include <polylib/polylibgmp.h>
2
3
void
Enumeration_Free
(
Enumeration
*
en
)
4
{
5
Enumeration
*
ee
;
6
7
while
(
en
)
8
{
9
free_evalue_refs
( &(
en
->
EP
) );
10
Polyhedron_Free
(
en
->
ValidityDomain
);
11
ee
=
en
->
next
;
12
free
(
en
);
13
en
=
ee
;
14
}
15
}