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
evalue.c: esum_over_domain_cst: pass down options to barvinok_enumerate_e
[barvinok.git]
/
check_union.sh.in
blob
dbe3f93ea4de0a93a7f357256084ada4b2d585f4
1
#!/bin/sh
2
3
EXEEXT
=
"@EXEEXT@"
4
top_srcdir
=
"@top_srcdir@"
5
6
for
i
in
"
$top_srcdir
"
/
test
s
/
ehrhart_union
/*;
do
7
if
test -f
$i
;
then
8
for
spec
in
'random'
'bf'
'df'
;
do
9
opt
=
"--specialization=
$spec
$options
"
;
10
echo
$i $opt
;
11
.
/
barvinok_union
$EXEEXT
-c
$opt
<
$i
||
exit
;
12
done
13
fi
14
done