src/HOL/Tools/ATP/atp_problem.ML
author blanchet
Tue, 26 Jun 2012 11:14:39 +0200
changeset 48132 9aa0fad4e864
parent 48131 1016664b8feb
child 48133 a5ab5964065f
permissions -rw-r--r--
added type arguments to "ATerm" constructor -- but don't use them yet
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
38047
9033c03cc214 consequence of directory renaming
blanchet
parents: 38046
diff changeset
     1
(*  Title:      HOL/Tools/ATP/atp_problem.ML
38027
505657ddb047 standardize "Author" tags
blanchet
parents: 38025
diff changeset
     2
    Author:     Jia Meng, Cambridge University Computer Laboratory and NICTA
37509
f39464d971c4 factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff changeset
     3
    Author:     Jasmin Blanchette, TU Muenchen
f39464d971c4 factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff changeset
     4
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents: 39384
diff changeset
     5
Abstract representation of ATP problems and TPTP syntax.
37509
f39464d971c4 factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff changeset
     6
*)
f39464d971c4 factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff changeset
     7
38019
e207a64e1e0b complete renaming of "Sledgehammer_TPTP_Format" to "ATP_Problem"
blanchet
parents: 38018
diff changeset
     8
signature ATP_PROBLEM =
37509
f39464d971c4 factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff changeset
     9
sig
43676
3b0b448b4d69 add support for lambdas in TPTP THF generator + killed an unsound type encoding (because the monotonicity calculus assumes first-order)
nik
parents: 43422
diff changeset
    10
  datatype ('a, 'b) ho_term =
48132
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
    11
    ATerm of ('a * 'b list) * ('a, 'b) ho_term list |
47911
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
    12
    AAbs of (('a * 'b) * ('a, 'b) ho_term) * ('a, 'b) ho_term list
37992
7911e78a7122 renamed internal function
blanchet
parents: 37962
diff changeset
    13
  datatype quantifier = AForall | AExists
43163
31babd4b1552 killed odd connectives
blanchet
parents: 43126
diff changeset
    14
  datatype connective = ANot | AAnd | AOr | AImplies | AIff
42531
a462dbaa584f added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents: 42530
diff changeset
    15
  datatype ('a, 'b, 'c) formula =
a462dbaa584f added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents: 42530
diff changeset
    16
    AQuant of quantifier * ('a * 'b option) list * ('a, 'b, 'c) formula |
a462dbaa584f added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents: 42530
diff changeset
    17
    AConn of connective * ('a, 'b, 'c) formula list |
a462dbaa584f added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents: 42530
diff changeset
    18
    AAtom of 'c
37994
b04307085a09 make TPTP generator accept full first-order formulas
blanchet
parents: 37993
diff changeset
    19
44593
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
    20
  datatype 'a ho_type =
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
    21
    AType of 'a * 'a ho_type list |
44594
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
    22
    AFun of 'a ho_type * 'a ho_type |
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
    23
    ATyAbs of 'a list * 'a ho_type
42963
5725deb11ae7 identify HOL functions with THF functions
blanchet
parents: 42962
diff changeset
    24
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
    25
  type term_order =
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
    26
    {is_lpo : bool,
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
    27
     gen_weights : bool,
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
    28
     gen_prec : bool,
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
    29
     gen_simp : bool}
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
    30
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
    31
  datatype polymorphism = Monomorphic | Polymorphic | Type_Classes
44754
265174356212 added dummy polymorphic THF system
blanchet
parents: 44739
diff changeset
    32
  datatype tptp_explicitness = TPTP_Implicit | TPTP_Explicit
48004
989a34fa72b3 don't generate definitions for LEO-II -- this cuases more harm than good
blanchet
parents: 47976
diff changeset
    33
  datatype thf_choice = THF_Without_Choice | THF_With_Choice
989a34fa72b3 don't generate definitions for LEO-II -- this cuases more harm than good
blanchet
parents: 47976
diff changeset
    34
  datatype thf_defs = THF_Without_Defs | THF_With_Defs
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
    35
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
    36
  datatype atp_format =
44235
85e9dad3c187 distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents: 43987
diff changeset
    37
    CNF |
85e9dad3c187 distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents: 43987
diff changeset
    38
    CNF_UEQ |
85e9dad3c187 distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents: 43987
diff changeset
    39
    FOF |
48130
blanchet
parents: 48129
diff changeset
    40
    TFF of polymorphism * tptp_explicitness |
blanchet
parents: 48129
diff changeset
    41
    THF of polymorphism * tptp_explicitness * thf_choice * thf_defs |
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
    42
    DFG of polymorphism
44235
85e9dad3c187 distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents: 43987
diff changeset
    43
47976
6b13451135a9 tuned names
blanchet
parents: 47911
diff changeset
    44
  datatype formula_role = Axiom | Definition | Lemma | Hypothesis | Conjecture
42527
6a9458524f01 reintroduced constructor for formulas, and automatically detect which logic to use (TFF or FOF) to avoid clutter
blanchet
parents: 42526
diff changeset
    45
  datatype 'a problem_line =
42963
5725deb11ae7 identify HOL functions with THF functions
blanchet
parents: 42962
diff changeset
    46
    Decl of string * 'a * 'a ho_type |
47976
6b13451135a9 tuned names
blanchet
parents: 47911
diff changeset
    47
    Formula of string * formula_role
44402
f0bc74b9161e clearer terminology
blanchet
parents: 44235
diff changeset
    48
               * ('a, 'a ho_type, ('a, 'a ho_type) ho_term) formula
f0bc74b9161e clearer terminology
blanchet
parents: 44235
diff changeset
    49
               * (string, string ho_type) ho_term option
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
    50
               * (string, string ho_type) ho_term list
38017
3ad3e3ca2451 move Sledgehammer-specific code out of "Sledgehammer_TPTP_Format"
blanchet
parents: 38014
diff changeset
    51
  type 'a problem = (string * 'a problem_line list) list
37992
7911e78a7122 renamed internal function
blanchet
parents: 37962
diff changeset
    52
42968
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    53
  val tptp_cnf : string
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    54
  val tptp_fof : string
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    55
  val tptp_tff : string
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    56
  val tptp_thf : string
42967
blanchet
parents: 42966
diff changeset
    57
  val tptp_has_type : string
42962
3b50fdeb6cfc started adding support for THF output (but no lambdas)
blanchet
parents: 42961
diff changeset
    58
  val tptp_type_of_types : string
3b50fdeb6cfc started adding support for THF output (but no lambdas)
blanchet
parents: 42961
diff changeset
    59
  val tptp_bool_type : string
3b50fdeb6cfc started adding support for THF output (but no lambdas)
blanchet
parents: 42961
diff changeset
    60
  val tptp_individual_type : string
42963
5725deb11ae7 identify HOL functions with THF functions
blanchet
parents: 42962
diff changeset
    61
  val tptp_fun_type : string
42998
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
    62
  val tptp_product_type : string
42968
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    63
  val tptp_forall : string
43678
56d352659500 improved translation of lambdas in THF
nik
parents: 43677
diff changeset
    64
  val tptp_ho_forall : string
44650
dbdfadbd3829 use new syntax for Pi binder in TFF1 output
blanchet
parents: 44620
diff changeset
    65
  val tptp_pi_binder : string
42968
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    66
  val tptp_exists : string
43678
56d352659500 improved translation of lambdas in THF
nik
parents: 43677
diff changeset
    67
  val tptp_ho_exists : string
44495
4c2242c8a96c added choice operator output for
nik
parents: 44407
diff changeset
    68
  val tptp_choice : string
42968
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    69
  val tptp_not : string
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    70
  val tptp_and : string
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    71
  val tptp_or : string
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    72
  val tptp_implies : string
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    73
  val tptp_if : string
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    74
  val tptp_iff : string
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    75
  val tptp_not_iff : string
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    76
  val tptp_app : string
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    77
  val tptp_not_infix : string
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
    78
  val tptp_equal : string
43000
bd424c3dde46 cleaner handling of equality and proxies (esp. for THF)
blanchet
parents: 42998
diff changeset
    79
  val tptp_old_equal : string
42966
4e2d6c1e5392 more work on parsing LEO-II proofs without lambdas
blanchet
parents: 42963
diff changeset
    80
  val tptp_false : string
4e2d6c1e5392 more work on parsing LEO-II proofs without lambdas
blanchet
parents: 42963
diff changeset
    81
  val tptp_true : string
43000
bd424c3dde46 cleaner handling of equality and proxies (esp. for THF)
blanchet
parents: 42998
diff changeset
    82
  val tptp_empty_list : string
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
    83
  val isabelle_info_prefix : string
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
    84
  val isabelle_info : string -> int -> (string, 'a) ho_term list
46442
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
    85
  val extract_isabelle_status : (string, 'a) ho_term list -> string option
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
    86
  val extract_isabelle_rank : (string, 'a) ho_term list -> int
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
    87
  val introN : string
47148
7b5846065c1b be less forceful about ":lt" to make infinite loops less likely (could still fail with mutually recursive tail rec functions)
blanchet
parents: 47146
diff changeset
    88
  val inductiveN : string
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
    89
  val elimN : string
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
    90
  val simpN : string
47148
7b5846065c1b be less forceful about ":lt" to make infinite loops less likely (could still fail with mutually recursive tail rec functions)
blanchet
parents: 47146
diff changeset
    91
  val defN : string
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
    92
  val rankN : string
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
    93
  val minimum_rank : int
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
    94
  val default_rank : int
47030
7e80e14247fc internal renamings
blanchet
parents: 46643
diff changeset
    95
  val default_term_order_weight : int
43000
bd424c3dde46 cleaner handling of equality and proxies (esp. for THF)
blanchet
parents: 42998
diff changeset
    96
  val is_tptp_equal : string -> bool
42998
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
    97
  val is_built_in_tptp_symbol : string -> bool
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
    98
  val is_tptp_variable : string -> bool
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
    99
  val is_tptp_user_symbol : string -> bool
44595
444d111bde7d generate properly typed TFF1 (PFF) problems in the presence of type class predicates
blanchet
parents: 44594
diff changeset
   100
  val atype_of_types : (string * string) ho_type
444d111bde7d generate properly typed TFF1 (PFF) problems in the presence of type class predicates
blanchet
parents: 44594
diff changeset
   101
  val bool_atype : (string * string) ho_type
444d111bde7d generate properly typed TFF1 (PFF) problems in the presence of type class predicates
blanchet
parents: 44594
diff changeset
   102
  val individual_atype : (string * string) ho_type
42942
ad34216cff2f removed SNARK hack now that SNARK is fixed
blanchet
parents: 42939
diff changeset
   103
  val mk_anot : ('a, 'b, 'c) formula -> ('a, 'b, 'c) formula
ad34216cff2f removed SNARK hack now that SNARK is fixed
blanchet
parents: 42939
diff changeset
   104
  val mk_aconn :
ad34216cff2f removed SNARK hack now that SNARK is fixed
blanchet
parents: 42939
diff changeset
   105
    connective -> ('a, 'b, 'c) formula -> ('a, 'b, 'c) formula
ad34216cff2f removed SNARK hack now that SNARK is fixed
blanchet
parents: 42939
diff changeset
   106
    -> ('a, 'b, 'c) formula
42998
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   107
  val aconn_fold :
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   108
    bool option -> (bool option -> 'a -> 'b -> 'b) -> connective * 'a list
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   109
    -> 'b -> 'b
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   110
  val aconn_map :
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   111
    bool option -> (bool option -> 'a -> ('b, 'c, 'd) formula)
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   112
    -> connective * 'a list -> ('b, 'c, 'd) formula
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   113
  val formula_fold :
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   114
    bool option -> (bool option -> 'c -> 'd -> 'd) -> ('a, 'b, 'c) formula
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   115
    -> 'd -> 'd
42944
9e620869a576 improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents: 42942
diff changeset
   116
  val formula_map : ('c -> 'd) -> ('a, 'b, 'c) formula -> ('a, 'b, 'd) formula
46442
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   117
  val is_function_type : string ho_type -> bool
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   118
  val is_predicate_type : string ho_type -> bool
45303
bd03b08161ac added DFG unsorted support (like in the old days)
blanchet
parents: 45301
diff changeset
   119
  val is_format_higher_order : atp_format -> bool
46442
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   120
  val lines_for_atp_problem :
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   121
    atp_format -> term_order -> (unit -> (string * int) list) -> string problem
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   122
    -> string list
43092
93ec303e1917 more work on new metis that exploits the powerful new type encodings
blanchet
parents: 43085
diff changeset
   123
  val ensure_cnf_problem :
93ec303e1917 more work on new metis that exploits the powerful new type encodings
blanchet
parents: 43085
diff changeset
   124
    (string * string) problem -> (string * string) problem
42939
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   125
  val filter_cnf_ueq_problem :
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   126
    (string * string) problem -> (string * string) problem
47150
6df6e56fd7cd tuning (in particular, Symtab instead of AList)
blanchet
parents: 47148
diff changeset
   127
  val declared_syms_in_problem : 'a problem -> 'a list
39452
70a57e40f795 factored out TSTP/SPASS/Vampire proof parsing;
blanchet
parents: 39384
diff changeset
   128
  val nice_atp_problem :
45939
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   129
    bool -> atp_format -> ('a * (string * string) problem_line list) list
38017
3ad3e3ca2451 move Sledgehammer-specific code out of "Sledgehammer_TPTP_Format"
blanchet
parents: 38014
diff changeset
   130
    -> ('a * string problem_line list) list
3ad3e3ca2451 move Sledgehammer-specific code out of "Sledgehammer_TPTP_Format"
blanchet
parents: 38014
diff changeset
   131
       * (string Symtab.table * string Symtab.table) option
37509
f39464d971c4 factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff changeset
   132
end;
f39464d971c4 factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff changeset
   133
38019
e207a64e1e0b complete renaming of "Sledgehammer_TPTP_Format" to "ATP_Problem"
blanchet
parents: 38018
diff changeset
   134
structure ATP_Problem : ATP_PROBLEM =
37509
f39464d971c4 factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff changeset
   135
struct
f39464d971c4 factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff changeset
   136
43085
0a2f5b86bdd7 first step in sharing more code between ATP and Metis translation
blanchet
parents: 43000
diff changeset
   137
open ATP_Util
0a2f5b86bdd7 first step in sharing more code between ATP and Metis translation
blanchet
parents: 43000
diff changeset
   138
0a2f5b86bdd7 first step in sharing more code between ATP and Metis translation
blanchet
parents: 43000
diff changeset
   139
37643
f576af716aa6 rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents: 37642
diff changeset
   140
(** ATP problem **)
f576af716aa6 rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents: 37642
diff changeset
   141
43676
3b0b448b4d69 add support for lambdas in TPTP THF generator + killed an unsound type encoding (because the monotonicity calculus assumes first-order)
nik
parents: 43422
diff changeset
   142
datatype ('a, 'b) ho_term =
48132
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   143
  ATerm of ('a * 'b list) * ('a, 'b) ho_term list |
47911
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   144
  AAbs of (('a * 'b) * ('a, 'b) ho_term) * ('a, 'b) ho_term list
37961
6a48c85a211a first step in using "fof" rather than "cnf" in TPTP problems
blanchet
parents: 37931
diff changeset
   145
datatype quantifier = AForall | AExists
43163
31babd4b1552 killed odd connectives
blanchet
parents: 43126
diff changeset
   146
datatype connective = ANot | AAnd | AOr | AImplies | AIff
42531
a462dbaa584f added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents: 42530
diff changeset
   147
datatype ('a, 'b, 'c) formula =
a462dbaa584f added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents: 42530
diff changeset
   148
  AQuant of quantifier * ('a * 'b option) list * ('a, 'b, 'c) formula |
a462dbaa584f added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents: 42530
diff changeset
   149
  AConn of connective * ('a, 'b, 'c) formula list |
a462dbaa584f added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents: 42530
diff changeset
   150
  AAtom of 'c
37961
6a48c85a211a first step in using "fof" rather than "cnf" in TPTP problems
blanchet
parents: 37931
diff changeset
   151
44593
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
   152
datatype 'a ho_type =
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
   153
  AType of 'a * 'a ho_type list |
44594
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
   154
  AFun of 'a ho_type * 'a ho_type |
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
   155
  ATyAbs of 'a list * 'a ho_type
42963
5725deb11ae7 identify HOL functions with THF functions
blanchet
parents: 42962
diff changeset
   156
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   157
type term_order =
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   158
  {is_lpo : bool,
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   159
   gen_weights : bool,
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   160
   gen_prec : bool,
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   161
   gen_simp : bool}
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   162
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   163
datatype polymorphism = Monomorphic | Polymorphic | Type_Classes
44754
265174356212 added dummy polymorphic THF system
blanchet
parents: 44739
diff changeset
   164
datatype tptp_explicitness = TPTP_Implicit | TPTP_Explicit
48004
989a34fa72b3 don't generate definitions for LEO-II -- this cuases more harm than good
blanchet
parents: 47976
diff changeset
   165
datatype thf_choice = THF_Without_Choice | THF_With_Choice
989a34fa72b3 don't generate definitions for LEO-II -- this cuases more harm than good
blanchet
parents: 47976
diff changeset
   166
datatype thf_defs = THF_Without_Defs | THF_With_Defs
44499
8870232a87ad make TFF output less explicit where possible
blanchet
parents: 44495
diff changeset
   167
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   168
datatype atp_format =
44235
85e9dad3c187 distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents: 43987
diff changeset
   169
  CNF |
85e9dad3c187 distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents: 43987
diff changeset
   170
  CNF_UEQ |
85e9dad3c187 distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents: 43987
diff changeset
   171
  FOF |
48130
blanchet
parents: 48129
diff changeset
   172
  TFF of polymorphism * tptp_explicitness |
blanchet
parents: 48129
diff changeset
   173
  THF of polymorphism * tptp_explicitness * thf_choice * thf_defs |
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   174
  DFG of polymorphism
44235
85e9dad3c187 distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents: 43987
diff changeset
   175
47976
6b13451135a9 tuned names
blanchet
parents: 47911
diff changeset
   176
datatype formula_role = Axiom | Definition | Lemma | Hypothesis | Conjecture
42527
6a9458524f01 reintroduced constructor for formulas, and automatically detect which logic to use (TFF or FOF) to avoid clutter
blanchet
parents: 42526
diff changeset
   177
datatype 'a problem_line =
42963
5725deb11ae7 identify HOL functions with THF functions
blanchet
parents: 42962
diff changeset
   178
  Decl of string * 'a * 'a ho_type |
47976
6b13451135a9 tuned names
blanchet
parents: 47911
diff changeset
   179
  Formula of string * formula_role
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   180
             * ('a, 'a ho_type, ('a, 'a ho_type) ho_term) formula
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   181
             * (string, string ho_type) ho_term option
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   182
             * (string, string ho_type) ho_term list
37643
f576af716aa6 rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents: 37642
diff changeset
   183
type 'a problem = (string * 'a problem_line list) list
f576af716aa6 rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents: 37642
diff changeset
   184
42722
626e292d22a7 renamed type systems for more consistency
blanchet
parents: 42709
diff changeset
   185
(* official TPTP syntax *)
42968
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   186
val tptp_cnf = "cnf"
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   187
val tptp_fof = "fof"
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   188
val tptp_tff = "tff"
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   189
val tptp_thf = "thf"
42967
blanchet
parents: 42966
diff changeset
   190
val tptp_has_type = ":"
42962
3b50fdeb6cfc started adding support for THF output (but no lambdas)
blanchet
parents: 42961
diff changeset
   191
val tptp_type_of_types = "$tType"
3b50fdeb6cfc started adding support for THF output (but no lambdas)
blanchet
parents: 42961
diff changeset
   192
val tptp_bool_type = "$o"
3b50fdeb6cfc started adding support for THF output (but no lambdas)
blanchet
parents: 42961
diff changeset
   193
val tptp_individual_type = "$i"
42963
5725deb11ae7 identify HOL functions with THF functions
blanchet
parents: 42962
diff changeset
   194
val tptp_fun_type = ">"
42998
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   195
val tptp_product_type = "*"
42968
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   196
val tptp_forall = "!"
43678
56d352659500 improved translation of lambdas in THF
nik
parents: 43677
diff changeset
   197
val tptp_ho_forall = "!!"
44650
dbdfadbd3829 use new syntax for Pi binder in TFF1 output
blanchet
parents: 44620
diff changeset
   198
val tptp_pi_binder = "!>"
42968
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   199
val tptp_exists = "?"
43678
56d352659500 improved translation of lambdas in THF
nik
parents: 43677
diff changeset
   200
val tptp_ho_exists = "??"
44495
4c2242c8a96c added choice operator output for
nik
parents: 44407
diff changeset
   201
val tptp_choice = "@+"
42968
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   202
val tptp_not = "~"
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   203
val tptp_and = "&"
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   204
val tptp_or = "|"
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   205
val tptp_implies = "=>"
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   206
val tptp_if = "<="
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   207
val tptp_iff = "<=>"
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   208
val tptp_not_iff = "<~>"
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   209
val tptp_app = "@"
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   210
val tptp_not_infix = "!"
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   211
val tptp_equal = "="
43000
bd424c3dde46 cleaner handling of equality and proxies (esp. for THF)
blanchet
parents: 42998
diff changeset
   212
val tptp_old_equal = "equal"
42966
4e2d6c1e5392 more work on parsing LEO-II proofs without lambdas
blanchet
parents: 42963
diff changeset
   213
val tptp_false = "$false"
4e2d6c1e5392 more work on parsing LEO-II proofs without lambdas
blanchet
parents: 42963
diff changeset
   214
val tptp_true = "$true"
43000
bd424c3dde46 cleaner handling of equality and proxies (esp. for THF)
blanchet
parents: 42998
diff changeset
   215
val tptp_empty_list = "[]"
42722
626e292d22a7 renamed type systems for more consistency
blanchet
parents: 42709
diff changeset
   216
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   217
val isabelle_info_prefix = "isabelle_"
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   218
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   219
val introN = "intro"
47148
7b5846065c1b be less forceful about ":lt" to make infinite loops less likely (could still fail with mutually recursive tail rec functions)
blanchet
parents: 47146
diff changeset
   220
val inductiveN = "inductive"
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   221
val elimN = "elim"
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   222
val simpN = "simp"
47148
7b5846065c1b be less forceful about ":lt" to make infinite loops less likely (could still fail with mutually recursive tail rec functions)
blanchet
parents: 47146
diff changeset
   223
val defN = "def"
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   224
val rankN = "rank"
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   225
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   226
val minimum_rank = 0
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   227
val default_rank = 1000
47030
7e80e14247fc internal renamings
blanchet
parents: 46643
diff changeset
   228
val default_term_order_weight = 1
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   229
48129
933d43c31689 removed support for unsorted DFG, now that SPASS 3.7 is no longer supported
blanchet
parents: 48004
diff changeset
   230
(* Currently, only SPASS 3.8ds can process Isabelle metainformation. *)
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   231
fun isabelle_info status rank =
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   232
  [] |> rank <> default_rank
48132
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   233
        ? cons (ATerm ((isabelle_info_prefix ^ rankN, []),
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   234
                       [ATerm ((string_of_int rank, []), [])]))
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   235
     |> status <> "" ? cons (ATerm ((isabelle_info_prefix ^ status, []), []))
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   236
48132
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   237
fun extract_isabelle_status (ATerm ((s, []), []) :: _) =
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   238
    try (unprefix isabelle_info_prefix) s
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   239
  | extract_isabelle_status _ = NONE
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   240
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   241
fun extract_isabelle_rank (tms as _ :: _) =
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   242
    (case List.last tms of
48132
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   243
       ATerm ((_, []), [ATerm ((rank, []), [])]) => the (Int.fromString rank)
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   244
     | _ => default_rank)
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   245
  | extract_isabelle_rank _ = default_rank
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   246
43000
bd424c3dde46 cleaner handling of equality and proxies (esp. for THF)
blanchet
parents: 42998
diff changeset
   247
fun is_tptp_equal s = (s = tptp_equal orelse s = tptp_old_equal)
bd424c3dde46 cleaner handling of equality and proxies (esp. for THF)
blanchet
parents: 42998
diff changeset
   248
fun is_built_in_tptp_symbol s =
bd424c3dde46 cleaner handling of equality and proxies (esp. for THF)
blanchet
parents: 42998
diff changeset
   249
  s = tptp_old_equal orelse not (Char.isAlpha (String.sub (s, 0)))
42998
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   250
fun is_tptp_variable s = Char.isUpper (String.sub (s, 0))
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   251
val is_tptp_user_symbol = not o (is_tptp_variable orf is_built_in_tptp_symbol)
42939
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   252
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   253
val atype_of_types = AType (`I tptp_type_of_types, [])
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   254
val bool_atype = AType (`I tptp_bool_type, [])
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   255
val individual_atype = AType (`I tptp_individual_type, [])
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   256
43098
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   257
fun raw_polarities_of_conn ANot = (SOME false, NONE)
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   258
  | raw_polarities_of_conn AAnd = (SOME true, SOME true)
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   259
  | raw_polarities_of_conn AOr = (SOME true, SOME true)
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   260
  | raw_polarities_of_conn AImplies = (SOME false, SOME true)
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   261
  | raw_polarities_of_conn AIff = (NONE, NONE)
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   262
fun polarities_of_conn NONE = K (NONE, NONE)
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   263
  | polarities_of_conn (SOME pos) =
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   264
    raw_polarities_of_conn #> not pos ? pairself (Option.map not)
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   265
42942
ad34216cff2f removed SNARK hack now that SNARK is fixed
blanchet
parents: 42939
diff changeset
   266
fun mk_anot (AConn (ANot, [phi])) = phi
ad34216cff2f removed SNARK hack now that SNARK is fixed
blanchet
parents: 42939
diff changeset
   267
  | mk_anot phi = AConn (ANot, [phi])
ad34216cff2f removed SNARK hack now that SNARK is fixed
blanchet
parents: 42939
diff changeset
   268
fun mk_aconn c phi1 phi2 = AConn (c, [phi1, phi2])
ad34216cff2f removed SNARK hack now that SNARK is fixed
blanchet
parents: 42939
diff changeset
   269
42998
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   270
fun aconn_fold pos f (ANot, [phi]) = f (Option.map not pos) phi
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   271
  | aconn_fold pos f (AImplies, [phi1, phi2]) =
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   272
    f (Option.map not pos) phi1 #> f pos phi2
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   273
  | aconn_fold pos f (AAnd, phis) = fold (f pos) phis
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   274
  | aconn_fold pos f (AOr, phis) = fold (f pos) phis
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   275
  | aconn_fold _ f (_, phis) = fold (f NONE) phis
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   276
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   277
fun aconn_map pos f (ANot, [phi]) = AConn (ANot, [f (Option.map not pos) phi])
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   278
  | aconn_map pos f (AImplies, [phi1, phi2]) =
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   279
    AConn (AImplies, [f (Option.map not pos) phi1, f pos phi2])
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   280
  | aconn_map pos f (AAnd, phis) = AConn (AAnd, map (f pos) phis)
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   281
  | aconn_map pos f (AOr, phis) = AConn (AOr, map (f pos) phis)
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   282
  | aconn_map _ f (c, phis) = AConn (c, map (f NONE) phis)
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   283
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   284
fun formula_fold pos f =
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   285
  let
44501
5bde887b4785 make polymorphic encodings more complete
blanchet
parents: 44499
diff changeset
   286
    fun fld pos (AQuant (_, _, phi)) = fld pos phi
5bde887b4785 make polymorphic encodings more complete
blanchet
parents: 44499
diff changeset
   287
      | fld pos (AConn conn) = aconn_fold pos fld conn
5bde887b4785 make polymorphic encodings more complete
blanchet
parents: 44499
diff changeset
   288
      | fld pos (AAtom tm) = f pos tm
5bde887b4785 make polymorphic encodings more complete
blanchet
parents: 44499
diff changeset
   289
  in fld pos end
42998
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   290
42944
9e620869a576 improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents: 42942
diff changeset
   291
fun formula_map f (AQuant (q, xs, phi)) = AQuant (q, xs, formula_map f phi)
9e620869a576 improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents: 42942
diff changeset
   292
  | formula_map f (AConn (c, phis)) = AConn (c, map (formula_map f) phis)
9e620869a576 improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents: 42942
diff changeset
   293
  | formula_map f (AAtom tm) = AAtom (f tm)
9e620869a576 improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents: 42942
diff changeset
   294
46442
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   295
fun is_function_type (AFun (_, ty)) = is_function_type ty
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   296
  | is_function_type (AType (s, _)) =
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   297
    s <> tptp_type_of_types andalso s <> tptp_bool_type
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   298
  | is_function_type _ = false
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   299
fun is_predicate_type (AFun (_, ty)) = is_predicate_type ty
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   300
  | is_predicate_type (AType (s, _)) = (s = tptp_bool_type)
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   301
  | is_predicate_type _ = false
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   302
fun is_nontrivial_predicate_type (AFun (_, ty)) = is_predicate_type ty
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   303
  | is_nontrivial_predicate_type _ = false
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   304
45303
bd03b08161ac added DFG unsorted support (like in the old days)
blanchet
parents: 45301
diff changeset
   305
fun is_format_higher_order (THF _) = true
bd03b08161ac added DFG unsorted support (like in the old days)
blanchet
parents: 45301
diff changeset
   306
  | is_format_higher_order _ = false
44499
8870232a87ad make TFF output less explicit where possible
blanchet
parents: 44495
diff changeset
   307
fun is_format_typed (TFF _) = true
44754
265174356212 added dummy polymorphic THF system
blanchet
parents: 44739
diff changeset
   308
  | is_format_typed (THF _) = true
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   309
  | is_format_typed (DFG _) = true
44235
85e9dad3c187 distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents: 43987
diff changeset
   310
  | is_format_typed _ = false
42998
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   311
47976
6b13451135a9 tuned names
blanchet
parents: 47911
diff changeset
   312
fun tptp_string_for_role Axiom = "axiom"
6b13451135a9 tuned names
blanchet
parents: 47911
diff changeset
   313
  | tptp_string_for_role Definition = "definition"
6b13451135a9 tuned names
blanchet
parents: 47911
diff changeset
   314
  | tptp_string_for_role Lemma = "lemma"
6b13451135a9 tuned names
blanchet
parents: 47911
diff changeset
   315
  | tptp_string_for_role Hypothesis = "hypothesis"
6b13451135a9 tuned names
blanchet
parents: 47911
diff changeset
   316
  | tptp_string_for_role Conjecture = "conjecture"
38631
979a0b37f981 prefer TPTP "conjecture" tag to "hypothesis" on ATPs where this is possible;
blanchet
parents: 38613
diff changeset
   317
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   318
fun tptp_string_for_app format func args =
45303
bd03b08161ac added DFG unsorted support (like in the old days)
blanchet
parents: 45301
diff changeset
   319
  if is_format_higher_order format then
44787
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   320
    "(" ^ space_implode (" " ^ tptp_app ^ " ") (func :: args) ^ ")"
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   321
  else
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   322
    func ^ "(" ^ commas args ^ ")"
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   323
44594
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
   324
fun flatten_type (ATyAbs (tys, ty)) = ATyAbs (tys, flatten_type ty)
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
   325
  | flatten_type (ty as AFun (ty1 as AType _, ty2)) =
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
   326
    (case flatten_type ty2 of
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
   327
       AFun (ty' as AType (s, tys), ty) =>
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
   328
       AFun (AType (tptp_product_type,
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
   329
                    ty1 :: (if s = tptp_product_type then tys else [ty'])), ty)
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
   330
     | _ => ty)
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
   331
  | flatten_type (ty as AType _) = ty
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
   332
  | flatten_type _ =
42963
5725deb11ae7 identify HOL functions with THF functions
blanchet
parents: 42962
diff changeset
   333
    raise Fail "unexpected higher-order type in first-order format"
5725deb11ae7 identify HOL functions with THF functions
blanchet
parents: 42962
diff changeset
   334
46445
ef9d534e9119 minor DFG fix
blanchet
parents: 46443
diff changeset
   335
val dfg_individual_type = "iii" (* cannot clash *)
46338
b02ff6b17599 better handling of individual type for DFG format (SPASS)
blanchet
parents: 46320
diff changeset
   336
44787
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   337
fun str_for_type format ty =
44593
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
   338
  let
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   339
    val dfg = case format of DFG _ => true | _ => false
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   340
    fun str _ (AType (s, [])) =
46338
b02ff6b17599 better handling of individual type for DFG format (SPASS)
blanchet
parents: 46320
diff changeset
   341
        if dfg andalso s = tptp_individual_type then dfg_individual_type else s
44594
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
   342
      | str _ (AType (s, tys)) =
44787
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   343
        let val ss = tys |> map (str false) in
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   344
          if s = tptp_product_type then
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   345
            ss |> space_implode
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   346
                      (if dfg then ", " else " " ^ tptp_product_type ^ " ")
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   347
               |> (not dfg andalso length ss > 1) ? enclose "(" ")"
44787
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   348
          else
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   349
            tptp_string_for_app format s ss
44787
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   350
        end
44593
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
   351
      | str rhs (AFun (ty1, ty2)) =
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   352
        (str false ty1 |> dfg ? enclose "(" ")") ^ " " ^
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   353
        (if dfg then "" else tptp_fun_type ^ " ") ^ str true ty2
44593
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
   354
        |> not rhs ? enclose "(" ")"
44594
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
   355
      | str _ (ATyAbs (ss, ty)) =
44650
dbdfadbd3829 use new syntax for Pi binder in TFF1 output
blanchet
parents: 44620
diff changeset
   356
        tptp_pi_binder ^ "[" ^
44594
ae82943481e9 added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents: 44593
diff changeset
   357
        commas (map (suffix (" " ^ tptp_has_type ^ " " ^ tptp_type_of_types))
44739
blanchet
parents: 44650
diff changeset
   358
                    ss) ^ "]: " ^ str false ty
44593
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
   359
  in str true ty end
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
   360
44787
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   361
fun string_for_type (format as THF _) ty = str_for_type format ty
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   362
  | string_for_type format ty = str_for_type format (flatten_type ty)
42963
5725deb11ae7 identify HOL functions with THF functions
blanchet
parents: 42962
diff changeset
   363
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   364
fun tptp_string_for_quantifier AForall = tptp_forall
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   365
  | tptp_string_for_quantifier AExists = tptp_exists
42963
5725deb11ae7 identify HOL functions with THF functions
blanchet
parents: 42962
diff changeset
   366
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   367
fun tptp_string_for_connective ANot = tptp_not
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   368
  | tptp_string_for_connective AAnd = tptp_and
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   369
  | tptp_string_for_connective AOr = tptp_or
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   370
  | tptp_string_for_connective AImplies = tptp_implies
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   371
  | tptp_string_for_connective AIff = tptp_iff
42963
5725deb11ae7 identify HOL functions with THF functions
blanchet
parents: 42962
diff changeset
   372
42962
3b50fdeb6cfc started adding support for THF output (but no lambdas)
blanchet
parents: 42961
diff changeset
   373
fun string_for_bound_var format (s, ty) =
44593
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
   374
  s ^
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
   375
  (if is_format_typed format then
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
   376
     " " ^ tptp_has_type ^ " " ^
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
   377
     (ty |> the_default (AType (tptp_individual_type, []))
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
   378
         |> string_for_type format)
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
   379
   else
ccf40af26ae9 implement more of the polymorphic simply typed format TFF(1)
blanchet
parents: 44589
diff changeset
   380
     "")
42963
5725deb11ae7 identify HOL functions with THF functions
blanchet
parents: 42962
diff changeset
   381
48132
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   382
fun tptp_string_for_term _ (ATerm ((s, []), [])) = s
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   383
  | tptp_string_for_term _ (ATerm ((s, tys), [])) = s (* ### FIXME *)
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   384
  | tptp_string_for_term format (ATerm ((s, tys), ts)) = (* ### FIXME *)
44787
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   385
    (if s = tptp_empty_list then
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   386
       (* used for lists in the optional "source" field of a derivation *)
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   387
       "[" ^ commas (map (tptp_string_for_term format) ts) ^ "]"
44787
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   388
     else if is_tptp_equal s then
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   389
       space_implode (" " ^ tptp_equal ^ " ")
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   390
                     (map (tptp_string_for_term format) ts)
45303
bd03b08161ac added DFG unsorted support (like in the old days)
blanchet
parents: 45301
diff changeset
   391
       |> is_format_higher_order format ? enclose "(" ")"
48004
989a34fa72b3 don't generate definitions for LEO-II -- this cuases more harm than good
blanchet
parents: 47976
diff changeset
   392
     else case (s = tptp_ho_forall orelse s = tptp_ho_exists, s = tptp_choice,
989a34fa72b3 don't generate definitions for LEO-II -- this cuases more harm than good
blanchet
parents: 47976
diff changeset
   393
                ts) of
47911
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   394
       (true, _, [AAbs (((s', ty), tm), [])]) =>
44787
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   395
       (* Use syntactic sugar "!" and "?" instead of "!!" and "??" whenever
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   396
          possible, to work around LEO-II 1.2.8 parser limitation. *)
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   397
       tptp_string_for_formula format
44787
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   398
           (AQuant (if s = tptp_ho_forall then AForall else AExists,
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   399
                    [(s', SOME ty)], AAtom tm))
47911
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   400
     | (_, true, [AAbs (((s', ty), tm), args)]) =>
46320
0b8b73b49848 renamed two files to make room for a new file
blanchet
parents: 45939
diff changeset
   401
       (* There is code in "ATP_Problem_Generate" to ensure that "Eps" is always
44787
3c0741556e19 fixed THF type constructor syntax
blanchet
parents: 44754
diff changeset
   402
          applied to an abstraction. *)
47911
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   403
       tptp_string_for_app format
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   404
           (tptp_choice ^ "[" ^ s' ^ " : " ^ string_for_type format ty ^ "]: " ^
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   405
            tptp_string_for_term format tm ^ ""
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   406
            |> enclose "(" ")")
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   407
           (map (tptp_string_for_term format) args)
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   408
     | _ => tptp_string_for_app format s (map (tptp_string_for_term format) ts))
47911
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   409
  | tptp_string_for_term (format as THF _) (AAbs (((s, ty), tm), args)) =
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   410
    tptp_string_for_app format
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   411
        ("(^[" ^ s ^ " : " ^ string_for_type format ty ^ "]: " ^
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   412
         tptp_string_for_term format tm ^ ")")
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   413
        (map (tptp_string_for_term format) args)
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   414
  | tptp_string_for_term _ _ =
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   415
    raise Fail "unexpected term in first-order format"
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   416
and tptp_string_for_formula format (AQuant (q, xs, phi)) =
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   417
    tptp_string_for_quantifier q ^
44739
blanchet
parents: 44650
diff changeset
   418
    "[" ^ commas (map (string_for_bound_var format) xs) ^ "]: " ^
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   419
    tptp_string_for_formula format phi
42974
347d5197896e ensure that the argument of logical negation is enclosed in parentheses in THF mode
blanchet
parents: 42968
diff changeset
   420
    |> enclose "(" ")"
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   421
  | tptp_string_for_formula format
48132
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   422
        (AConn (ANot, [AAtom (ATerm (("=" (* tptp_equal *), []), ts))])) =
42968
74415622d293 more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents: 42967
diff changeset
   423
    space_implode (" " ^ tptp_not_infix ^ tptp_equal ^ " ")
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   424
                  (map (tptp_string_for_term format) ts)
45303
bd03b08161ac added DFG unsorted support (like in the old days)
blanchet
parents: 45301
diff changeset
   425
    |> is_format_higher_order format ? enclose "(" ")"
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   426
  | tptp_string_for_formula format (AConn (c, [phi])) =
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   427
    tptp_string_for_connective c ^ " " ^
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   428
    (tptp_string_for_formula format phi
45303
bd03b08161ac added DFG unsorted support (like in the old days)
blanchet
parents: 45301
diff changeset
   429
     |> is_format_higher_order format ? enclose "(" ")")
42974
347d5197896e ensure that the argument of logical negation is enclosed in parentheses in THF mode
blanchet
parents: 42968
diff changeset
   430
    |> enclose "(" ")"
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   431
  | tptp_string_for_formula format (AConn (c, phis)) =
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   432
    space_implode (" " ^ tptp_string_for_connective c ^ " ")
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   433
                  (map (tptp_string_for_formula format) phis)
42974
347d5197896e ensure that the argument of logical negation is enclosed in parentheses in THF mode
blanchet
parents: 42968
diff changeset
   434
    |> enclose "(" ")"
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   435
  | tptp_string_for_formula format (AAtom tm) = tptp_string_for_term format tm
37961
6a48c85a211a first step in using "fof" rather than "cnf" in TPTP problems
blanchet
parents: 37931
diff changeset
   436
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   437
fun tptp_string_for_format CNF = tptp_cnf
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   438
  | tptp_string_for_format CNF_UEQ = tptp_cnf
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   439
  | tptp_string_for_format FOF = tptp_fof
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   440
  | tptp_string_for_format (TFF _) = tptp_tff
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   441
  | tptp_string_for_format (THF _) = tptp_thf
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   442
  | tptp_string_for_format (DFG _) = raise Fail "non-TPTP format"
42962
3b50fdeb6cfc started adding support for THF output (but no lambdas)
blanchet
parents: 42961
diff changeset
   443
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   444
fun tptp_string_for_problem_line format (Decl (ident, sym, ty)) =
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   445
    tptp_string_for_format format ^ "(" ^ ident ^ ", type,\n    " ^ sym ^
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   446
    " : " ^ string_for_type format ty ^ ").\n"
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   447
  | tptp_string_for_problem_line format
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   448
                                 (Formula (ident, kind, phi, source, _)) =
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   449
    tptp_string_for_format format ^ "(" ^ ident ^ ", " ^
47976
6b13451135a9 tuned names
blanchet
parents: 47911
diff changeset
   450
    tptp_string_for_role kind ^ ",\n    (" ^
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   451
    tptp_string_for_formula format phi ^ ")" ^
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   452
    (case source of
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   453
       SOME tm => ", " ^ tptp_string_for_term format tm
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   454
     | NONE => "") ^ ").\n"
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   455
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   456
fun tptp_lines format =
37643
f576af716aa6 rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents: 37642
diff changeset
   457
  maps (fn (_, []) => []
f576af716aa6 rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents: 37642
diff changeset
   458
         | (heading, lines) =>
41491
a2ad5b824051 eliminated Int.toString;
wenzelm
parents: 39453
diff changeset
   459
           "\n% " ^ heading ^ " (" ^ string_of_int (length lines) ^ ")\n" ::
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   460
           map (tptp_string_for_problem_line format) lines)
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   461
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   462
fun arity_of_type (AFun (_, ty)) = 1 + arity_of_type ty
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   463
  | arity_of_type _ = 0
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   464
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   465
fun binder_atypes (AFun (ty1, ty2)) = ty1 :: binder_atypes ty2
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   466
  | binder_atypes _ = []
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   467
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   468
fun dfg_string_for_formula poly gen_simp info =
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   469
  let
46379
de5dd84717c1 distinguish between ":lr" and ":lt" (terminating) in DFG format
blanchet
parents: 46378
diff changeset
   470
    fun suffix_tag top_level s =
48129
933d43c31689 removed support for unsorted DFG, now that SPASS 3.7 is no longer supported
blanchet
parents: 48004
diff changeset
   471
      if top_level then
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   472
        case extract_isabelle_status info of
47148
7b5846065c1b be less forceful about ":lt" to make infinite loops less likely (could still fail with mutually recursive tail rec functions)
blanchet
parents: 47146
diff changeset
   473
          SOME s' => if s' = defN then s ^ ":lt"
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   474
                     else if s' = simpN andalso gen_simp then s ^ ":lr"
46379
de5dd84717c1 distinguish between ":lr" and ":lt" (terminating) in DFG format
blanchet
parents: 46378
diff changeset
   475
                     else s
de5dd84717c1 distinguish between ":lr" and ":lt" (terminating) in DFG format
blanchet
parents: 46378
diff changeset
   476
        | NONE => s
de5dd84717c1 distinguish between ":lr" and ":lt" (terminating) in DFG format
blanchet
parents: 46378
diff changeset
   477
      else
de5dd84717c1 distinguish between ":lr" and ":lt" (terminating) in DFG format
blanchet
parents: 46378
diff changeset
   478
        s
48132
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   479
    fun str_for_term top_level (ATerm ((s, tys), tms)) =
46379
de5dd84717c1 distinguish between ":lr" and ":lt" (terminating) in DFG format
blanchet
parents: 46378
diff changeset
   480
        (if is_tptp_equal s then "equal" |> suffix_tag top_level
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   481
         else if s = tptp_true then "true"
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   482
         else if s = tptp_false then "false"
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   483
         else s) ^
48132
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   484
        (if null tys then "" else "<...>") (* ### FIXME *) ^
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   485
        (if null tms then ""
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   486
         else "(" ^ commas (map (str_for_term false) tms) ^ ")")
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   487
      | str_for_term _ _ = raise Fail "unexpected term in first-order format"
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   488
    fun str_for_quant AForall = "forall"
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   489
      | str_for_quant AExists = "exists"
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   490
    fun str_for_conn _ ANot = "not"
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   491
      | str_for_conn _ AAnd = "and"
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   492
      | str_for_conn _ AOr = "or"
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   493
      | str_for_conn _ AImplies = "implies"
46379
de5dd84717c1 distinguish between ":lr" and ":lt" (terminating) in DFG format
blanchet
parents: 46378
diff changeset
   494
      | str_for_conn top_level AIff = "equiv" |> suffix_tag top_level
de5dd84717c1 distinguish between ":lr" and ":lt" (terminating) in DFG format
blanchet
parents: 46378
diff changeset
   495
    fun str_for_formula top_level (AQuant (q, xs, phi)) =
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   496
        str_for_quant q ^ "(" ^ "[" ^
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   497
        commas (map (string_for_bound_var (DFG poly)) xs) ^ "], " ^
46379
de5dd84717c1 distinguish between ":lr" and ":lt" (terminating) in DFG format
blanchet
parents: 46378
diff changeset
   498
        str_for_formula top_level phi ^ ")"
de5dd84717c1 distinguish between ":lr" and ":lt" (terminating) in DFG format
blanchet
parents: 46378
diff changeset
   499
      | str_for_formula top_level (AConn (c, phis)) =
de5dd84717c1 distinguish between ":lr" and ":lt" (terminating) in DFG format
blanchet
parents: 46378
diff changeset
   500
        str_for_conn top_level c ^ "(" ^
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   501
        commas (map (str_for_formula false) phis) ^ ")"
46379
de5dd84717c1 distinguish between ":lr" and ":lt" (terminating) in DFG format
blanchet
parents: 46378
diff changeset
   502
      | str_for_formula top_level (AAtom tm) = str_for_term top_level tm
de5dd84717c1 distinguish between ":lr" and ":lt" (terminating) in DFG format
blanchet
parents: 46378
diff changeset
   503
  in str_for_formula true end
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   504
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   505
fun maybe_enclose bef aft "" = "% " ^ bef ^ aft
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   506
  | maybe_enclose bef aft s = bef ^ s ^ aft
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   507
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   508
fun dfg_lines poly {is_lpo, gen_weights, gen_prec, gen_simp} ord_info problem =
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   509
  let
46442
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   510
    fun spair (sym, k) = "(" ^ sym ^ ", " ^ string_of_int k ^ ")"
1e07620d724c added possibility of generating KBO weights to DFG problems
blanchet
parents: 46414
diff changeset
   511
    fun ary sym = curry spair sym o arity_of_type
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   512
    fun fun_typ sym ty =
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   513
      "function(" ^ sym ^ ", " ^ string_for_type (DFG poly) ty ^ ")."
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   514
    fun pred_typ sym ty =
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   515
      "predicate(" ^
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   516
      commas (sym :: map (string_for_type (DFG poly)) (binder_atypes ty)) ^ ")."
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   517
    fun formula pred (Formula (ident, kind, phi, _, info)) =
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   518
        if pred kind then
48129
933d43c31689 removed support for unsorted DFG, now that SPASS 3.7 is no longer supported
blanchet
parents: 48004
diff changeset
   519
          let val rank = extract_isabelle_rank info in
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   520
            "formula(" ^ dfg_string_for_formula poly gen_simp info phi ^
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   521
            ", " ^ ident ^
46406
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   522
            (if rank = default_rank then "" else ", " ^ string_of_int rank) ^
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   523
            ")." |> SOME
0e490b9e8422 extended SPASS/DFG output with ranks
blanchet
parents: 46393
diff changeset
   524
          end
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   525
        else
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   526
          NONE
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   527
      | formula _ _ = NONE
46413
505465fae291 tuned SPASS DFG output
blanchet
parents: 46406
diff changeset
   528
    fun filt f = problem |> map (map_filter f o snd) |> filter_out null
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   529
    val func_aries =
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   530
      filt (fn Decl (_, sym, ty) =>
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   531
               if is_function_type ty then SOME (ary sym ty) else NONE
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   532
             | _ => NONE)
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   533
      |> flat |> commas |> maybe_enclose "functions [" "]."
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   534
    val pred_aries =
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   535
      filt (fn Decl (_, sym, ty) =>
46391
8d8d3c1f1854 really fixed syntax bug in DFG output (cf. ef62c2fafa9e)
blanchet
parents: 46382
diff changeset
   536
               if is_predicate_type ty then SOME (ary sym ty) else NONE
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   537
             | _ => NONE)
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   538
      |> flat |> commas |> maybe_enclose "predicates [" "]."
48129
933d43c31689 removed support for unsorted DFG, now that SPASS 3.7 is no longer supported
blanchet
parents: 48004
diff changeset
   539
    val sorts =
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   540
      filt (fn Decl (_, sym, AType (s, [])) =>
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   541
               if s = tptp_type_of_types then SOME sym else NONE
46413
505465fae291 tuned SPASS DFG output
blanchet
parents: 46406
diff changeset
   542
             | _ => NONE) @ [[dfg_individual_type]]
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   543
      |> flat |> commas |> maybe_enclose "sorts [" "]."
48129
933d43c31689 removed support for unsorted DFG, now that SPASS 3.7 is no longer supported
blanchet
parents: 48004
diff changeset
   544
    val ord_info = if gen_weights orelse gen_prec then ord_info () else []
933d43c31689 removed support for unsorted DFG, now that SPASS 3.7 is no longer supported
blanchet
parents: 48004
diff changeset
   545
    val do_term_order_weights =
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   546
      (if gen_weights then ord_info else [])
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   547
      |> map spair |> commas |> maybe_enclose "weights [" "]."
48129
933d43c31689 removed support for unsorted DFG, now that SPASS 3.7 is no longer supported
blanchet
parents: 48004
diff changeset
   548
    val syms = [func_aries, pred_aries, do_term_order_weights, sorts]
933d43c31689 removed support for unsorted DFG, now that SPASS 3.7 is no longer supported
blanchet
parents: 48004
diff changeset
   549
    val func_sigs =
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   550
      filt (fn Decl (_, sym, ty) =>
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   551
               if is_function_type ty then SOME (fun_typ sym ty) else NONE
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   552
             | _ => NONE)
46413
505465fae291 tuned SPASS DFG output
blanchet
parents: 46406
diff changeset
   553
      |> flat
48129
933d43c31689 removed support for unsorted DFG, now that SPASS 3.7 is no longer supported
blanchet
parents: 48004
diff changeset
   554
    val pred_sigs =
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   555
      filt (fn Decl (_, sym, ty) =>
46391
8d8d3c1f1854 really fixed syntax bug in DFG output (cf. ef62c2fafa9e)
blanchet
parents: 46382
diff changeset
   556
               if is_nontrivial_predicate_type ty then SOME (pred_typ sym ty)
8d8d3c1f1854 really fixed syntax bug in DFG output (cf. ef62c2fafa9e)
blanchet
parents: 46382
diff changeset
   557
               else NONE
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   558
             | _ => NONE)
46413
505465fae291 tuned SPASS DFG output
blanchet
parents: 46406
diff changeset
   559
      |> flat
48129
933d43c31689 removed support for unsorted DFG, now that SPASS 3.7 is no longer supported
blanchet
parents: 48004
diff changeset
   560
    val decls = func_sigs @ pred_sigs
46413
505465fae291 tuned SPASS DFG output
blanchet
parents: 46406
diff changeset
   561
    val axioms =
505465fae291 tuned SPASS DFG output
blanchet
parents: 46406
diff changeset
   562
      filt (formula (curry (op <>) Conjecture)) |> separate [""] |> flat
505465fae291 tuned SPASS DFG output
blanchet
parents: 46406
diff changeset
   563
    val conjs =
505465fae291 tuned SPASS DFG output
blanchet
parents: 46406
diff changeset
   564
      filt (formula (curry (op =) Conjecture)) |> separate [""] |> flat
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   565
    val settings =
47054
b86864a2b16e removed obsolete temporary hack
blanchet
parents: 47053
diff changeset
   566
      (if is_lpo then ["set_flag(Ordering, 1)."] else []) @
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   567
      (if gen_prec then
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   568
         [ord_info |> map fst |> rev |> commas
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   569
                   |> maybe_enclose "set_precedence(" ")."]
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   570
       else
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   571
         [])
47053
blanchet
parents: 47041
diff changeset
   572
    fun list_of _ [] = []
blanchet
parents: 47041
diff changeset
   573
      | list_of heading ss =
blanchet
parents: 47041
diff changeset
   574
        "list_of_" ^ heading ^ ".\n" :: map (suffix "\n") ss @
blanchet
parents: 47041
diff changeset
   575
        ["end_of_list.\n\n"]
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   576
  in
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   577
    "\nbegin_problem(isabelle).\n\n" ::
47053
blanchet
parents: 47041
diff changeset
   578
    list_of "descriptions"
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   579
            ["name({**}).", "author({**}).", "status(unknown).",
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   580
             "description({**})."] @
47053
blanchet
parents: 47041
diff changeset
   581
    list_of "symbols" syms @
blanchet
parents: 47041
diff changeset
   582
    list_of "declarations" decls @
blanchet
parents: 47041
diff changeset
   583
    list_of "formulae(axioms)" axioms @
blanchet
parents: 47041
diff changeset
   584
    list_of "formulae(conjectures)" conjs @
blanchet
parents: 47041
diff changeset
   585
    list_of "settings(SPASS)" settings @
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   586
    ["end_problem.\n"]
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   587
  end
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   588
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   589
fun lines_for_atp_problem format ord ord_info problem =
45301
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   590
  "% This file was generated by Isabelle (most likely Sledgehammer)\n\
866b075aa99b added sorted DFG output for coming version of SPASS
blanchet
parents: 44787
diff changeset
   591
  \% " ^ timestamp () ^ "\n" ::
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   592
  (case format of
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   593
     DFG poly => dfg_lines poly ord ord_info
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   594
   | _ => tptp_lines format) problem
37643
f576af716aa6 rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents: 37642
diff changeset
   595
42939
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   596
43098
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   597
(** CNF (Metis) and CNF UEQ (Waldmeister) **)
42939
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   598
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   599
fun is_problem_line_negated (Formula (_, _, AConn (ANot, _), _, _)) = true
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   600
  | is_problem_line_negated _ = false
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   601
48132
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   602
fun is_problem_line_cnf_ueq
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   603
        (Formula (_, _, AAtom (ATerm (((s, _), _), _)), _, _)) =
43193
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   604
    is_tptp_equal s
42939
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   605
  | is_problem_line_cnf_ueq _ = false
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   606
48132
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   607
fun open_conjecture_term (ATerm (((s, s'), tys), tms)) =
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   608
    ATerm ((if is_tptp_variable s then (s |> Name.desymbolize false, s')
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   609
            else (s, s'), tys), tms |> map open_conjecture_term)
43676
3b0b448b4d69 add support for lambdas in TPTP THF generator + killed an unsound type encoding (because the monotonicity calculus assumes first-order)
nik
parents: 43422
diff changeset
   610
  | open_conjecture_term _ = raise Fail "unexpected higher-order term"
43098
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   611
fun open_formula conj =
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   612
  let
43193
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   613
    (* We are conveniently assuming that all bound variable names are
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   614
       distinct, which should be the case for the formulas we generate. *)
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   615
    fun opn (pos as SOME true) (AQuant (AForall, _, phi)) = opn pos phi
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   616
      | opn (pos as SOME false) (AQuant (AExists, _, phi)) = opn pos phi
43098
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   617
      | opn pos (AConn (ANot, [phi])) = mk_anot (opn (Option.map not pos) phi)
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   618
      | opn pos (AConn (c, [phi1, phi2])) =
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   619
        let val (pos1, pos2) = polarities_of_conn pos c in
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   620
          AConn (c, [opn pos1 phi1, opn pos2 phi2])
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   621
        end
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   622
      | opn _ (AAtom t) = AAtom (t |> conj ? open_conjecture_term)
43422
dcbedaf6f80c added missing case in pattern matching -- solves Waldmeister "Match" exceptions that have been plaguing some users
blanchet
parents: 43295
diff changeset
   623
      | opn _ phi = phi
43098
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   624
  in opn (SOME (not conj)) end
42944
9e620869a576 improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents: 42942
diff changeset
   625
fun open_formula_line (Formula (ident, kind, phi, source, info)) =
9e620869a576 improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents: 42942
diff changeset
   626
    Formula (ident, kind, open_formula (kind = Conjecture) phi, source, info)
9e620869a576 improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents: 42942
diff changeset
   627
  | open_formula_line line = line
42939
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   628
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   629
fun negate_conjecture_line (Formula (ident, Conjecture, phi, source, info)) =
42942
ad34216cff2f removed SNARK hack now that SNARK is fixed
blanchet
parents: 42939
diff changeset
   630
    Formula (ident, Hypothesis, mk_anot phi, source, info)
42939
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   631
  | negate_conjecture_line line = line
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   632
43098
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   633
exception CLAUSIFY of unit
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   634
43126
a7db0afd5200 clausify "<=>" (needed for some type information)
blanchet
parents: 43098
diff changeset
   635
(* This "clausification" only expands syntactic sugar, such as "phi => psi" to
a7db0afd5200 clausify "<=>" (needed for some type information)
blanchet
parents: 43098
diff changeset
   636
   "~ phi | psi" and "phi <=> psi" to "~ phi | psi" and "~ psi | phi". We don't
a7db0afd5200 clausify "<=>" (needed for some type information)
blanchet
parents: 43098
diff changeset
   637
   attempt to distribute conjunctions over disjunctions. *)
43193
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   638
fun clausify_formula pos (phi as AAtom _) = [phi |> not pos ? mk_anot]
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   639
  | clausify_formula pos (AConn (ANot, [phi])) = clausify_formula (not pos) phi
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   640
  | clausify_formula true (AConn (AOr, [phi1, phi2])) =
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   641
    (phi1, phi2) |> pairself (clausify_formula true)
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   642
                 |> uncurry (map_product (mk_aconn AOr))
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   643
  | clausify_formula false (AConn (AAnd, [phi1, phi2])) =
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   644
    (phi1, phi2) |> pairself (clausify_formula false)
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   645
                 |> uncurry (map_product (mk_aconn AOr))
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   646
  | clausify_formula true (AConn (AImplies, [phi1, phi2])) =
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   647
    clausify_formula true (AConn (AOr, [mk_anot phi1, phi2]))
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   648
  | clausify_formula true (AConn (AIff, phis)) =
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   649
    clausify_formula true (AConn (AImplies, phis)) @
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   650
    clausify_formula true (AConn (AImplies, rev phis))
e11bd628f1a5 improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents: 43163
diff changeset
   651
  | clausify_formula _ _ = raise CLAUSIFY ()
43098
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   652
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   653
fun clausify_formula_line (Formula (ident, kind, phi, source, info)) =
43126
a7db0afd5200 clausify "<=>" (needed for some type information)
blanchet
parents: 43098
diff changeset
   654
    let
a7db0afd5200 clausify "<=>" (needed for some type information)
blanchet
parents: 43098
diff changeset
   655
      val (n, phis) = phi |> try (clausify_formula true) |> these |> `length
a7db0afd5200 clausify "<=>" (needed for some type information)
blanchet
parents: 43098
diff changeset
   656
    in
a7db0afd5200 clausify "<=>" (needed for some type information)
blanchet
parents: 43098
diff changeset
   657
      map2 (fn phi => fn j =>
43295
30aaab778416 pass Metis facts and negated conjecture as facts, with (almost) correctly set localities, so that the correct encoding is used for nonmonotonic occurrences of infinite types
blanchet
parents: 43224
diff changeset
   658
               Formula (ident ^ replicate_string (j - 1) "x", kind, phi, source,
30aaab778416 pass Metis facts and negated conjecture as facts, with (almost) correctly set localities, so that the correct encoding is used for nonmonotonic occurrences of infinite types
blanchet
parents: 43224
diff changeset
   659
                        info))
43126
a7db0afd5200 clausify "<=>" (needed for some type information)
blanchet
parents: 43098
diff changeset
   660
           phis (1 upto n)
a7db0afd5200 clausify "<=>" (needed for some type information)
blanchet
parents: 43098
diff changeset
   661
    end
a7db0afd5200 clausify "<=>" (needed for some type information)
blanchet
parents: 43098
diff changeset
   662
  | clausify_formula_line _ = []
43098
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   663
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   664
fun ensure_cnf_problem_line line =
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   665
  line |> open_formula_line |> negate_conjecture_line |> clausify_formula_line
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   666
e88e974c4846 proper handling of type variable classes in new Metis
blanchet
parents: 43092
diff changeset
   667
fun ensure_cnf_problem problem =
43126
a7db0afd5200 clausify "<=>" (needed for some type information)
blanchet
parents: 43098
diff changeset
   668
  problem |> map (apsnd (maps ensure_cnf_problem_line))
43092
93ec303e1917 more work on new metis that exploits the powerful new type encodings
blanchet
parents: 43085
diff changeset
   669
42962
3b50fdeb6cfc started adding support for THF output (but no lambdas)
blanchet
parents: 42961
diff changeset
   670
fun filter_cnf_ueq_problem problem =
3b50fdeb6cfc started adding support for THF output (but no lambdas)
blanchet
parents: 42961
diff changeset
   671
  problem
3b50fdeb6cfc started adding support for THF output (but no lambdas)
blanchet
parents: 42961
diff changeset
   672
  |> map (apsnd (map open_formula_line
3b50fdeb6cfc started adding support for THF output (but no lambdas)
blanchet
parents: 42961
diff changeset
   673
                 #> filter is_problem_line_cnf_ueq
3b50fdeb6cfc started adding support for THF output (but no lambdas)
blanchet
parents: 42961
diff changeset
   674
                 #> map negate_conjecture_line))
3b50fdeb6cfc started adding support for THF output (but no lambdas)
blanchet
parents: 42961
diff changeset
   675
  |> (fn problem =>
42939
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   676
         let
43824
0234156d3fbe don't generate Waldmeister problems with only a conjecture, since it makes it crash sometimes
blanchet
parents: 43692
diff changeset
   677
           val lines = problem |> maps snd
0234156d3fbe don't generate Waldmeister problems with only a conjecture, since it makes it crash sometimes
blanchet
parents: 43692
diff changeset
   678
           val conjs = lines |> filter is_problem_line_negated
0234156d3fbe don't generate Waldmeister problems with only a conjecture, since it makes it crash sometimes
blanchet
parents: 43692
diff changeset
   679
         in if length conjs = 1 andalso conjs <> lines then problem else [] end)
38017
3ad3e3ca2451 move Sledgehammer-specific code out of "Sledgehammer_TPTP_Format"
blanchet
parents: 38014
diff changeset
   680
37643
f576af716aa6 rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents: 37642
diff changeset
   681
42998
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   682
(** Symbol declarations **)
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   683
47150
6df6e56fd7cd tuning (in particular, Symtab instead of AList)
blanchet
parents: 47148
diff changeset
   684
fun add_declared_syms_in_problem_line (Decl (_, sym, _)) = cons sym
42998
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   685
  | add_declared_syms_in_problem_line _ = I
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   686
fun declared_syms_in_problem problem =
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   687
  fold (fold add_declared_syms_in_problem_line o snd) problem []
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   688
37643
f576af716aa6 rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents: 37642
diff changeset
   689
(** Nice names **)
f576af716aa6 rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents: 37642
diff changeset
   690
37624
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   691
fun pool_fold f xs z = pair z #> fold_rev (fn x => uncurry (f x)) xs
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   692
fun pool_map f xs =
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   693
  pool_fold (fn x => fn ys => fn pool => f x pool |>> (fn y => y :: ys)) xs []
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   694
42227
662b50b7126f if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents: 41769
diff changeset
   695
val no_qualifiers =
662b50b7126f if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents: 41769
diff changeset
   696
  let
662b50b7126f if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents: 41769
diff changeset
   697
    fun skip [] = []
662b50b7126f if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents: 41769
diff changeset
   698
      | skip (#"." :: cs) = skip cs
662b50b7126f if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents: 41769
diff changeset
   699
      | skip (c :: cs) = if Char.isAlphaNum c then skip cs else c :: keep cs
662b50b7126f if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents: 41769
diff changeset
   700
    and keep [] = []
662b50b7126f if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents: 41769
diff changeset
   701
      | keep (#"." :: cs) = skip cs
662b50b7126f if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents: 41769
diff changeset
   702
      | keep (c :: cs) = c :: keep cs
662b50b7126f if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents: 41769
diff changeset
   703
  in String.explode #> rev #> keep #> rev #> String.implode end
662b50b7126f if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents: 41769
diff changeset
   704
42761
8ea9c6fa8b53 fixed several bugs in Isar proof reconstruction, in particular w.r.t. mangled types and hAPP
blanchet
parents: 42752
diff changeset
   705
(* Long names can slow down the ATPs. *)
42724
4d6bcf846759 added "max_mono_instances" option to Sledgehammer and renamed old "monomorphize_limit" option
blanchet
parents: 42722
diff changeset
   706
val max_readable_name_size = 20
42567
d012947edd36 shorten readable names -- they can get really long with monomorphization, which actually slows down the ATPs
blanchet
parents: 42543
diff changeset
   707
43000
bd424c3dde46 cleaner handling of equality and proxies (esp. for THF)
blanchet
parents: 42998
diff changeset
   708
(* "equal" is reserved by some ATPs. "op" is also reserved, to avoid the
bd424c3dde46 cleaner handling of equality and proxies (esp. for THF)
blanchet
parents: 42998
diff changeset
   709
   unreadable "op_1", "op_2", etc., in the problem files. "eq" is reserved to
bd424c3dde46 cleaner handling of equality and proxies (esp. for THF)
blanchet
parents: 42998
diff changeset
   710
   ensure that "HOL.eq" is correctly mapped to equality (not clear whether this
bd424c3dde46 cleaner handling of equality and proxies (esp. for THF)
blanchet
parents: 42998
diff changeset
   711
   is still necessary). *)
45939
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   712
val reserved_nice_names = [tptp_old_equal, "op", "eq"]
42939
0134d6650092 added support for remote Waldmeister
blanchet
parents: 42937
diff changeset
   713
46414
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   714
(* hack to get the same hashing across Mirabelle runs (see "mirabelle.pl") *)
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   715
fun cleanup_mirabelle_name s =
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   716
  let
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   717
    val mirabelle_infix = "_Mirabelle_"
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   718
    val random_suffix_len = 10
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   719
    val (s1, s2) = Substring.position mirabelle_infix (Substring.full s)
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   720
  in
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   721
    if Substring.isEmpty s2 then
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   722
      s
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   723
    else
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   724
      Substring.string s1 ^
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   725
      Substring.string (Substring.triml (size mirabelle_infix + random_suffix_len) s2)
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   726
  end
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   727
46378
7769bf5c2a17 nicer keyword class avoidance scheme
blanchet
parents: 46338
diff changeset
   728
fun readable_name protect full_name s =
45939
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   729
  (if s = full_name then
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   730
     s
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   731
   else
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   732
     s |> no_qualifiers
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   733
       |> perhaps (try (unprefix "'"))
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   734
       |> Name.desymbolize (Char.isUpper (String.sub (full_name, 0)))
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   735
       |> (fn s =>
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   736
              if size s > max_readable_name_size then
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   737
                String.substring (s, 0, max_readable_name_size div 2 - 4) ^
46414
4ed12518fb81 improved hashing w.r.t. Mirabelle, to help debugging
blanchet
parents: 46413
diff changeset
   738
                string_of_int (hash_string (cleanup_mirabelle_name full_name)) ^
45939
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   739
                String.extract (s, size s - max_readable_name_size div 2 + 4,
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   740
                                NONE)
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   741
              else
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   742
                s)
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   743
       |> (fn s =>
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   744
              if member (op =) reserved_nice_names s then full_name else s))
46378
7769bf5c2a17 nicer keyword class avoidance scheme
blanchet
parents: 46338
diff changeset
   745
  |> protect
37624
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   746
45939
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   747
fun nice_name _ (full_name, _) NONE = (full_name, NONE)
46378
7769bf5c2a17 nicer keyword class avoidance scheme
blanchet
parents: 46338
diff changeset
   748
  | nice_name protect (full_name, desired_name) (SOME the_pool) =
42998
1c80902d0456 fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents: 42994
diff changeset
   749
    if is_built_in_tptp_symbol full_name then
39384
76603e40bd4c in debug mode, don't touch "$true" and "$false"
blanchet
parents: 39109
diff changeset
   750
      (full_name, SOME the_pool)
76603e40bd4c in debug mode, don't touch "$true" and "$false"
blanchet
parents: 39109
diff changeset
   751
    else case Symtab.lookup (fst the_pool) full_name of
37624
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   752
      SOME nice_name => (nice_name, SOME the_pool)
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   753
    | NONE =>
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   754
      let
46378
7769bf5c2a17 nicer keyword class avoidance scheme
blanchet
parents: 46338
diff changeset
   755
        val nice_prefix = readable_name protect full_name desired_name
37624
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   756
        fun add j =
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   757
          let
42644
9dd98edd48c2 SNARK workaround
blanchet
parents: 42639
diff changeset
   758
            val nice_name =
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   759
              nice_prefix ^ (if j = 1 then "" else string_of_int j)
37624
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   760
          in
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   761
            case Symtab.lookup (snd the_pool) nice_name of
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   762
              SOME full_name' =>
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   763
              if full_name = full_name' then (nice_name, the_pool)
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   764
              else add (j + 1)
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   765
            | NONE =>
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   766
              (nice_name,
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   767
               (Symtab.update_new (full_name, nice_name) (fst the_pool),
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   768
                Symtab.update_new (nice_name, full_name) (snd the_pool)))
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   769
          end
47038
2409b484e1cc continued implementation of term ordering attributes
blanchet
parents: 47030
diff changeset
   770
      in add 1 |> apsnd SOME end
37624
3ee568334813 move "nice names" from Metis to TPTP format
blanchet
parents: 37617
diff changeset
   771
46643
a88bccd2b567 added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
blanchet
parents: 46445
diff changeset
   772
fun avoid_clash_with_alt_ergo_type_vars s =
a88bccd2b567 added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
blanchet
parents: 46445
diff changeset
   773
  if is_tptp_variable s then s else s ^ "_"
a88bccd2b567 added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
blanchet
parents: 46445
diff changeset
   774
46378
7769bf5c2a17 nicer keyword class avoidance scheme
blanchet
parents: 46338
diff changeset
   775
fun avoid_clash_with_dfg_keywords s =
7769bf5c2a17 nicer keyword class avoidance scheme
blanchet
parents: 46338
diff changeset
   776
  let val n = String.size s in
46443
c86276014571 improved KBO weights -- beware of explicit applications
blanchet
parents: 46442
diff changeset
   777
    if n < 2 orelse (n = 2 andalso String.sub (s, 0) = String.sub (s, 1)) orelse
c86276014571 improved KBO weights -- beware of explicit applications
blanchet
parents: 46442
diff changeset
   778
       String.isSubstring "_" s then
46378
7769bf5c2a17 nicer keyword class avoidance scheme
blanchet
parents: 46338
diff changeset
   779
      s
47150
6df6e56fd7cd tuning (in particular, Symtab instead of AList)
blanchet
parents: 47148
diff changeset
   780
    else if is_tptp_variable s then
47146
7276f2b12ff7 avoid DL
blanchet
parents: 47073
diff changeset
   781
      (* "DL" appears to be a SPASS 3.7 keyword *)
47150
6df6e56fd7cd tuning (in particular, Symtab instead of AList)
blanchet
parents: 47148
diff changeset
   782
      if s = "DL" then s ^ "_" else s
46378
7769bf5c2a17 nicer keyword class avoidance scheme
blanchet
parents: 46338
diff changeset
   783
    else
7769bf5c2a17 nicer keyword class avoidance scheme
blanchet
parents: 46338
diff changeset
   784
      String.substring (s, 0, n - 1) ^
7769bf5c2a17 nicer keyword class avoidance scheme
blanchet
parents: 46338
diff changeset
   785
      String.str (Char.toUpper (String.sub (s, n - 1)))
7769bf5c2a17 nicer keyword class avoidance scheme
blanchet
parents: 46338
diff changeset
   786
  end
7769bf5c2a17 nicer keyword class avoidance scheme
blanchet
parents: 46338
diff changeset
   787
45939
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   788
fun nice_atp_problem readable_names format problem =
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   789
  let
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   790
    val empty_pool =
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   791
      if readable_names then SOME (Symtab.empty, Symtab.empty) else NONE
46643
a88bccd2b567 added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
blanchet
parents: 46445
diff changeset
   792
    val avoid_clash =
a88bccd2b567 added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
blanchet
parents: 46445
diff changeset
   793
      case format of
48130
blanchet
parents: 48129
diff changeset
   794
        TFF (Polymorphic, _) => avoid_clash_with_alt_ergo_type_vars
48131
1016664b8feb started adding polymophic SPASS output
blanchet
parents: 48130
diff changeset
   795
      | DFG _ => avoid_clash_with_dfg_keywords
46643
a88bccd2b567 added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
blanchet
parents: 46445
diff changeset
   796
      | _ => I
a88bccd2b567 added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
blanchet
parents: 46445
diff changeset
   797
    val nice_name = nice_name avoid_clash
45939
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   798
    fun nice_type (AType (name, tys)) =
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   799
        nice_name name ##>> pool_map nice_type tys #>> AType
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   800
      | nice_type (AFun (ty1, ty2)) = nice_type ty1 ##>> nice_type ty2 #>> AFun
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   801
      | nice_type (ATyAbs (names, ty)) =
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   802
        pool_map nice_name names ##>> nice_type ty #>> ATyAbs
48132
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   803
    fun nice_term (ATerm ((name, tys), ts)) =
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   804
        nice_name name ##>> pool_map nice_type tys ##>> pool_map nice_term ts
9aa0fad4e864 added type arguments to "ATerm" constructor -- but don't use them yet
blanchet
parents: 48131
diff changeset
   805
        #>> ATerm
47911
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   806
      | nice_term (AAbs (((name, ty), tm), args)) =
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   807
        nice_name name ##>> nice_type ty ##>> nice_term tm
2168126446bb extend ATP data structure to avoid having to perform ((non-)capture avoiding) beta reduction -- fixes a bug in the THF translation of "is_measure.simps"
blanchet
parents: 47768
diff changeset
   808
        ##>> pool_map nice_term args #>> AAbs
45939
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   809
    fun nice_formula (AQuant (q, xs, phi)) =
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   810
        pool_map nice_name (map fst xs)
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   811
        ##>> pool_map (fn NONE => pair NONE
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   812
                        | SOME ty => nice_type ty #>> SOME) (map snd xs)
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   813
        ##>> nice_formula phi
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   814
        #>> (fn ((ss, ts), phi) => AQuant (q, ss ~~ ts, phi))
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   815
      | nice_formula (AConn (c, phis)) =
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   816
        pool_map nice_formula phis #>> curry AConn c
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   817
      | nice_formula (AAtom tm) = nice_term tm #>> AAtom
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   818
    fun nice_problem_line (Decl (ident, sym, ty)) =
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   819
        nice_name sym ##>> nice_type ty #>> (fn (sym, ty) => Decl (ident, sym, ty))
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   820
      | nice_problem_line (Formula (ident, kind, phi, source, info)) =
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   821
        nice_formula phi #>> (fn phi => Formula (ident, kind, phi, source, info))
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   822
    fun nice_problem problem =
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   823
      pool_map (fn (heading, lines) =>
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   824
                   pool_map nice_problem_line lines #>> pair heading) problem
711fec5b4f61 don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents: 45938
diff changeset
   825
  in nice_problem problem empty_pool end
37509
f39464d971c4 factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff changeset
   826
f39464d971c4 factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff changeset
   827
end;