]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/binaries/matitaprover/run_on_a_list.sh
Added TreeLimitRun
[helm.git] / helm / software / components / binaries / matitaprover / run_on_a_list.sh
index c80e128e218c2aec2cd952be1c189d984d4c5842..420b6b956ff4e2f7190a83887b7183e093555fb8 100755 (executable)
@@ -4,11 +4,11 @@ if [ -z "$1" ] || [ -z "$2" ]; then
   echo usage: $0 timeout problem_list
   exit 1
 fi
-
+gcc TreeLimitedRun.c -o TreeLimitedRun
 > log
 for PROBLEM in `cat $2`; do
   echo running on $PROBLEM
-  ./matitaprover.native --timeout $1 --tptppath ~/TPTP-v3.7.0/ $PROBLEM \
+  ./TreeLimitedRun -q0 $1 $(($1*2)) ./matitaprover.native --tptppath ~/TPTP-v3.7.0/ $PROBLEM \
     >> log 2>&1
   echo So far `grep 'SZS status Unsatisfiable' log|wc -l` solved
 done