X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fbinaries%2Fmatitaprover%2Frun_on_a_list.sh;h=420b6b956ff4e2f7190a83887b7183e093555fb8;hb=ee7855524284ea3a282c68f22ffa36e535a11810;hp=dbcd6563130c303541a19f83ad062a348bd107e3;hpb=9b3325753f813248f6e8cfcc1312a1edac613cfc;p=helm.git diff --git a/helm/software/components/binaries/matitaprover/run_on_a_list.sh b/helm/software/components/binaries/matitaprover/run_on_a_list.sh index dbcd65631..420b6b956 100755 --- a/helm/software/components/binaries/matitaprover/run_on_a_list.sh +++ b/helm/software/components/binaries/matitaprover/run_on_a_list.sh @@ -4,15 +4,15 @@ 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 Unsatisfiable log|wc -l` solved + echo So far `grep 'SZS status Unsatisfiable' log|wc -l` solved done echo Solved: -grep 'Unsatisfiable' log | wc -l +grep 'SZS status Unsatisfiable' log | wc -l echo Failed: grep 'Timeout' log | wc -l