src/HOL/TPTP/lib/Tools/tptp_translate
author wenzelm
Thu, 10 Mar 2016 17:30:04 +0100
changeset 62589 b5783412bfed
parent 62588 cd266473b81b
child 62634 aa3b47b32100
permissions -rwxr-xr-x
prefer plain "isabelle" from PATH within Isabelle settings environment;
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
60546
dcb0b9b42fcb automatically build image
blanchet
parents: 60545
diff changeset
    26
isabelle build -b HOL-TPTP
dcb0b9b42fcb automatically build image
blanchet
parents: 60545
diff changeset
    27
54433
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    28
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
    29
ML {* ATP_Problem_Import.translate_tptp_file @{theory} \"${args[0]}\" \"${args[1]}\" *} end" \
54433
b1721e5b8717 reintroduced (unimplemented) 'tptp_translate' tool
blanchet
parents:
diff changeset
    30
  > /tmp/$SCRATCH.thy
62589
b5783412bfed prefer plain "isabelle" from PATH within Isabelle settings environment;
wenzelm
parents: 62588
diff changeset
    31
isabelle process -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\|^Warning-The type of\|^   monotype.$"