Skip to content

Commit e882beb

Browse files
Merge pull request #1901 from monien/integral_double_exp
Integral double exp
2 parents c877ce6 + 826e25a commit e882beb

File tree

2 files changed

+497
-0
lines changed

2 files changed

+497
-0
lines changed

dev/check_examples.sh

+17
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,23 @@ then
185185
fi
186186
echo "PASS"
187187
exit 0
188+
elif test "$1" = "integrals_double_exp";
189+
then
190+
echo -n "integrals using double exponential...."
191+
res=$($2/integrals_double_exp)
192+
if test "$?" != "0";
193+
then
194+
echo "FAIL"
195+
exit 1
196+
fi
197+
echo "$res" | perl -0ne 'if (/result = 0.8862269254527580/g) {$found=1; last} END {exit !$found }'
198+
if test "$?" != "0";
199+
then
200+
echo "FAIL"
201+
exit 2
202+
fi
203+
echo "PASS"
204+
exit 0
188205
elif test "$1" = "keiper_li";
189206
then
190207
echo "keiper_li....SKIPPED"

0 commit comments

Comments
 (0)