X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=components%2Fbinaries%2Ftptp2grafite%2FMakefile;h=d79c2661dbcdea785e51ae4af7f599e5a8cb090e;hb=c30eca6661470cc26554ebcdd1514f9f696e3da4;hp=c8ea0ebf2f00858592a090117b057ba977b195dd;hpb=d94717df15299e880a5775b04ced81bad64761bd;p=helm.git diff --git a/components/binaries/tptp2grafite/Makefile b/components/binaries/tptp2grafite/Makefile index c8ea0ebf2..d79c2661d 100644 --- a/components/binaries/tptp2grafite/Makefile +++ b/components/binaries/tptp2grafite/Makefile @@ -24,3 +24,16 @@ testall: tptp2grafite for X in `cat unit_equality_problems`; do\ cat $(TPTPDIR)/$$X | ./tptp2grafite || echo ERROR PARSING $$X;\ done + +generate: + for X in `cat unit_equality_problems`; do\ + ./tptp2grafite -tptppath /home/tassi/TPTP-v3.1.1/ $$X \ + > ../../../matita/tests/TPTP/$$X.ma || echo Failed: $$X; \ + done + +parse: + for X in `cat unit_equality_problems`; do\ + echo "Parsing $$X"; \ + ./tptp2grafite -tptppath /home/tassi/TPTP-v3.1.1/ $$X \ + > /dev/null || echo Failed: $$X; \ + done