src/HOL/TPTP/lib/Tools/tptp_translate
author blanchet
Mon, 22 Jun 2015 16:56:03 +0200
changeset 60544 3daf5eacec05
parent 54547 c999e2533487
child 60545 bcd11dcd0d90
permissions -rwxr-xr-x
removed (now illegal) semicolons in generated theory files
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
54433
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
     1
#!/usr/bin/env bash
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
     2
#
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
     3
# Author: Jasmin Blanchette
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
     4
#
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
     5
# DESCRIPTION: translate between TPTP formats
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
     6
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
     7
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
     8
PRG="$(basename "$0")"
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
     9
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    10
function usage() {
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    11
  echo
54472
073f041d83ae send output of "tptp_translate" to standard output, to simplify Geoff Sutcliffe's life
blanchet
parents: 54434
diff changeset
    12
  echo "Usage: isabelle $PRG FORMAT FILE"
54433
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    13
  echo
54547
c999e2533487 renamed TFF0/THF0 to three-letter acronyms, in keeping with new TPTP policy
blanchet
parents: 54472
diff changeset
    14
  echo "  Translates TPTP input file to the specified format (\"FOF\", \"TF0\", \"TH0\", or \"DFG\")."
54472
073f041d83ae send output of "tptp_translate" to standard output, to simplify Geoff Sutcliffe's life
blanchet
parents: 54434
diff changeset
    15
  echo "  Emits the result to standard output."
54433
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    16
  echo
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    17
  exit 1
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    18
}
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    19
54472
073f041d83ae send output of "tptp_translate" to standard output, to simplify Geoff Sutcliffe's life
blanchet
parents: 54434
diff changeset
    20
[ "$#" -ne 2 -o "$1" = "-?" ] && usage
54433
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    21
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    22
SCRATCH="Scratch_${PRG}_$$_${RANDOM}"
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    23
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    24
args=("$@")
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    25
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    26
echo "theory $SCRATCH imports \"$TPTP_HOME/ATP_Problem_Import\" begin \
60544
3daf5eacec05 removed (now illegal) semicolons in generated theory files
blanchet
parents: 54547
diff changeset
    27
ML {* ATP_Problem_Import.translate_tptp_file @{theory} \"${args[0]}\" \"${args[1]}\" *} end" \
54433
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    28
  > /tmp/$SCRATCH.thy
54434
e275d520f49d implemented 'tptp_translate'
blanchet
parents: 54433
diff changeset
    29
"$ISABELLE_PROCESS" -q -e "use_thy \"/tmp/$SCRATCH\"; exit 1;" HOL-TPTP | grep --line-buffered -v "^###\|^PROOF FAILED for depth\|^Failure node\|inferences so far.  Searching to depth\|^val \|^Loading theory"