]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/binaries/matitaprover/run_on_a_list.sh
mod change (-x)
[helm.git] / helm / software / components / binaries / matitaprover / run_on_a_list.sh
old mode 100755 (executable)
new mode 100644 (file)
index c80e128..79c1b42
@@ -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.1.1/ $PROBLEM \
     >> log 2>&1
   echo So far `grep 'SZS status Unsatisfiable' log|wc -l` solved
 done