1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#! /bin/bash
echo
echo "***"
echo "*** !!! Important remark !!!"
echo "***"
echo "*** Please note that only the output file *.puzzle is checked"
echo "*** for identity. The overall precision reached in the program"
echo "*** is heavily dependent on the compiler as well as the optimization"
echo "*** level (-O) used to compile the executable."
echo "*** Hence, even if tests are marked as failed this might just be"
echo "*** due to differences in less significant digits caused by rounding"
echo "*** errors from less acurate computations for the sake of faster"
echo "*** running times. (If you want to be sure about this please refer"
echo "*** to your compiler's manual!)"
echo "***"
echo "*** Please check the output file differences which are printed during the tests."
echo "*** The template files which the results are checked against have been"
echo "*** generated with TREE-PUZZLE 5.2 compiled with GCC version 3.3-20030226"
echo "*** and default compiler flags '-g -O2' and using the SPRNG random number"
echo "*** generator."
echo "***"
echo
exit 77
|