X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fbinaries%2Ftptp2grafite%2FMakefile;h=d79c2661dbcdea785e51ae4af7f599e5a8cb090e;hb=857223e09f40bb10a0935bfe0278f29e1dc4a13c;hp=c8ea0ebf2f00858592a090117b057ba977b195dd;hpb=372dd23aa25ac67965f5427f7b56aa7d1f465138;p=helm.git diff --git a/helm/software/components/binaries/tptp2grafite/Makefile b/helm/software/components/binaries/tptp2grafite/Makefile index c8ea0ebf2..d79c2661d 100644 --- a/helm/software/components/binaries/tptp2grafite/Makefile +++ b/helm/software/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