src/HOL/Tools/ATP/atp_proof.ML
author blanchet
Thu, 19 May 2011 10:24:13 +0200
changeset 42844 f133c030856a
parent 42748 a37095d03074
child 42848 403d3b4a95fc
permissions -rw-r--r--
better error reporting: detect missing E proofs and remove Vampire native format error
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
     1
(*  Title:      HOL/Tools/ATP/atp_proof.ML
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
     2
    Author:     Lawrence C. Paulson, Cambridge University Computer Laboratory
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
     3
    Author:     Claire Quigley, Cambridge University Computer Laboratory
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
     4
    Author:     Jasmin Blanchette, TU Muenchen
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
     5
39454
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
     6
Abstract representation of ATP proofs and TSTP/Vampire/SPASS syntax.
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
     7
*)
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
     8
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
     9
signature ATP_PROOF =
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    10
sig
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    11
  type 'a fo_term = 'a ATP_Problem.fo_term
42531
a462dbaa584f added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents: 42526
diff changeset
    12
  type ('a, 'b, 'c) formula = ('a, 'b, 'c) ATP_Problem.formula
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    13
39491
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
    14
  datatype failure =
42587
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    15
    Unprovable |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    16
    IncompleteUnprovable |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    17
    ProofMissing |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    18
    UnsoundProof of bool |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    19
    CantConnect |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    20
    TimedOut |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    21
    OutOfResources |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    22
    SpassTooOld |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    23
    VampireTooOld |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    24
    NoPerl |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    25
    NoLibwwwPerl |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    26
    NoRealZ3 |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    27
    MalformedInput |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    28
    MalformedOutput |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    29
    Interrupted |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    30
    Crashed |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    31
    InternalError |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    32
    UnknownError of string
39491
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
    33
39455
c6b21584f336 merge constructors
blanchet
parents: 39454
diff changeset
    34
  type step_name = string * string option
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    35
39453
1740a2d6bef9 use the same TSTP/Vampire/SPASS parser for one-liners as for Isar proofs
blanchet
parents: 39452
diff changeset
    36
  datatype 'a step =
1740a2d6bef9 use the same TSTP/Vampire/SPASS parser for one-liners as for Isar proofs
blanchet
parents: 39452
diff changeset
    37
    Definition of step_name * 'a * 'a |
1740a2d6bef9 use the same TSTP/Vampire/SPASS parser for one-liners as for Isar proofs
blanchet
parents: 39452
diff changeset
    38
    Inference of step_name * 'a * step_name list
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    39
42531
a462dbaa584f added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents: 42526
diff changeset
    40
  type 'a proof = ('a, 'a, 'a fo_term) formula step list
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    41
39457
b505208f435d avoid code duplication
blanchet
parents: 39455
diff changeset
    42
  val strip_spaces : (char -> bool) -> string -> string
41259
13972ced98d9 more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
blanchet
parents: 41222
diff changeset
    43
  val short_output : bool -> string -> string
41744
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
    44
  val string_for_failure : failure -> string
39491
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
    45
  val extract_important_message : string -> string
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
    46
  val extract_known_failure :
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
    47
    (failure * string) list -> string -> failure option
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
    48
  val extract_tstplike_proof_and_outcome :
42060
889d767ce5f4 make Minimizer honor "verbose" and "debug" options better
blanchet
parents: 41944
diff changeset
    49
    bool -> bool -> bool -> int -> (string * string) list
889d767ce5f4 make Minimizer honor "verbose" and "debug" options better
blanchet
parents: 41944
diff changeset
    50
    -> (failure * string) list -> string -> string * failure option
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    51
  val is_same_step : step_name * step_name -> bool
42449
494e4ac5b0f8 detect some unsound proofs before showing them to the user
blanchet
parents: 42060
diff changeset
    52
  val atp_proof_from_tstplike_proof : string -> string proof
39454
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
    53
  val map_term_names_in_atp_proof :
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
    54
    (string -> string) -> string proof -> string proof
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
    55
  val nasty_atp_proof : string Symtab.table -> string proof -> string proof
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    56
end;
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    57
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    58
structure ATP_Proof : ATP_PROOF =
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    59
struct
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    60
39491
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
    61
open ATP_Problem
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
    62
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
    63
datatype failure =
42587
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    64
  Unprovable |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    65
  IncompleteUnprovable |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    66
  ProofMissing |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    67
  UnsoundProof of bool |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    68
  CantConnect |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    69
  TimedOut |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    70
  OutOfResources |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    71
  SpassTooOld |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    72
  VampireTooOld |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    73
  NoPerl |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    74
  NoLibwwwPerl |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    75
  NoRealZ3 |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    76
  MalformedInput |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    77
  MalformedOutput |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    78
  Interrupted |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    79
  Crashed |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    80
  InternalError |
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
    81
  UnknownError of string
39491
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
    82
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    83
fun strip_spaces_in_list _ [] = []
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    84
  | strip_spaces_in_list _ [c1] = if Char.isSpace c1 then [] else [str c1]
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    85
  | strip_spaces_in_list is_evil [c1, c2] =
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    86
    strip_spaces_in_list is_evil [c1] @ strip_spaces_in_list is_evil [c2]
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    87
  | strip_spaces_in_list is_evil (c1 :: c2 :: c3 :: cs) =
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    88
    if Char.isSpace c1 then
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    89
      strip_spaces_in_list is_evil (c2 :: c3 :: cs)
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    90
    else if Char.isSpace c2 then
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    91
      if Char.isSpace c3 then
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    92
        strip_spaces_in_list is_evil (c1 :: c3 :: cs)
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    93
      else
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    94
        str c1 :: (if forall is_evil [c1, c3] then [" "] else []) @
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    95
        strip_spaces_in_list is_evil (c3 :: cs)
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    96
    else
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    97
      str c1 :: strip_spaces_in_list is_evil (c2 :: c3 :: cs)
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    98
fun strip_spaces is_evil =
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
    99
  implode o strip_spaces_in_list is_evil o String.explode
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   100
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   101
fun is_ident_char c = Char.isAlphaNum c orelse c = #"_"
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   102
val strip_spaces_except_between_ident_chars = strip_spaces is_ident_char
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   103
41259
13972ced98d9 more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
blanchet
parents: 41222
diff changeset
   104
fun elide_string threshold s =
13972ced98d9 more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
blanchet
parents: 41222
diff changeset
   105
  if size s > threshold then
13972ced98d9 more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
blanchet
parents: 41222
diff changeset
   106
    String.extract (s, 0, SOME (threshold div 2 - 5)) ^ " ...... " ^
13972ced98d9 more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
blanchet
parents: 41222
diff changeset
   107
    String.extract (s, size s - (threshold + 1) div 2 + 6, NONE)
13972ced98d9 more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
blanchet
parents: 41222
diff changeset
   108
  else
13972ced98d9 more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
blanchet
parents: 41222
diff changeset
   109
    s
13972ced98d9 more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
blanchet
parents: 41222
diff changeset
   110
fun short_output verbose output =
42060
889d767ce5f4 make Minimizer honor "verbose" and "debug" options better
blanchet
parents: 41944
diff changeset
   111
  if verbose then
889d767ce5f4 make Minimizer honor "verbose" and "debug" options better
blanchet
parents: 41944
diff changeset
   112
    if output = "" then "No details available" else elide_string 1000 output
889d767ce5f4 make Minimizer honor "verbose" and "debug" options better
blanchet
parents: 41944
diff changeset
   113
  else
889d767ce5f4 make Minimizer honor "verbose" and "debug" options better
blanchet
parents: 41944
diff changeset
   114
    ""
41259
13972ced98d9 more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
blanchet
parents: 41222
diff changeset
   115
41744
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   116
val missing_message_tail =
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   117
  " appears to be missing. You will need to install it if you want to invoke \
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   118
  \remote provers."
39491
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   119
41744
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   120
fun string_for_failure Unprovable =
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   121
    "The problem is unprovable."
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   122
  | string_for_failure IncompleteUnprovable =
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   123
    "The prover gave up."
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   124
  | string_for_failure ProofMissing =
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   125
    "The prover claims the conjecture is a theorem but did not provide a proof."
42587
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
   126
  | string_for_failure (UnsoundProof false) =
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
   127
    "The prover found a type-unsound proof (or, very unlikely, your axioms \
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
   128
    \are inconsistent). Try passing the \"full_types\" option to Sledgehammer \
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
   129
    \to avoid such spurious proofs."
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
   130
  | string_for_failure (UnsoundProof true) =
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
   131
    "The prover found a type-unsound proof even though a supposedly type-sound \
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
   132
    \encoding was used (or, very unlikely, your axioms are inconsistent). You \
4fbb1de05169 fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
blanchet
parents: 42550
diff changeset
   133
    \might want to report this to the Isabelle developers."
41744
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   134
  | string_for_failure CantConnect = "Cannot connect to remote server."
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   135
  | string_for_failure TimedOut = "Timed out."
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   136
  | string_for_failure OutOfResources = "The prover ran out of resources."
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   137
  | string_for_failure SpassTooOld =
39491
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   138
    "Isabelle requires a more recent version of SPASS with support for the \
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   139
    \TPTP syntax. To install it, download and extract the package \
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   140
    \\"http://isabelle.in.tum.de/dist/contrib/spass-3.7.tar.gz\" and add the \
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   141
    \\"spass-3.7\" directory's absolute path to " ^
41944
b97091ae583a Path.print is the official way to show file-system paths to users -- note that Path.implode often indicates violation of the abstract datatype;
wenzelm
parents: 41744
diff changeset
   142
    Path.print (Path.expand (Path.appends
39491
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   143
               (Path.variable "ISABELLE_HOME_USER" ::
41944
b97091ae583a Path.print is the official way to show file-system paths to users -- note that Path.implode often indicates violation of the abstract datatype;
wenzelm
parents: 41744
diff changeset
   144
                map Path.basic ["etc", "components"]))) ^
39491
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   145
    " on a line of its own."
41744
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   146
  | string_for_failure VampireTooOld =
39491
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   147
    "Isabelle requires a more recent version of Vampire. To install it, follow \
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   148
    \the instructions from the Sledgehammer manual (\"isabelle doc\
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   149
    \ sledgehammer\")."
41744
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   150
  | string_for_failure NoPerl = "Perl" ^ missing_message_tail
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   151
  | string_for_failure NoLibwwwPerl =
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   152
    "The Perl module \"libwww-perl\"" ^ missing_message_tail
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   153
  | string_for_failure NoRealZ3 =
41222
f9783376d9b1 more precise/correct SMT error handling
blanchet
parents: 41203
diff changeset
   154
    "The environment variable \"Z3_REAL_SOLVER\" must be set to Z3's full path."
41744
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   155
  | string_for_failure MalformedInput =
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   156
    "The generated problem is malformed. Please report this to the Isabelle \
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   157
    \developers."
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   158
  | string_for_failure MalformedOutput = "The prover output is malformed."
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   159
  | string_for_failure Crashed = "The prover crashed."
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   160
  | string_for_failure InternalError = "An internal prover error occurred."
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   161
  | string_for_failure (UnknownError string) =
a18e7bbca258 make minimizer verbose
blanchet
parents: 41738
diff changeset
   162
    "A prover error occurred" ^
41334
3cb52cbf0eed enable E weight generation with unofficial latest version of E (tentatively called E 1.2B) -- backed by Judgment Day
blanchet
parents: 41265
diff changeset
   163
    (if string = "" then ". (Pass the \"verbose\" option for details.)"
3cb52cbf0eed enable E weight generation with unofficial latest version of E (tentatively called E 1.2B) -- backed by Judgment Day
blanchet
parents: 41265
diff changeset
   164
     else ":\n" ^ string)
39491
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   165
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   166
fun extract_delimited (begin_delim, end_delim) output =
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   167
  output |> first_field begin_delim |> the |> snd
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   168
         |> first_field end_delim |> the |> fst
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   169
         |> first_field "\n" |> the |> snd
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   170
  handle Option.Option => ""
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   171
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   172
val tstp_important_message_delims =
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   173
  ("% SZS start RequiredInformation", "% SZS end RequiredInformation")
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   174
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   175
fun extract_important_message output =
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   176
  case extract_delimited tstp_important_message_delims output of
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   177
    "" => ""
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   178
  | s => s |> space_explode "\n" |> filter_out (curry (op =) "")
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   179
           |> map (perhaps (try (unprefix "%")))
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   180
           |> map (perhaps (try (unprefix " ")))
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   181
           |> space_implode "\n " |> quote
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   182
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   183
(* Splits by the first possible of a list of delimiters. *)
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   184
fun extract_tstplike_proof delims output =
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   185
  case pairself (find_first (fn s => String.isSubstring s output))
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   186
                (ListPair.unzip delims) of
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   187
    (SOME begin_delim, SOME end_delim) =>
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   188
    extract_delimited (begin_delim, end_delim) output
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   189
  | _ => ""
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   190
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   191
fun extract_known_failure known_failures output =
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   192
  known_failures
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   193
  |> find_first (fn (_, pattern) => String.isSubstring pattern output)
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   194
  |> Option.map fst
2416666e6f94 refactoring: move ATP proof and error extraction code to "ATP_Proof" module
blanchet
parents: 39457
diff changeset
   195
42060
889d767ce5f4 make Minimizer honor "verbose" and "debug" options better
blanchet
parents: 41944
diff changeset
   196
fun extract_tstplike_proof_and_outcome debug verbose complete res_code
889d767ce5f4 make Minimizer honor "verbose" and "debug" options better
blanchet
parents: 41944
diff changeset
   197
                                       proof_delims known_failures output =
42844
f133c030856a better error reporting: detect missing E proofs and remove Vampire native format error
blanchet
parents: 42748
diff changeset
   198
   case extract_tstplike_proof proof_delims output of
f133c030856a better error reporting: detect missing E proofs and remove Vampire native format error
blanchet
parents: 42748
diff changeset
   199
     "" =>
f133c030856a better error reporting: detect missing E proofs and remove Vampire native format error
blanchet
parents: 42748
diff changeset
   200
     ("", SOME (if res_code = 0 andalso (not debug orelse output = "") then
f133c030856a better error reporting: detect missing E proofs and remove Vampire native format error
blanchet
parents: 42748
diff changeset
   201
                  ProofMissing
f133c030856a better error reporting: detect missing E proofs and remove Vampire native format error
blanchet
parents: 42748
diff changeset
   202
                else case extract_known_failure known_failures output of
f133c030856a better error reporting: detect missing E proofs and remove Vampire native format error
blanchet
parents: 42748
diff changeset
   203
                  SOME failure =>
f133c030856a better error reporting: detect missing E proofs and remove Vampire native format error
blanchet
parents: 42748
diff changeset
   204
                  if failure = IncompleteUnprovable andalso complete then
f133c030856a better error reporting: detect missing E proofs and remove Vampire native format error
blanchet
parents: 42748
diff changeset
   205
                    Unprovable
42060
889d767ce5f4 make Minimizer honor "verbose" and "debug" options better
blanchet
parents: 41944
diff changeset
   206
                  else
42844
f133c030856a better error reporting: detect missing E proofs and remove Vampire native format error
blanchet
parents: 42748
diff changeset
   207
                    failure
f133c030856a better error reporting: detect missing E proofs and remove Vampire native format error
blanchet
parents: 42748
diff changeset
   208
                | NONE => UnknownError (short_output verbose output)))
f133c030856a better error reporting: detect missing E proofs and remove Vampire native format error
blanchet
parents: 42748
diff changeset
   209
   | tstplike_proof => (tstplike_proof, NONE)
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   210
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   211
fun mk_anot (AConn (ANot, [phi])) = phi
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   212
  | mk_anot phi = AConn (ANot, [phi])
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   213
fun mk_aconn c (phi1, phi2) = AConn (c, [phi1, phi2])
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   214
39455
c6b21584f336 merge constructors
blanchet
parents: 39454
diff changeset
   215
type step_name = string * string option
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   216
39455
c6b21584f336 merge constructors
blanchet
parents: 39454
diff changeset
   217
fun is_same_step p = p |> pairself fst |> op =
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   218
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   219
fun step_name_ord p =
39455
c6b21584f336 merge constructors
blanchet
parents: 39454
diff changeset
   220
  let val q = pairself fst p in
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   221
    (* The "unprefix" part is to cope with remote Vampire's output. The proper
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   222
       solution would be to perform a topological sort, e.g. using the nice
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   223
       "Graph" functor. *)
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   224
    case pairself (Int.fromString o perhaps (try (unprefix "f"))) q of
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   225
      (NONE, NONE) => string_ord q
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   226
    | (NONE, SOME _) => LESS
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   227
    | (SOME _, NONE) => GREATER
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   228
    | (SOME i, SOME j) => int_ord (i, j)
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   229
  end
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   230
39453
1740a2d6bef9 use the same TSTP/Vampire/SPASS parser for one-liners as for Isar proofs
blanchet
parents: 39452
diff changeset
   231
datatype 'a step =
1740a2d6bef9 use the same TSTP/Vampire/SPASS parser for one-liners as for Isar proofs
blanchet
parents: 39452
diff changeset
   232
  Definition of step_name * 'a * 'a |
1740a2d6bef9 use the same TSTP/Vampire/SPASS parser for one-liners as for Isar proofs
blanchet
parents: 39452
diff changeset
   233
  Inference of step_name * 'a * step_name list
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   234
42531
a462dbaa584f added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents: 42526
diff changeset
   235
type 'a proof = ('a, 'a, 'a fo_term) formula step list
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   236
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   237
fun step_name (Definition (name, _, _)) = name
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   238
  | step_name (Inference (name, _, _)) = name
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   239
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   240
(**** PARSING OF TSTP FORMAT ****)
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   241
42536
a513730db7b0 unprefix evil "fof_" prefix inserted by ToFoF
blanchet
parents: 42531
diff changeset
   242
(* Strings enclosed in single quotes (e.g., file names) *)
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   243
val scan_general_id =
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   244
  $$ "'" |-- Scan.repeat (~$$ "'") --| $$ "'" >> implode
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   245
  || Scan.repeat ($$ "$") -- Scan.many1 Symbol.is_letdig
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   246
     >> (fn (ss1, ss2) => implode ss1 ^ implode ss2)
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   247
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   248
(* Generalized first-order terms, which include file names, numbers, etc. *)
42594
62398fdbb528 fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
blanchet
parents: 42587
diff changeset
   249
fun parse_annotation x =
42610
def5846169ce make sure that "file" annotations are read correctly in SInE-E and E proofs
blanchet
parents: 42605
diff changeset
   250
  ((scan_general_id ::: Scan.repeat ($$ " " |-- scan_general_id))
def5846169ce make sure that "file" annotations are read correctly in SInE-E and E proofs
blanchet
parents: 42605
diff changeset
   251
     -- Scan.optional parse_annotation [] >> op @
42594
62398fdbb528 fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
blanchet
parents: 42587
diff changeset
   252
   || $$ "(" |-- parse_annotations --| $$ ")"
62398fdbb528 fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
blanchet
parents: 42587
diff changeset
   253
   || $$ "[" |-- parse_annotations --| $$ "]") x
62398fdbb528 fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
blanchet
parents: 42587
diff changeset
   254
and parse_annotations x =
62398fdbb528 fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
blanchet
parents: 42587
diff changeset
   255
  (Scan.optional (parse_annotation
62398fdbb528 fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
blanchet
parents: 42587
diff changeset
   256
                  ::: Scan.repeat ($$ "," |-- parse_annotation)) []
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   257
   >> flat) x
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   258
39454
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   259
fun parse_term x =
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   260
  (scan_general_id
42543
f9d402d144d4 declare TFF types so that SNARK can be used with types
blanchet
parents: 42536
diff changeset
   261
     --| Scan.option ($$ ":" -- scan_general_id) (* ignore TFF types for now *)
42748
a37095d03074 drop support for Vampire's native output format -- it has too many undocumented oddities, e.g. "BDD definition:" lines
blanchet
parents: 42648
diff changeset
   262
     -- Scan.optional ($$ "(" |-- parse_terms --| $$ ")") []
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   263
   >> ATerm) x
39454
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   264
and parse_terms x = (parse_term ::: Scan.repeat ($$ "," |-- parse_term)) x
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   265
39598
57413334669d make SML/NJ happier
blanchet
parents: 39491
diff changeset
   266
fun parse_atom x =
57413334669d make SML/NJ happier
blanchet
parents: 39491
diff changeset
   267
  (parse_term -- Scan.option (Scan.option ($$ "!") --| $$ "=" -- parse_term)
57413334669d make SML/NJ happier
blanchet
parents: 39491
diff changeset
   268
   >> (fn (u1, NONE) => AAtom u1
57413334669d make SML/NJ happier
blanchet
parents: 39491
diff changeset
   269
        | (u1, SOME (NONE, u2)) => AAtom (ATerm ("c_equal", [u1, u2]))
57413334669d make SML/NJ happier
blanchet
parents: 39491
diff changeset
   270
        | (u1, SOME (SOME _, u2)) =>
57413334669d make SML/NJ happier
blanchet
parents: 39491
diff changeset
   271
          mk_anot (AAtom (ATerm ("c_equal", [u1, u2]))))) x
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   272
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   273
fun fo_term_head (ATerm (s, _)) = s
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   274
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   275
(* TPTP formulas are fully parenthesized, so we don't need to worry about
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   276
   operator precedence. *)
42605
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   277
fun parse_literal x =
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   278
  ((Scan.repeat ($$ "~") >> length)
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   279
      -- ($$ "(" |-- parse_formula --| $$ ")"
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   280
          || parse_quantified_formula
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   281
          || parse_atom)
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   282
      >> (fn (n, phi) => phi |> n mod 2 = 1 ? mk_anot)) x
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   283
and parse_formula x =
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   284
  (parse_literal
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   285
   -- Scan.option ((Scan.this_string "=>" >> K AImplies
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   286
                    || Scan.this_string "<=>" >> K AIff
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   287
                    || Scan.this_string "<~>" >> K ANotIff
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   288
                    || Scan.this_string "<=" >> K AIf
42605
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   289
                    || $$ "|" >> K AOr
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   290
                    || $$ "&" >> K AAnd)
39454
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   291
                   -- parse_formula)
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   292
   >> (fn (phi1, NONE) => phi1
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   293
        | (phi1, SOME (c, phi2)) => mk_aconn c (phi1, phi2))) x
42605
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   294
and parse_quantified_formula x =
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   295
  (($$ "!" >> K AForall || $$ "?" >> K AExists)
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   296
   --| $$ "[" -- parse_terms --| $$ "]" --| $$ ":" -- parse_literal
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   297
   >> (fn ((q, ts), phi) =>
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   298
          (* FIXME: TFF *)
8734eb0033b3 Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
blanchet
parents: 42603
diff changeset
   299
          AQuant (q, map (rpair NONE o fo_term_head) ts, phi))) x
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   300
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   301
val parse_tstp_extra_arguments =
42594
62398fdbb528 fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
blanchet
parents: 42587
diff changeset
   302
  Scan.optional ($$ "," |-- parse_annotation
62398fdbb528 fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
blanchet
parents: 42587
diff changeset
   303
                 --| Scan.option ($$ "," |-- parse_annotations)) []
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   304
41203
1393514094d7 fixed more issues with the Vampire output parser, and added support for Vampire's TSTP output (--proof tptp)
blanchet
parents: 41201
diff changeset
   305
val vampire_unknown_fact = "unknown"
42536
a513730db7b0 unprefix evil "fof_" prefix inserted by ToFoF
blanchet
parents: 42531
diff changeset
   306
val tofof_fact_prefix = "fof_"
41203
1393514094d7 fixed more issues with the Vampire output parser, and added support for Vampire's TSTP output (--proof tptp)
blanchet
parents: 41201
diff changeset
   307
42525
7a506b0b644f distinguish FOF and TFF (typed first-order) in ATP abstract syntax tree
blanchet
parents: 42450
diff changeset
   308
(* Syntax: (cnf|fof|tff)\(<num>, <formula_role>, <formula> <extra_arguments>\).
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   309
   The <num> could be an identifier, but we assume integers. *)
42603
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   310
fun parse_tstp_line x =
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   311
  (((Scan.this_string "cnf" || Scan.this_string "fof" || Scan.this_string "tff")
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   312
       -- $$ "(")
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   313
     |-- scan_general_id --| $$ "," -- Symbol.scan_id --| $$ ","
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   314
     -- parse_formula -- parse_tstp_extra_arguments --| $$ ")" --| $$ "."
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   315
    >> (fn (((num, role), phi), deps) =>
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   316
           let
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   317
             val (name, deps) =
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   318
               case deps of
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   319
                 ["file", _, s] =>
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   320
                 ((num,
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   321
                   if s = vampire_unknown_fact then NONE
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   322
                   else SOME (s |> perhaps (try (unprefix tofof_fact_prefix)))),
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   323
                  [])
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   324
               | _ => ((num, NONE), deps)
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   325
           in
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   326
             case role of
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   327
               "definition" =>
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   328
               (case phi of
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   329
                  AConn (AIff, [phi1 as AAtom _, phi2]) =>
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   330
                  Definition (name, phi1, phi2)
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   331
                | AAtom (ATerm ("c_equal", _)) =>
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   332
                  (* Vampire's equality proxy axiom *)
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   333
                  Inference (name, phi, map (rpair NONE) deps)
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   334
                | _ => raise Fail "malformed definition")
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   335
             | _ => Inference (name, phi, map (rpair NONE) deps)
a7dff503ffab make SML/NJ happy
blanchet
parents: 42594
diff changeset
   336
           end)) x
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   337
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   338
(**** PARSING OF SPASS OUTPUT ****)
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   339
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   340
(* SPASS returns clause references of the form "x.y". We ignore "y", whose role
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   341
   is not clear anyway. *)
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   342
val parse_dot_name = scan_general_id --| $$ "." --| scan_general_id
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   343
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   344
val parse_spass_annotations =
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   345
  Scan.optional ($$ ":" |-- Scan.repeat (parse_dot_name
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   346
                                         --| Scan.option ($$ ","))) []
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   347
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   348
(* It is not clear why some literals are followed by sequences of stars and/or
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   349
   pluses. We ignore them. *)
39602
ae2c3059f8cc make SML/NJ happier
blanchet
parents: 39598
diff changeset
   350
fun parse_decorated_atom x =
ae2c3059f8cc make SML/NJ happier
blanchet
parents: 39598
diff changeset
   351
  (parse_atom --| Scan.repeat ($$ "*" || $$ "+" || $$ " ")) x
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   352
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   353
fun mk_horn ([], []) = AAtom (ATerm ("c_False", []))
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   354
  | mk_horn ([], pos_lits) = foldr1 (mk_aconn AOr) pos_lits
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   355
  | mk_horn (neg_lits, []) = mk_anot (foldr1 (mk_aconn AAnd) neg_lits)
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   356
  | mk_horn (neg_lits, pos_lits) =
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   357
    mk_aconn AImplies (foldr1 (mk_aconn AAnd) neg_lits,
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   358
                       foldr1 (mk_aconn AOr) pos_lits)
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   359
39645
6eb38a00ae47 make SML/NJ happy
blanchet
parents: 39602
diff changeset
   360
fun parse_horn_clause x =
6eb38a00ae47 make SML/NJ happy
blanchet
parents: 39602
diff changeset
   361
  (Scan.repeat parse_decorated_atom --| $$ "|" --| $$ "|"
6eb38a00ae47 make SML/NJ happy
blanchet
parents: 39602
diff changeset
   362
     -- Scan.repeat parse_decorated_atom --| $$ "-" --| $$ ">"
6eb38a00ae47 make SML/NJ happy
blanchet
parents: 39602
diff changeset
   363
     -- Scan.repeat parse_decorated_atom
6eb38a00ae47 make SML/NJ happy
blanchet
parents: 39602
diff changeset
   364
   >> (mk_horn o apfst (op @))) x
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   365
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   366
(* Syntax: <num>[0:<inference><annotations>]
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   367
   <atoms> || <atoms> -> <atoms>. *)
39645
6eb38a00ae47 make SML/NJ happy
blanchet
parents: 39602
diff changeset
   368
fun parse_spass_line x =
6eb38a00ae47 make SML/NJ happy
blanchet
parents: 39602
diff changeset
   369
  (scan_general_id --| $$ "[" --| $$ "0" --| $$ ":" --| Symbol.scan_id
6eb38a00ae47 make SML/NJ happy
blanchet
parents: 39602
diff changeset
   370
     -- parse_spass_annotations --| $$ "]" -- parse_horn_clause --| $$ "."
6eb38a00ae47 make SML/NJ happy
blanchet
parents: 39602
diff changeset
   371
   >> (fn ((num, deps), u) =>
6eb38a00ae47 make SML/NJ happy
blanchet
parents: 39602
diff changeset
   372
          Inference ((num, NONE), u, map (rpair NONE) deps))) x
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   373
42748
a37095d03074 drop support for Vampire's native output format -- it has too many undocumented oddities, e.g. "BDD definition:" lines
blanchet
parents: 42648
diff changeset
   374
fun parse_line x = (parse_tstp_line || parse_spass_line) x
42648
6099b85ae48e make SML/NJ happiest
blanchet
parents: 42615
diff changeset
   375
fun parse_proof s =
6099b85ae48e make SML/NJ happiest
blanchet
parents: 42615
diff changeset
   376
  s |> strip_spaces_except_between_ident_chars
6099b85ae48e make SML/NJ happiest
blanchet
parents: 42615
diff changeset
   377
    |> raw_explode
6099b85ae48e make SML/NJ happiest
blanchet
parents: 42615
diff changeset
   378
    |> Scan.finite Symbol.stopper
6099b85ae48e make SML/NJ happiest
blanchet
parents: 42615
diff changeset
   379
           (Scan.error (!! (fn _ => raise Fail "unrecognized ATP output")
6099b85ae48e make SML/NJ happiest
blanchet
parents: 42615
diff changeset
   380
                           (Scan.repeat1 parse_line)))
6099b85ae48e make SML/NJ happiest
blanchet
parents: 42615
diff changeset
   381
    |> fst
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   382
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   383
fun clean_up_dependency seen dep = find_first (curry is_same_step dep) seen
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   384
fun clean_up_dependencies _ [] = []
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   385
  | clean_up_dependencies seen ((step as Definition (name, _, _)) :: steps) =
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   386
    step :: clean_up_dependencies (name :: seen) steps
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   387
  | clean_up_dependencies seen (Inference (name, u, deps) :: steps) =
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   388
    Inference (name, u, map_filter (clean_up_dependency seen) deps) ::
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   389
    clean_up_dependencies (name :: seen) steps
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   390
42449
494e4ac5b0f8 detect some unsound proofs before showing them to the user
blanchet
parents: 42060
diff changeset
   391
fun atp_proof_from_tstplike_proof "" = []
494e4ac5b0f8 detect some unsound proofs before showing them to the user
blanchet
parents: 42060
diff changeset
   392
  | atp_proof_from_tstplike_proof s =
494e4ac5b0f8 detect some unsound proofs before showing them to the user
blanchet
parents: 42060
diff changeset
   393
    s ^ "$" (* the $ sign acts as a sentinel (FIXME: needed?) *)
494e4ac5b0f8 detect some unsound proofs before showing them to the user
blanchet
parents: 42060
diff changeset
   394
    |> parse_proof
494e4ac5b0f8 detect some unsound proofs before showing them to the user
blanchet
parents: 42060
diff changeset
   395
    |> sort (step_name_ord o pairself step_name)
494e4ac5b0f8 detect some unsound proofs before showing them to the user
blanchet
parents: 42060
diff changeset
   396
    |> clean_up_dependencies []
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   397
39454
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   398
fun map_term_names_in_term f (ATerm (s, ts)) =
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   399
  ATerm (f s, map (map_term_names_in_term f) ts)
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   400
fun map_term_names_in_formula f (AQuant (q, xs, phi)) =
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   401
    AQuant (q, xs, map_term_names_in_formula f phi)
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   402
  | map_term_names_in_formula f (AConn (c, phis)) =
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   403
    AConn (c, map (map_term_names_in_formula f) phis)
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   404
  | map_term_names_in_formula f (AAtom t) = AAtom (map_term_names_in_term f t)
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   405
fun map_term_names_in_step f (Definition (name, phi1, phi2)) =
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   406
    Definition (name, map_term_names_in_formula f phi1,
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   407
                map_term_names_in_formula f phi2)
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   408
  | map_term_names_in_step f (Inference (name, phi, deps)) =
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   409
    Inference (name, map_term_names_in_formula f phi, deps)
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   410
fun map_term_names_in_atp_proof f = map (map_term_names_in_step f)
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   411
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   412
fun nasty_name pool s = s |> Symtab.lookup pool |> the_default s
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   413
fun nasty_atp_proof pool =
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   414
  if Symtab.is_empty pool then I
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   415
  else map_term_names_in_atp_proof (nasty_name pool)
acb25e9cf6fb factor out the inverse of "nice_atp_problem"
blanchet
parents: 39453
diff changeset
   416
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents:
diff changeset
   417
end;