src/HOL/Tools/res_clause.ML
author paulson
Wed, 17 Jan 2007 09:52:54 +0100
changeset 22079 b161604f0c8d
parent 21858 05f57309170c
child 22130 0906fd95e0b5
permissions -rw-r--r--
Deleted mk_fol_type, since the constructors can be used directly
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     1
(*  Author: Jia Meng, Cambridge University Computer Laboratory
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     2
    ID: $Id$
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     3
    Copyright 2004 University of Cambridge
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     4
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     5
ML data structure for storing/printing FOL clauses and arity clauses.
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     6
Typed equality is treated differently.
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     7
*)
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     8
20422
35a6a4c863f1 removed the (apparently pointless) signature constraint
paulson
parents: 20418
diff changeset
     9
(*FIXME: is this signature necessary? Or maybe define and open a Basic_ResClause?*)
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    10
signature RES_CLAUSE =
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    11
  sig
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    12
  exception CLAUSE of string * term
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    13
  type clause and arityClause and classrelClause
20824
aca7d38283bf extensions for Susanto
paulson
parents: 20790
diff changeset
    14
  datatype fol_type = AtomV of string
aca7d38283bf extensions for Susanto
paulson
parents: 20790
diff changeset
    15
                    | AtomF of string
aca7d38283bf extensions for Susanto
paulson
parents: 20790
diff changeset
    16
                    | Comp of string * fol_type list;
21813
06a06f6d3166 Deleted the unused type argument of UVar
paulson
parents: 21790
diff changeset
    17
  datatype fol_term = UVar of string
20824
aca7d38283bf extensions for Susanto
paulson
parents: 20790
diff changeset
    18
                    | Fun of string * fol_type list * fol_term list;
aca7d38283bf extensions for Susanto
paulson
parents: 20790
diff changeset
    19
  datatype predicate = Predicate of string * fol_type list * fol_term list;
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
    20
  datatype kind = Axiom | Conjecture;
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
    21
  val name_of_kind : kind -> string
20824
aca7d38283bf extensions for Susanto
paulson
parents: 20790
diff changeset
    22
  type typ_var and type_literal and literal
aca7d38283bf extensions for Susanto
paulson
parents: 20790
diff changeset
    23
  val literals_of_term: Term.term -> literal list * (typ_var * Term.sort) list
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    24
  val add_typs_aux : (typ_var * string list) list -> type_literal list * type_literal list
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    25
  val arity_clause_thy: theory -> arityClause list 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    26
  val ascii_of : string -> string
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
    27
  val tptp_pack : string list -> string
21290
33b6bb5d6ab8 Improvement to classrel clauses: now outputs the minimum needed.
paulson
parents: 21254
diff changeset
    28
  val make_classrel_clauses: theory -> class list -> class list -> classrelClause list 
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    29
  val clause_prefix : string 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    30
  val clause2tptp : clause -> string * string list
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    31
  val const_prefix : string
20022
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
    32
  val dfg_write_file:  thm list -> string -> 
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
    33
       ((thm * (string * int)) list * classrelClause list * arityClause list) -> string list
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    34
  val fixed_var_prefix : string
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
    35
  val gen_tptp_cls : int * string * string * string list -> string
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    36
  val get_axiomName : clause ->  string
20824
aca7d38283bf extensions for Susanto
paulson
parents: 20790
diff changeset
    37
  val get_literals : clause -> literal list
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    38
  val init : theory -> unit
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    39
  val isMeta : string -> bool
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    40
  val isTaut : clause -> bool
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    41
  val list_ord : ('a * 'b -> order) -> 'a list * 'b list -> order
19443
e32a4703d834 Take conjectures and axioms as thms when convert them to ResClause.clause format.
mengj
parents: 19354
diff changeset
    42
  val make_axiom_clause : thm -> string * int -> clause option
e32a4703d834 Take conjectures and axioms as thms when convert them to ResClause.clause format.
mengj
parents: 19354
diff changeset
    43
  val make_conjecture_clauses : thm list -> clause list
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    44
  val make_fixed_const : string -> string		
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    45
  val make_fixed_type_const : string -> string   
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    46
  val make_fixed_type_var : string -> string
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    47
  val make_fixed_var : string -> string
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    48
  val make_schematic_type_var : string * int -> string
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    49
  val make_schematic_var : string * int -> string
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    50
  val make_type_class : string -> string
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    51
  val mk_typ_var_sort : Term.typ -> typ_var * sort
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    52
  val paren_pack : string list -> string
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    53
  val schematic_var_prefix : string
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    54
  val string_of_fol_type : fol_type -> string
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    55
  val tconst_prefix : string 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    56
  val tfree_prefix : string
21813
06a06f6d3166 Deleted the unused type argument of UVar
paulson
parents: 21790
diff changeset
    57
  val tvar_prefix : string
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
    58
  val tptp_arity_clause : arityClause -> string
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
    59
  val tptp_classrelClause : classrelClause -> string
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
    60
  val tptp_of_typeLit : type_literal -> string
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
    61
  val tptp_tfree_clause : string -> string
20022
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
    62
  val tptp_write_file: thm list -> string -> 
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
    63
       ((thm * (string * int)) list * classrelClause list * arityClause list) -> string list
17908
ac97527724ba More functions are added to the signature of ResClause
mengj
parents: 17888
diff changeset
    64
  val union_all : ''a list list -> ''a list
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
    65
  val writeln_strs: TextIO.outstream -> TextIO.vector list -> unit
19719
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    66
  val dfg_sign: bool -> string -> string
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    67
  val dfg_of_typeLit: type_literal -> string
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    68
  val get_tvar_strs: (typ_var * sort) list -> string list
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    69
  val gen_dfg_cls: int * string * string * string * string list -> string
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    70
  val add_foltype_funcs: fol_type * int Symtab.table -> int Symtab.table
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    71
  val add_arityClause_funcs: arityClause * int Symtab.table -> int Symtab.table
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    72
  val add_arityClause_preds: arityClause * int Symtab.table -> int Symtab.table
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    73
  val add_classrelClause_preds : classrelClause * int Symtab.table -> int Symtab.table
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    74
  val dfg_tfree_clause : string -> string
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    75
  val string_of_start: string -> string
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    76
  val string_of_descrip : string -> string
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    77
  val string_of_symbols: string -> string -> string
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    78
  val string_of_funcs: (string * int) list -> string
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    79
  val string_of_preds: (string * Int.int) list -> string
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    80
  val dfg_classrelClause: classrelClause -> string
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    81
  val dfg_arity_clause: arityClause -> string
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
    82
end;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    83
20422
35a6a4c863f1 removed the (apparently pointless) signature constraint
paulson
parents: 20418
diff changeset
    84
structure ResClause =
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    85
struct
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    86
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    87
val schematic_var_prefix = "V_";
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    88
val fixed_var_prefix = "v_";
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    89
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
    90
val tvar_prefix = "T_";
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
    91
val tfree_prefix = "t_";
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    92
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    93
val clause_prefix = "cls_"; 
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17422
diff changeset
    94
val arclause_prefix = "clsarity_" 
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17422
diff changeset
    95
val clrelclause_prefix = "clsrel_";
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    96
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
    97
val const_prefix = "c_";
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
    98
val tconst_prefix = "tc_"; 
16199
ee95ab217fee no longer emits literals for type class HOL.type; also minor tidying
paulson
parents: 16039
diff changeset
    99
val class_prefix = "class_"; 
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   100
17775
2679ba74411f minor code tidyig
paulson
parents: 17764
diff changeset
   101
fun union_all xss = foldl (op union) [] xss;
2679ba74411f minor code tidyig
paulson
parents: 17764
diff changeset
   102
2679ba74411f minor code tidyig
paulson
parents: 17764
diff changeset
   103
(*Provide readable names for the more common symbolic functions*)
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   104
val const_trans_table =
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   105
      Symtab.make [("op =", "equal"),
19277
f7602e74d948 renamed op < <= to Orderings.less(_eq)
haftmann
parents: 19233
diff changeset
   106
	  	   ("Orderings.less_eq", "lessequals"),
f7602e74d948 renamed op < <= to Orderings.less(_eq)
haftmann
parents: 19233
diff changeset
   107
		   ("Orderings.less", "less"),
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   108
		   ("op &", "and"),
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   109
		   ("op |", "or"),
19233
77ca20b0ed77 renamed HOL + - * etc. to HOL.plus HOL.minus HOL.times etc.
haftmann
parents: 19207
diff changeset
   110
		   ("HOL.plus", "plus"),
77ca20b0ed77 renamed HOL + - * etc. to HOL.plus HOL.minus HOL.times etc.
haftmann
parents: 19207
diff changeset
   111
		   ("HOL.minus", "minus"),
77ca20b0ed77 renamed HOL + - * etc. to HOL.plus HOL.minus HOL.times etc.
haftmann
parents: 19207
diff changeset
   112
		   ("HOL.times", "times"),
21416
f23e4e75dfd3 dvd_def now with object equality
haftmann
parents: 21373
diff changeset
   113
		   ("Divides.div", "div"),
18676
5bce9fddce2e more readable divide ops
paulson
parents: 18449
diff changeset
   114
		   ("HOL.divide", "divide"),
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   115
		   ("op -->", "implies"),
17375
8727db8f0461 nice names for more infix operators
paulson
parents: 17317
diff changeset
   116
		   ("{}", "emptyset"),
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   117
		   ("op :", "in"),
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   118
		   ("op Un", "union"),
18390
aaecdaef4c04 now generates the name "append"
paulson
parents: 18275
diff changeset
   119
		   ("op Int", "inter"),
20790
a9595fdc02b1 Added the combinator constants to the constants table.
mengj
parents: 20422
diff changeset
   120
		   ("List.op @", "append"),
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents: 20854
diff changeset
   121
		   ("ATP_Linkup.fequal", "fequal"),
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents: 20854
diff changeset
   122
		   ("ATP_Linkup.COMBI", "COMBI"),
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents: 20854
diff changeset
   123
		   ("ATP_Linkup.COMBK", "COMBK"),
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents: 20854
diff changeset
   124
		   ("ATP_Linkup.COMBB", "COMBB"),
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents: 20854
diff changeset
   125
		   ("ATP_Linkup.COMBC", "COMBC"),
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents: 20854
diff changeset
   126
		   ("ATP_Linkup.COMBS", "COMBS"),
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents: 20854
diff changeset
   127
		   ("ATP_Linkup.COMBB'", "COMBB_e"),
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents: 20854
diff changeset
   128
		   ("ATP_Linkup.COMBC'", "COMBC_e"),
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents: 20854
diff changeset
   129
		   ("ATP_Linkup.COMBS'", "COMBS_e")];
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   130
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
   131
val type_const_trans_table =
18411
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   132
      Symtab.make [("*", "prod"),
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   133
	  	   ("+", "sum"),
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   134
		   ("~=>", "map")];
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   135
15610
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   136
(*Escaping of special characters.
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   137
  Alphanumeric characters are left unchanged.
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   138
  The character _ goes to __
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   139
  Characters in the range ASCII space to / go to _A to _P, respectively.
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   140
  Other printing characters go to _NNN where NNN is the decimal ASCII code.*)
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   141
local
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   142
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   143
val A_minus_space = Char.ord #"A" - Char.ord #" ";
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   144
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   145
fun ascii_of_c c =
15610
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   146
  if Char.isAlphaNum c then String.str c
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   147
  else if c = #"_" then "__"
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   148
  else if #" " <= c andalso c <= #"/" 
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   149
       then "_" ^ String.str (Char.chr (Char.ord c + A_minus_space))
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   150
  else if Char.isPrint c then ("_" ^ Int.toString (Char.ord c))
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   151
  else ""
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   152
15610
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   153
in
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   154
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   155
val ascii_of = String.translate ascii_of_c;
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   156
f855fd163b62 more concise ASCII escaping
paulson
parents: 15608
diff changeset
   157
end;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   158
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17422
diff changeset
   159
(* convert a list of strings into one single string; surrounded by brackets *)
18218
9a7ffce389c3 new treatment of polymorphic types, using Sign.const_typargs
paulson
parents: 18199
diff changeset
   160
fun paren_pack [] = ""   (*empty argument list*)
9a7ffce389c3 new treatment of polymorphic types, using Sign.const_typargs
paulson
parents: 18199
diff changeset
   161
  | paren_pack strings = "(" ^ commas strings ^ ")";
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17422
diff changeset
   162
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   163
(*TSTP format uses (...) rather than the old [...]*)
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   164
fun tptp_pack strings = "(" ^ space_implode " | " strings ^ ")";
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17422
diff changeset
   165
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17422
diff changeset
   166
16925
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16903
diff changeset
   167
(*Remove the initial ' character from a type variable, if it is present*)
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16903
diff changeset
   168
fun trim_type_var s =
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16903
diff changeset
   169
  if s <> "" andalso String.sub(s,0) = #"'" then String.extract(s,1,NONE)
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16903
diff changeset
   170
  else error ("trim_type: Malformed type variable encountered: " ^ s);
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16903
diff changeset
   171
16903
bf42a9071ad1 streamlined the tptp output
paulson
parents: 16794
diff changeset
   172
fun ascii_of_indexname (v,0) = ascii_of v
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17422
diff changeset
   173
  | ascii_of_indexname (v,i) = ascii_of v ^ "_" ^ Int.toString i;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   174
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
   175
fun make_schematic_var v = schematic_var_prefix ^ (ascii_of_indexname v);
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   176
fun make_fixed_var x = fixed_var_prefix ^ (ascii_of x);
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   177
16925
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16903
diff changeset
   178
fun make_schematic_type_var (x,i) = 
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16903
diff changeset
   179
      tvar_prefix ^ (ascii_of_indexname (trim_type_var x,i));
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16903
diff changeset
   180
fun make_fixed_type_var x = tfree_prefix ^ (ascii_of (trim_type_var x));
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   181
18411
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   182
fun lookup_const c =
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17404
diff changeset
   183
    case Symtab.lookup const_trans_table c of
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
   184
        SOME c' => c'
18411
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   185
      | NONE => ascii_of c;
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
   186
18411
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   187
fun lookup_type_const c = 
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17404
diff changeset
   188
    case Symtab.lookup type_const_trans_table c of
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
   189
        SOME c' => c'
18411
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   190
      | NONE => ascii_of c;
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   191
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   192
fun make_fixed_const "op =" = "equal"   (*MUST BE "equal" because it's built-in to ATPs*)
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   193
  | make_fixed_const c      = const_prefix ^ lookup_const c;
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   194
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   195
fun make_fixed_type_const c = tconst_prefix ^ lookup_type_const c;
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   196
17261
193b84a70ca4 curried_lookup/update;
wenzelm
parents: 17234
diff changeset
   197
fun make_type_class clas = class_prefix ^ ascii_of clas;
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   198
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   199
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   200
(***** definitions and functions for FOL clauses, for conversion to TPTP or DFG format. *****)
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   201
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   202
datatype kind = Axiom | Conjecture;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   203
fun name_of_kind Axiom = "axiom"
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   204
  | name_of_kind Conjecture = "negated_conjecture";
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   205
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   206
type clause_id = int;
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   207
type axiom_name = string;
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   208
type polarity = bool;
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   209
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   210
(**** Isabelle FOL clauses ****)
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   211
18402
aaba095cf62b 1. changed fol_type, it's not a string type anymore.
mengj
parents: 18390
diff changeset
   212
datatype typ_var = FOLTVar of indexname | FOLTFree of string;
aaba095cf62b 1. changed fol_type, it's not a string type anymore.
mengj
parents: 18390
diff changeset
   213
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   214
(*FIXME: give the constructors more sensible names*)
18402
aaba095cf62b 1. changed fol_type, it's not a string type anymore.
mengj
parents: 18390
diff changeset
   215
datatype fol_type = AtomV of string
aaba095cf62b 1. changed fol_type, it's not a string type anymore.
mengj
parents: 18390
diff changeset
   216
		  | AtomF of string
aaba095cf62b 1. changed fol_type, it's not a string type anymore.
mengj
parents: 18390
diff changeset
   217
		  | Comp of string * fol_type list;
aaba095cf62b 1. changed fol_type, it's not a string type anymore.
mengj
parents: 18390
diff changeset
   218
aaba095cf62b 1. changed fol_type, it's not a string type anymore.
mengj
parents: 18390
diff changeset
   219
fun string_of_fol_type (AtomV x) = x
aaba095cf62b 1. changed fol_type, it's not a string type anymore.
mengj
parents: 18390
diff changeset
   220
  | string_of_fol_type (AtomF x) = x
aaba095cf62b 1. changed fol_type, it's not a string type anymore.
mengj
parents: 18390
diff changeset
   221
  | string_of_fol_type (Comp(tcon,tps)) = 
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   222
      tcon ^ (paren_pack (map string_of_fol_type tps));
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   223
      
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   224
(*First string is the type class; the second is a TVar or TFfree*)
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   225
datatype type_literal = LTVar of string * string | LTFree of string * string;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   226
21813
06a06f6d3166 Deleted the unused type argument of UVar
paulson
parents: 21790
diff changeset
   227
datatype fol_term = UVar of string
20038
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   228
                  | Fun of string * fol_type list * fol_term list;
20824
aca7d38283bf extensions for Susanto
paulson
parents: 20790
diff changeset
   229
datatype predicate = Predicate of string * fol_type list * fol_term list;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   230
20018
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   231
datatype literal = Literal of polarity * predicate;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   232
17999
6fe9cb1da9ed Added several functions to the signature.
mengj
parents: 17993
diff changeset
   233
fun mk_typ_var_sort (TFree(a,s)) = (FOLTFree a,s)
6fe9cb1da9ed Added several functions to the signature.
mengj
parents: 17993
diff changeset
   234
  | mk_typ_var_sort (TVar(v,s)) = (FOLTVar v,s);
6fe9cb1da9ed Added several functions to the signature.
mengj
parents: 17993
diff changeset
   235
6fe9cb1da9ed Added several functions to the signature.
mengj
parents: 17993
diff changeset
   236
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   237
(*A clause has first-order literals and other, type-related literals*)
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   238
datatype clause = 
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   239
	 Clause of {clause_id: clause_id,
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   240
		    axiom_name: axiom_name,
19447
d4f3f8f9c0a5 the "th" field of type "clause"
paulson
parents: 19443
diff changeset
   241
		    th: thm,
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   242
		    kind: kind,
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   243
		    literals: literal list,
18869
00741f7280f7 removal of ResClause.num_of_clauses and other simplifications
paulson
parents: 18868
diff changeset
   244
		    types_sorts: (typ_var * sort) list};
00741f7280f7 removal of ResClause.num_of_clauses and other simplifications
paulson
parents: 18868
diff changeset
   245
00741f7280f7 removal of ResClause.num_of_clauses and other simplifications
paulson
parents: 18868
diff changeset
   246
fun get_axiomName (Clause cls) = #axiom_name cls;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   247
20824
aca7d38283bf extensions for Susanto
paulson
parents: 20790
diff changeset
   248
fun get_literals (Clause cls) = #literals cls;
aca7d38283bf extensions for Susanto
paulson
parents: 20790
diff changeset
   249
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   250
exception CLAUSE of string * term;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   251
20018
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   252
fun isFalse (Literal (pol, Predicate(pname,_,[]))) =
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   253
      (pol andalso pname = "c_False") orelse
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   254
      (not pol andalso pname = "c_True")
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17312
diff changeset
   255
  | isFalse _ = false;
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17312
diff changeset
   256
20018
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   257
fun isTrue (Literal (pol, Predicate(pname,_,[]))) =
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   258
      (pol andalso pname = "c_True") orelse
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   259
      (not pol andalso pname = "c_False")
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   260
  | isTrue _ = false;
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   261
  
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   262
fun isTaut (Clause {literals,...}) = exists isTrue literals;  
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   263
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17312
diff changeset
   264
18218
9a7ffce389c3 new treatment of polymorphic types, using Sign.const_typargs
paulson
parents: 18199
diff changeset
   265
(*Declarations of the current theory--to allow suppressing types.*)
9a7ffce389c3 new treatment of polymorphic types, using Sign.const_typargs
paulson
parents: 18199
diff changeset
   266
val const_typargs = ref (Library.K [] : (string*typ -> typ list));
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17312
diff changeset
   267
21790
9d2761d09d91 Removal of the "keep_types" flag: we always keep types!
paulson
parents: 21564
diff changeset
   268
fun num_typargs(s,T) = length (!const_typargs (s,T));
16925
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16903
diff changeset
   269
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16903
diff changeset
   270
(*Initialize the type suppression mechanism with the current theory before
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16903
diff changeset
   271
    producing any clauses!*)
18218
9a7ffce389c3 new treatment of polymorphic types, using Sign.const_typargs
paulson
parents: 18199
diff changeset
   272
fun init thy = (const_typargs := Sign.const_typargs thy);
16925
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16903
diff changeset
   273
    
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   274
18402
aaba095cf62b 1. changed fol_type, it's not a string type anymore.
mengj
parents: 18390
diff changeset
   275
(*Flatten a type to a fol_type while accumulating sort constraints on the TFrees and
16925
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16903
diff changeset
   276
  TVars it contains.*)    
18218
9a7ffce389c3 new treatment of polymorphic types, using Sign.const_typargs
paulson
parents: 18199
diff changeset
   277
fun type_of (Type (a, Ts)) = 
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   278
      let val (folTyps, ts) = types_of Ts 
18218
9a7ffce389c3 new treatment of polymorphic types, using Sign.const_typargs
paulson
parents: 18199
diff changeset
   279
	  val t = make_fixed_type_const a
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   280
      in (Comp(t,folTyps), ts) end
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   281
  | type_of (TFree (a,s)) = (AtomF(make_fixed_type_var a), [(FOLTFree a, s)]) 
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   282
  | type_of (TVar (v, s)) = (AtomV(make_schematic_type_var v), [(FOLTVar v, s)])
18218
9a7ffce389c3 new treatment of polymorphic types, using Sign.const_typargs
paulson
parents: 18199
diff changeset
   283
and types_of Ts =
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   284
      let val (folTyps,ts) = ListPair.unzip (map type_of Ts)
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   285
      in (folTyps, union_all ts) end;
15390
87f78411f7c9 Comments and other tweaks by Jia
paulson
parents: 15347
diff changeset
   286
18439
4b517881ac7e Added functions for fol_type; also put some functions to the signature, used by ResHolClause.
mengj
parents: 18420
diff changeset
   287
18218
9a7ffce389c3 new treatment of polymorphic types, using Sign.const_typargs
paulson
parents: 18199
diff changeset
   288
fun const_types_of (c,T) = types_of (!const_typargs (c,T));
16925
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16903
diff changeset
   289
16903
bf42a9071ad1 streamlined the tptp output
paulson
parents: 16794
diff changeset
   290
(* Any variables created via the METAHYPS tactical should be treated as
bf42a9071ad1 streamlined the tptp output
paulson
parents: 16794
diff changeset
   291
   universal vars, although it is represented as "Free(...)" by Isabelle *)
bf42a9071ad1 streamlined the tptp output
paulson
parents: 16794
diff changeset
   292
val isMeta = String.isPrefix "METAHYP1_"
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   293
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   294
fun pred_name_type (Const(c,T)) = (make_fixed_const c, const_types_of (c,T))
15390
87f78411f7c9 Comments and other tweaks by Jia
paulson
parents: 15347
diff changeset
   295
  | pred_name_type (Free(x,T))  = 
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   296
      if isMeta x then raise CLAUSE("Predicate Not First Order 1", Free(x,T)) 
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   297
      else (make_fixed_var x, ([],[]))
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   298
  | pred_name_type (v as Var _) = raise CLAUSE("Predicate Not First Order 2", v)
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   299
  | pred_name_type t        = raise CLAUSE("Predicate input unexpected", t);
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   300
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   301
fun fun_name_type (Const(c,T)) args = (make_fixed_const c, const_types_of (c,T))
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   302
  | fun_name_type (Free(x,T)) args  = 
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   303
       if isMeta x then raise CLAUSE("Function Not First Order", Free(x,T))
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   304
       else (make_fixed_var x, ([],[]))
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   305
  | fun_name_type f args = raise CLAUSE("Function Not First Order 1", f);
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   306
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   307
(*Convert a term to a fol_term while accumulating sort constraints on the TFrees and
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   308
  TVars it contains.*)    
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   309
fun term_of (Var(ind_nm,T)) = 
21813
06a06f6d3166 Deleted the unused type argument of UVar
paulson
parents: 21790
diff changeset
   310
      let val (_,ts) = type_of T
06a06f6d3166 Deleted the unused type argument of UVar
paulson
parents: 21790
diff changeset
   311
      in (UVar(make_schematic_var ind_nm), ts) end
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   312
  | term_of (Free(x,T)) = 
21813
06a06f6d3166 Deleted the unused type argument of UVar
paulson
parents: 21790
diff changeset
   313
      let val (_,ts) = type_of T
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
   314
      in
21813
06a06f6d3166 Deleted the unused type argument of UVar
paulson
parents: 21790
diff changeset
   315
	  if isMeta x then (UVar(make_schematic_var(x,0)), ts)
06a06f6d3166 Deleted the unused type argument of UVar
paulson
parents: 21790
diff changeset
   316
	  else (Fun(make_fixed_var x, [], []), ts)
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
   317
      end
18218
9a7ffce389c3 new treatment of polymorphic types, using Sign.const_typargs
paulson
parents: 18199
diff changeset
   318
  | term_of app = 
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
   319
      let val (f,args) = strip_comb app
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   320
	  val (funName,(contys,ts1)) = fun_name_type f args
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   321
	  val (args',ts2) = terms_of args
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
   322
      in
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   323
	  (Fun(funName,contys,args'), union_all (ts1::ts2))
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
   324
      end
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   325
and terms_of ts = ListPair.unzip (map term_of ts)
15390
87f78411f7c9 Comments and other tweaks by Jia
paulson
parents: 15347
diff changeset
   326
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   327
(*Create a predicate value, again accumulating sort constraints.*)    
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   328
fun pred_of (Const("op =", typ), args) =
21813
06a06f6d3166 Deleted the unused type argument of UVar
paulson
parents: 21790
diff changeset
   329
      let val (args',ts) = terms_of args
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   330
      in
21813
06a06f6d3166 Deleted the unused type argument of UVar
paulson
parents: 21790
diff changeset
   331
	  (Predicate(make_fixed_const "op =", [], args'),
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   332
	   union_all ts)
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   333
      end
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   334
  | pred_of (pred,args) = 
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   335
      let val (pname, (predType,ts1)) = pred_name_type pred
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   336
	  val (args',ts2) = terms_of args
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   337
      in
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   338
	  (Predicate(pname,predType,args'), union_all (ts1::ts2))
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   339
      end;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   340
20018
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   341
(*Treatment of literals, possibly negated*)
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   342
fun predicate_of ((Const("Not",_) $ P), polarity) = predicate_of (P, not polarity)
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   343
  | predicate_of (term,polarity) = (pred_of (strip_comb term), polarity);
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   344
17888
116a8d1c7a67 new interface to make_conjecture_clauses
paulson
parents: 17845
diff changeset
   345
fun literals_of_term1 args (Const("Trueprop",_) $ P) = literals_of_term1 args P
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   346
  | literals_of_term1 args (Const("op |",_) $ P $ Q) = 
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   347
      literals_of_term1 (literals_of_term1 args P) Q
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   348
  | literals_of_term1 (lits, ts) P =
20018
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   349
      let val ((pred, ts'), polarity) = predicate_of (P,true)
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   350
	  val lits' = Literal(polarity,pred) :: lits
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17230
diff changeset
   351
      in
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   352
	  (lits', ts union ts')
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17230
diff changeset
   353
      end;
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   354
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   355
val literals_of_term = literals_of_term1 ([],[]);
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   356
18403
df0c0f35c897 Changed literals' ordering and the functions for sorting literals.
mengj
parents: 18402
diff changeset
   357
df0c0f35c897 Changed literals' ordering and the functions for sorting literals.
mengj
parents: 18402
diff changeset
   358
fun list_ord _ ([],[]) = EQUAL
df0c0f35c897 Changed literals' ordering and the functions for sorting literals.
mengj
parents: 18402
diff changeset
   359
  | list_ord _ ([],_) = LESS
df0c0f35c897 Changed literals' ordering and the functions for sorting literals.
mengj
parents: 18402
diff changeset
   360
  | list_ord _ (_,[]) = GREATER
19207
33f1b4515ce4 Tidying and tracing. Handling exn CLAUSE so that errors don't reach top-level.
paulson
parents: 19197
diff changeset
   361
  | list_ord ord (x::xs, y::ys) = 
33f1b4515ce4 Tidying and tracing. Handling exn CLAUSE so that errors don't reach top-level.
paulson
parents: 19197
diff changeset
   362
      (case ord(x,y) of EQUAL => list_ord ord (xs,ys)
33f1b4515ce4 Tidying and tracing. Handling exn CLAUSE so that errors don't reach top-level.
paulson
parents: 19197
diff changeset
   363
	 	      | xy_ord => xy_ord);
33f1b4515ce4 Tidying and tracing. Handling exn CLAUSE so that errors don't reach top-level.
paulson
parents: 19197
diff changeset
   364
		     
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   365
(*Make literals for sorted type variables.  FIXME: can it use map?*) 
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   366
fun sorts_on_typs (_, [])   = ([]) 
16199
ee95ab217fee no longer emits literals for type class HOL.type; also minor tidying
paulson
parents: 16039
diff changeset
   367
  | sorts_on_typs (v, "HOL.type" :: s) =
18411
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   368
      sorts_on_typs (v,s)                (*IGNORE sort "type"*)
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   369
  | sorts_on_typs ((FOLTVar indx), s::ss) =
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   370
      LTVar(make_type_class s, make_schematic_type_var indx) :: 
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   371
      sorts_on_typs ((FOLTVar indx), ss)
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   372
  | sorts_on_typs ((FOLTFree x), s::ss) =
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   373
      LTFree(make_type_class s, make_fixed_type_var x) :: 
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   374
      sorts_on_typs ((FOLTFree x), ss);
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   375
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   376
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   377
fun pred_of_sort (LTVar (s,ty)) = (s,1)
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   378
|   pred_of_sort (LTFree (s,ty)) = (s,1)
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   379
16199
ee95ab217fee no longer emits literals for type class HOL.type; also minor tidying
paulson
parents: 16039
diff changeset
   380
(*Given a list of sorted type variables, return two separate lists.
ee95ab217fee no longer emits literals for type class HOL.type; also minor tidying
paulson
parents: 16039
diff changeset
   381
  The first is for TVars, the second for TFrees.*)
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   382
fun add_typs_aux [] = ([],[])
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   383
  | add_typs_aux ((FOLTVar indx,s)::tss) = 
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
   384
      let val vs = sorts_on_typs (FOLTVar indx, s)
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   385
	  val (vss,fss) = add_typs_aux tss
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   386
      in
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   387
	  (vs union vss, fss)
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   388
      end
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   389
  | add_typs_aux ((FOLTFree x,s)::tss) =
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
   390
      let val fs = sorts_on_typs (FOLTFree x, s)
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   391
	  val (vss,fss) = add_typs_aux tss
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   392
      in
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   393
	  (vss, fs union fss)
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   394
      end;
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   395
20015
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   396
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   397
(** make axiom and conjecture clauses. **)
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   398
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   399
exception MAKE_CLAUSE;
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   400
fun make_clause (clause_id, axiom_name, th, kind) =
21470
7c1b59ddcd56 Consolidation of code to "blacklist" unhelpful theorems, including record
paulson
parents: 21432
diff changeset
   401
  let val (lits,types_sorts) = literals_of_term (prop_of th)
20018
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   402
  in if forall isFalse lits 
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   403
     then error "Problem too trivial for resolution (empty clause)"
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   404
     else Clause {clause_id = clause_id, axiom_name = axiom_name, th = th, 
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   405
                  kind = kind, literals = lits, types_sorts = types_sorts}
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   406
  end;		     
20015
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   407
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   408
fun get_tvar_strs [] = []
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   409
  | get_tvar_strs ((FOLTVar indx,s)::tss) = 
20854
f9cf9e62d11c insert replacing ins ins_int ins_string
haftmann
parents: 20824
diff changeset
   410
      insert (op =) (make_schematic_type_var indx) (get_tvar_strs tss)
20015
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   411
  | get_tvar_strs((FOLTFree x,s)::tss) = get_tvar_strs tss
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   412
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   413
(* check if a clause is first-order before making a conjecture clause*)
20418
paulson
parents: 20038
diff changeset
   414
fun make_conjecture_clause n th =
paulson
parents: 20038
diff changeset
   415
  if Meson.is_fol_term (prop_of th) then make_clause(n, "conjecture", th, Conjecture)
paulson
parents: 20038
diff changeset
   416
  else raise CLAUSE("Goal is not FOL", prop_of th);
paulson
parents: 20038
diff changeset
   417
  
20015
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   418
fun make_conjecture_clauses_aux _ [] = []
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   419
  | make_conjecture_clauses_aux n (t::ts) =
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   420
      make_conjecture_clause n t :: make_conjecture_clauses_aux (n+1) ts
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   421
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   422
val make_conjecture_clauses = make_conjecture_clauses_aux 0
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   423
18199
d236379ea408 -- before converting axiom and conjecture clauses into ResClause.clause format, perform "check_is_fol_term" first.
mengj
parents: 18056
diff changeset
   424
(*before converting an axiom clause to "clause" format, check if it is FOL*)
19443
e32a4703d834 Take conjectures and axioms as thms when convert them to ResClause.clause format.
mengj
parents: 19354
diff changeset
   425
fun make_axiom_clause thm (ax_name,cls_id) =
20022
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
   426
  if Meson.is_fol_term (prop_of thm) 
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
   427
  then (SOME (make_clause(cls_id, ax_name, thm, Axiom)) handle MAKE_CLAUSE => NONE)
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
   428
  else (Output.debug ("Omitting " ^ ax_name ^ ": Axiom is not FOL"); NONE)
20015
1ffcf4802802 Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents: 19719
diff changeset
   429
    
19443
e32a4703d834 Take conjectures and axioms as thms when convert them to ResClause.clause format.
mengj
parents: 19354
diff changeset
   430
fun make_axiom_clauses [] = []
e32a4703d834 Take conjectures and axioms as thms when convert them to ResClause.clause format.
mengj
parents: 19354
diff changeset
   431
  | make_axiom_clauses ((thm,(name,id))::thms) =
20022
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
   432
      case make_axiom_clause thm (name,id) of 
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
   433
          SOME cls => if isTaut cls then make_axiom_clauses thms 
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
   434
                      else (name,cls) :: make_axiom_clauses thms
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
   435
        | NONE => make_axiom_clauses thms;
19354
aebf9dddccd7 tptp_write_file accepts axioms as thm.
mengj
parents: 19277
diff changeset
   436
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   437
(**** Isabelle arities ****)
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   438
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   439
exception ARCLAUSE of string;
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   440
 
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   441
type class = string; 
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   442
type tcons = string; 
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   443
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   444
datatype arLit = TConsLit of bool * (class * tcons * string list)
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   445
               | TVarLit of bool * (class * string);
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   446
 
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   447
datatype arityClause =  
21373
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   448
	 ArityClause of {axiom_name: axiom_name,
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   449
			 kind: kind,
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   450
			 conclLit: arLit,
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   451
			 premLits: arLit list};
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   452
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   453
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   454
fun gen_TVars 0 = []
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   455
  | gen_TVars n = ("T_" ^ Int.toString n) :: gen_TVars (n-1);
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   456
18411
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   457
fun pack_sort(_,[])  = []
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   458
  | pack_sort(tvar, "HOL.type"::srt) = pack_sort(tvar, srt)   (*IGNORE sort "type"*)
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   459
  | pack_sort(tvar, cls::srt) =  (make_type_class cls, tvar) :: pack_sort(tvar, srt);
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   460
    
21560
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   461
fun make_TVarLit b (cls,str) = TVarLit(b, (cls,str));
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   462
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   463
fun make_TConsLit b (cls,tcons,tvars) = 
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   464
      TConsLit(b, (make_type_class cls, make_fixed_type_const tcons, tvars));
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   465
18411
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   466
(*Arity of type constructor tcon :: (arg1,...,argN)res*)
21373
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   467
fun make_axiom_arity_clause (tcons, axiom_name, (res,args)) =
21560
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   468
   let val tvars = gen_TVars (length args)
17845
1438291d57f0 deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents: 17775
diff changeset
   469
       val tvars_srts = ListPair.zip (tvars,args)
1438291d57f0 deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents: 17775
diff changeset
   470
   in
21373
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   471
      ArityClause {axiom_name = axiom_name, kind = Axiom, 
21560
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   472
                   conclLit = make_TConsLit true (res,tcons,tvars), 
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   473
                   premLits = map (make_TVarLit false) (union_all(map pack_sort tvars_srts))}
17845
1438291d57f0 deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents: 17775
diff changeset
   474
   end;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   475
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   476
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   477
(**** Isabelle class relations ****)
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   478
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   479
datatype classrelClause = 
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   480
	 ClassrelClause of {axiom_name: axiom_name,
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   481
			    subclass: class,
18411
2d3165a0fb40 No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents: 18409
diff changeset
   482
			    superclass: class};
21290
33b6bb5d6ab8 Improvement to classrel clauses: now outputs the minimum needed.
paulson
parents: 21254
diff changeset
   483
 
33b6bb5d6ab8 Improvement to classrel clauses: now outputs the minimum needed.
paulson
parents: 21254
diff changeset
   484
(*Generate all pairs (sub,super) such that sub is a proper subclass of super in theory thy.*)
21432
625797c592b2 Optimized class_pairs for the common case of no subclasses
paulson
parents: 21416
diff changeset
   485
fun class_pairs thy [] supers = []
625797c592b2 Optimized class_pairs for the common case of no subclasses
paulson
parents: 21416
diff changeset
   486
  | class_pairs thy subs supers =
625797c592b2 Optimized class_pairs for the common case of no subclasses
paulson
parents: 21416
diff changeset
   487
      let val class_less = Sorts.class_less(Sign.classes_of thy)
625797c592b2 Optimized class_pairs for the common case of no subclasses
paulson
parents: 21416
diff changeset
   488
	  fun add_super sub (super,pairs) = 
625797c592b2 Optimized class_pairs for the common case of no subclasses
paulson
parents: 21416
diff changeset
   489
		if class_less (sub,super) then (sub,super)::pairs else pairs
625797c592b2 Optimized class_pairs for the common case of no subclasses
paulson
parents: 21416
diff changeset
   490
	  fun add_supers (sub,pairs) = foldl (add_super sub) pairs supers
625797c592b2 Optimized class_pairs for the common case of no subclasses
paulson
parents: 21416
diff changeset
   491
      in  foldl add_supers [] subs  end;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   492
21290
33b6bb5d6ab8 Improvement to classrel clauses: now outputs the minimum needed.
paulson
parents: 21254
diff changeset
   493
fun make_classrelClause (sub,super) =
33b6bb5d6ab8 Improvement to classrel clauses: now outputs the minimum needed.
paulson
parents: 21254
diff changeset
   494
  ClassrelClause {axiom_name = clrelclause_prefix ^ ascii_of sub ^ "_" ^ ascii_of super,
33b6bb5d6ab8 Improvement to classrel clauses: now outputs the minimum needed.
paulson
parents: 21254
diff changeset
   495
                  subclass = make_type_class sub, 
33b6bb5d6ab8 Improvement to classrel clauses: now outputs the minimum needed.
paulson
parents: 21254
diff changeset
   496
                  superclass = make_type_class super};
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   497
21290
33b6bb5d6ab8 Improvement to classrel clauses: now outputs the minimum needed.
paulson
parents: 21254
diff changeset
   498
fun make_classrel_clauses thy subs supers =
33b6bb5d6ab8 Improvement to classrel clauses: now outputs the minimum needed.
paulson
parents: 21254
diff changeset
   499
  map make_classrelClause (class_pairs thy subs supers);
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   500
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   501
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   502
(** Isabelle arities **)
17845
1438291d57f0 deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents: 17775
diff changeset
   503
21373
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   504
fun arity_clause _ _ (tcons, []) = []
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   505
  | arity_clause seen n (tcons, ("HOL.type",_)::ars) =  (*ignore*)
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   506
      arity_clause seen n (tcons,ars)
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   507
  | arity_clause seen n (tcons, (ar as (class,_)) :: ars) =
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   508
      if class mem_string seen then (*multiple arities for the same tycon, class pair*)
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   509
	  make_axiom_arity_clause (tcons, lookup_type_const tcons ^ "_" ^ class ^ "_" ^ Int.toString n, ar) :: 
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   510
	  arity_clause seen (n+1) (tcons,ars)
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   511
      else
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   512
	  make_axiom_arity_clause (tcons, lookup_type_const tcons ^ "_" ^ class, ar) :: 
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   513
	  arity_clause (class::seen) n (tcons,ars)
17845
1438291d57f0 deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents: 17775
diff changeset
   514
1438291d57f0 deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents: 17775
diff changeset
   515
fun multi_arity_clause [] = []
19155
b294c097767e new order for arity clauses
paulson
parents: 18920
diff changeset
   516
  | multi_arity_clause ((tcons,ars) :: tc_arlists) =
21373
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   517
      arity_clause [] 1 (tcons, ars)  @  
19155
b294c097767e new order for arity clauses
paulson
parents: 18920
diff changeset
   518
      multi_arity_clause tc_arlists 
17845
1438291d57f0 deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents: 17775
diff changeset
   519
21373
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   520
(*Generate all pairs (tycon,class,sorts) such that tycon belongs to class in theory thy.*)
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   521
fun type_class_pairs thy tycons classes =
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   522
  let val alg = Sign.classes_of thy
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   523
      fun domain_sorts (tycon,class) = Sorts.mg_domain alg tycon [class]
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   524
      fun add_class tycon (class,pairs) = 
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   525
            (class, domain_sorts(tycon,class))::pairs 
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   526
            handle Sorts.CLASS_ERROR _ => pairs
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   527
      fun try_classes tycon = (tycon, foldl (add_class tycon) [] classes)
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   528
  in  map try_classes tycons  end;
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   529
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   530
fun arity_clause_thy thy tycons classes =
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   531
  multi_arity_clause (type_class_pairs thy tycons classes);
17845
1438291d57f0 deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents: 17775
diff changeset
   532
1438291d57f0 deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents: 17775
diff changeset
   533
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   534
(**** Find occurrences of predicates in clauses ****)
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   535
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   536
(*FIXME: multiple-arity checking doesn't work, as update_new is the wrong 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   537
  function (it flags repeated declarations of a function, even with the same arity)*)
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   538
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   539
fun update_many (tab, keypairs) = foldl (uncurry Symtab.update) tab keypairs;
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   540
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   541
fun add_predicate_preds (Predicate(pname,tys,tms), preds) = 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   542
  if pname = "equal" then preds (*equality is built-in and requires no declaration*)
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   543
  else Symtab.update (pname, length tys + length tms) preds
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   544
20018
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   545
fun add_literal_preds (Literal(_,pred), preds) = add_predicate_preds (pred,preds)
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   546
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   547
fun add_type_sort_preds ((FOLTVar indx,s), preds) = 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   548
      update_many (preds, map pred_of_sort (sorts_on_typs (FOLTVar indx, s)))
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   549
  | add_type_sort_preds ((FOLTFree x,s), preds) =
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   550
      update_many (preds, map pred_of_sort (sorts_on_typs (FOLTFree x, s)));
17845
1438291d57f0 deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents: 17775
diff changeset
   551
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   552
fun add_clause_preds (Clause {literals, types_sorts, ...}, preds) =
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   553
  foldl add_literal_preds (foldl add_type_sort_preds preds types_sorts) literals
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   554
  handle Symtab.DUP a => raise ERROR ("predicate " ^ a ^ " has multiple arities")
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   555
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   556
fun add_classrelClause_preds (ClassrelClause {subclass,superclass,...}, preds) =
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   557
  Symtab.update (subclass,1) (Symtab.update (superclass,1) preds);
17845
1438291d57f0 deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents: 17775
diff changeset
   558
21373
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   559
fun class_of_arityLit (TConsLit(_, (tclass, _, _))) = tclass
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   560
  | class_of_arityLit (TVarLit(_, (tclass, _))) = tclass;
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   561
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   562
fun add_arityClause_preds (ArityClause {conclLit,premLits,...}, preds) =
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   563
  let val classes = map class_of_arityLit (conclLit::premLits)
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   564
      fun upd (class,preds) = Symtab.update (class,1) preds
18f519614978 Arity clauses are now produced only for types and type classes actually used.
paulson
parents: 21290
diff changeset
   565
  in  foldl upd preds classes  end;
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   566
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   567
fun preds_of_clauses clauses clsrel_clauses arity_clauses = 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   568
  Symtab.dest
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   569
    (foldl add_classrelClause_preds 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   570
      (foldl add_arityClause_preds
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   571
        (foldl add_clause_preds Symtab.empty clauses)
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   572
        arity_clauses)
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   573
      clsrel_clauses)
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   574
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   575
(*** Find occurrences of functions in clauses ***)
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   576
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   577
fun add_foltype_funcs (AtomV _, funcs) = funcs
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   578
  | add_foltype_funcs (AtomF a, funcs) = Symtab.update (a,0) funcs
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   579
  | add_foltype_funcs (Comp(a,tys), funcs) = 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   580
      foldl add_foltype_funcs (Symtab.update (a, length tys) funcs) tys;
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   581
21813
06a06f6d3166 Deleted the unused type argument of UVar
paulson
parents: 21790
diff changeset
   582
fun add_folterm_funcs (UVar _, funcs) = funcs
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   583
  | add_folterm_funcs (Fun(a,tys,tms), funcs) = 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   584
      foldl add_foltype_funcs 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   585
	    (foldl add_folterm_funcs (Symtab.update (a, length tys + length tms) funcs) 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   586
	           tms) 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   587
	    tys
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   588
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   589
fun add_predicate_funcs (Predicate(_,tys,tms), funcs) = 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   590
    foldl add_foltype_funcs (foldl add_folterm_funcs funcs tms) tys;
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   591
20018
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   592
fun add_literal_funcs (Literal(_,pred), funcs) = add_predicate_funcs (pred,funcs)
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   593
20038
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   594
(*TFrees are recorded as constants*)
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   595
fun add_type_sort_funcs ((FOLTVar _, _), funcs) = funcs
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   596
  | add_type_sort_funcs ((FOLTFree a, _), funcs) = 
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   597
      Symtab.update (make_fixed_type_var a, 0) funcs
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   598
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   599
fun add_arityClause_funcs (ArityClause {conclLit,...}, funcs) =
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   600
  let val TConsLit(_, (_, tcons, tvars)) = conclLit
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   601
  in  Symtab.update (tcons, length tvars) funcs  end;
17845
1438291d57f0 deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents: 17775
diff changeset
   602
20038
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   603
fun add_clause_funcs (Clause {literals, types_sorts, ...}, funcs) =
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   604
  foldl add_literal_funcs (foldl add_type_sort_funcs funcs types_sorts)
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   605
       literals
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   606
  handle Symtab.DUP a => raise ERROR ("function " ^ a ^ " has multiple arities")
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   607
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   608
fun funcs_of_clauses clauses arity_clauses = 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   609
  Symtab.dest (foldl add_arityClause_funcs 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   610
                     (foldl add_clause_funcs Symtab.empty clauses)
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   611
                     arity_clauses)
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   612
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   613
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   614
(**** String-oriented operations ****)
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   615
21813
06a06f6d3166 Deleted the unused type argument of UVar
paulson
parents: 21790
diff changeset
   616
fun string_of_term (UVar x) = x
18218
9a7ffce389c3 new treatment of polymorphic types, using Sign.const_typargs
paulson
parents: 18199
diff changeset
   617
  | string_of_term (Fun (name,typs,terms)) = 
21790
9d2761d09d91 Removal of the "keep_types" flag: we always keep types!
paulson
parents: 21564
diff changeset
   618
      name ^ (paren_pack (map string_of_term terms @ map string_of_fol_type typs));
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   619
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   620
fun string_of_pair [t1,t2] = (string_of_term t1, string_of_term t2)
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   621
  | string_of_pair _ = raise ERROR ("equality predicate requires two arguments");
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   622
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   623
fun string_of_equality ts =
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   624
  let val (s1,s2) = string_of_pair ts
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   625
  in "equal(" ^ s1 ^ "," ^ s2 ^ ")" end;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   626
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   627
(* before output the string of the predicate, check if the predicate corresponds to an equality or not. *)
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   628
fun string_of_predicate (Predicate("equal",_,ts)) = string_of_equality ts
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   629
  | string_of_predicate (Predicate(name,typs,ts)) = 
21790
9d2761d09d91 Removal of the "keep_types" flag: we always keep types!
paulson
parents: 21564
diff changeset
   630
      name ^ (paren_pack (map string_of_term ts @ map string_of_fol_type typs));
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17312
diff changeset
   631
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17312
diff changeset
   632
fun string_of_clausename (cls_id,ax_name) = 
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17422
diff changeset
   633
    clause_prefix ^ ascii_of ax_name ^ "_" ^ Int.toString cls_id;
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17312
diff changeset
   634
21564
519ee3129ee1 Added in another function clause_name_of.
mengj
parents: 21560
diff changeset
   635
fun clause_name_of (cls_id,ax_name) = 
519ee3129ee1 Added in another function clause_name_of.
mengj
parents: 21560
diff changeset
   636
    ascii_of ax_name ^ "_" ^ Int.toString cls_id;
519ee3129ee1 Added in another function clause_name_of.
mengj
parents: 21560
diff changeset
   637
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17312
diff changeset
   638
fun string_of_type_clsname (cls_id,ax_name,idx) = 
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17422
diff changeset
   639
    string_of_clausename (cls_id,ax_name) ^ "_tcs" ^ (Int.toString idx);
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   640
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   641
(*Write a list of strings to a file*)
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   642
fun writeln_strs os = List.app (fn s => TextIO.output (os,s));
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   643
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   644
    
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   645
(**** Producing DFG files ****)
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   646
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   647
(*Attach sign in DFG syntax: false means negate.*)
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   648
fun dfg_sign true s = s
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   649
  | dfg_sign false s = "not(" ^ s ^ ")"  
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   650
20018
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   651
fun dfg_literal (Literal(pol,pred)) = dfg_sign pol (string_of_predicate pred)
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   652
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   653
fun dfg_of_typeLit (LTVar (s,ty)) = "not(" ^ s ^ "(" ^ ty ^ "))"
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   654
  | dfg_of_typeLit (LTFree (s,ty)) = s ^ "(" ^ ty ^ ")";
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   655
 
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   656
(*Enclose the clause body by quantifiers, if necessary*)
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   657
fun dfg_forall [] body = body  
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   658
  | dfg_forall vars body = "forall([" ^ commas vars ^ "],\n" ^ body ^ ")"
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   659
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   660
fun gen_dfg_cls (cls_id, ax_name, knd, lits, vars) = 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   661
    "clause( %(" ^ knd ^ ")\n" ^ 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   662
    dfg_forall vars ("or(" ^ lits ^ ")") ^ ",\n" ^ 
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   663
    string_of_clausename (cls_id,ax_name) ^  ").\n\n";
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   664
18869
00741f7280f7 removal of ResClause.num_of_clauses and other simplifications
paulson
parents: 18868
diff changeset
   665
fun dfg_clause_aux (Clause{literals, types_sorts, ...}) = 
21790
9d2761d09d91 Removal of the "keep_types" flag: we always keep types!
paulson
parents: 21564
diff changeset
   666
  let val (tvar_lits,tfree_lits) = add_typs_aux types_sorts
9d2761d09d91 Removal of the "keep_types" flag: we always keep types!
paulson
parents: 21564
diff changeset
   667
  in  (map dfg_of_typeLit tvar_lits @ map dfg_literal literals, 
9d2761d09d91 Removal of the "keep_types" flag: we always keep types!
paulson
parents: 21564
diff changeset
   668
       map dfg_of_typeLit tfree_lits)
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
   669
  end; 
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   670
20018
5419a71d0baa removed the "tagging" feature
paulson
parents: 20015
diff changeset
   671
fun dfg_folterms (Literal(pol,pred)) = 
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   672
  let val Predicate (_, _, folterms) = pred
18218
9a7ffce389c3 new treatment of polymorphic types, using Sign.const_typargs
paulson
parents: 18199
diff changeset
   673
  in  folterms  end
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   674
21813
06a06f6d3166 Deleted the unused type argument of UVar
paulson
parents: 21790
diff changeset
   675
fun get_uvars (UVar a) = [a] 
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   676
  | get_uvars (Fun (_,typ,tlist)) = union_all(map get_uvars tlist)
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17375
diff changeset
   677
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   678
fun dfg_vars (Clause {literals,...}) =
18920
7635e0060cd4 removal of case analysis clauses
paulson
parents: 18869
diff changeset
   679
  union_all (map get_uvars (List.concat (map dfg_folterms literals)))
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   680
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   681
fun clause2dfg (cls as Clause{axiom_name,clause_id,kind,types_sorts,...}) =
17230
77e93bf303a5 fixed arities and restored changes that had gone missing
paulson
parents: 17150
diff changeset
   682
    let val (lits,tfree_lits) = dfg_clause_aux cls 
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   683
            (*"lits" includes the typing assumptions (TVars)*)
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   684
        val vars = dfg_vars cls
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   685
        val tvars = get_tvar_strs types_sorts
20038
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   686
	val cls_str = gen_dfg_cls(clause_id, axiom_name, name_of_kind kind, 
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   687
	                           commas lits, tvars@vars) 
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   688
    in (cls_str, tfree_lits) end;
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   689
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   690
fun string_of_arity (name, num) =  "(" ^ name ^ "," ^ Int.toString num ^ ")"
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   691
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   692
fun string_of_preds [] = ""
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   693
  | string_of_preds preds = "predicates[" ^ commas(map string_of_arity preds) ^ "].\n";
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   694
18856
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   695
fun string_of_funcs [] = ""
4669dec681f4 tidy-up of res_clause.ML, removing the "predicates" field
paulson
parents: 18798
diff changeset
   696
  | string_of_funcs funcs = "functions[" ^ commas(map string_of_arity funcs) ^ "].\n" ;
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   697
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17230
diff changeset
   698
fun string_of_symbols predstr funcstr = 
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17230
diff changeset
   699
  "list_of_symbols.\n" ^ predstr  ^ funcstr  ^ "end_of_list.\n\n";
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   700
18798
ca02a2077955 tidying up SPASS output
paulson
parents: 18676
diff changeset
   701
fun string_of_start name = "begin_problem(" ^ name ^ ").\n\n";
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   702
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   703
fun string_of_descrip name = 
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   704
  "list_of_descriptions.\nname({*" ^ name ^ 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   705
  "*}).\nauthor({*Isabelle*}).\nstatus(unknown).\ndescription({*auto-generated*}).\nend_of_list.\n\n"
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   706
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   707
fun dfg_tfree_clause tfree_lit =
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   708
  "clause( %(negated_conjecture)\n" ^ "or( " ^ tfree_lit ^ "),\n" ^ "tfree_tcs" ^ ").\n\n"
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   709
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   710
fun dfg_of_arLit (TConsLit(pol,(c,t,args))) =
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   711
      dfg_sign pol (c ^ "(" ^ t ^ paren_pack args ^ ")")
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   712
  | dfg_of_arLit (TVarLit(pol,(c,str))) =
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   713
      dfg_sign pol (c ^ "(" ^ str ^ ")")
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17422
diff changeset
   714
    
20038
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   715
fun dfg_classrelLits sub sup =  "not(" ^ sub ^ "(T)), " ^ sup ^ "(T)";
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17422
diff changeset
   716
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   717
fun dfg_classrelClause (ClassrelClause {axiom_name,subclass,superclass,...}) =
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   718
  "clause(forall([T],\nor( " ^ dfg_classrelLits subclass superclass ^ ")),\n" ^
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   719
  axiom_name ^ ").\n\n";
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   720
      
21560
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   721
fun string_of_ar axiom_name = arclause_prefix ^ ascii_of axiom_name;
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   722
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   723
fun dfg_arity_clause (ArityClause{axiom_name,kind,conclLit,premLits,...}) = 
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   724
  let val TConsLit(_, (_,_,tvars)) = conclLit
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   725
      val lits = map dfg_of_arLit (conclLit :: premLits)
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   726
  in
21560
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   727
      "clause( %(" ^ name_of_kind kind ^ ")\n" ^ 
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   728
      dfg_forall tvars ("or( " ^ commas lits ^ ")") ^ ",\n" ^
21560
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   729
      string_of_ar axiom_name ^ ").\n\n"
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   730
  end;
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   731
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   732
(* write out a subgoal in DFG format to the file "xxxx_N"*)
20038
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   733
fun dfg_write_file thms filename (ax_tuples,classrel_clauses,arity_clauses) = 
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   734
  let 
19207
33f1b4515ce4 Tidying and tracing. Handling exn CLAUSE so that errors don't reach top-level.
paulson
parents: 19197
diff changeset
   735
    val _ = Output.debug ("Preparing to write the DFG file " ^ filename)
19719
837025cc6317 Changed input interface of dfg_write_file.
mengj
parents: 19642
diff changeset
   736
    val conjectures = make_conjecture_clauses thms
20038
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   737
    val (clnames,axclauses) = ListPair.unzip (make_axiom_clauses ax_tuples)
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   738
    val (dfg_clss, tfree_litss) = ListPair.unzip (map clause2dfg conjectures)
20038
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   739
    val clss = conjectures @ axclauses
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   740
    val funcs = funcs_of_clauses clss arity_clauses
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   741
    and preds = preds_of_clauses clss classrel_clauses arity_clauses
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 21813
diff changeset
   742
    and probname = Path.implode (Path.base (Path.explode filename))
20038
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   743
    val (axstrs, _) = ListPair.unzip (map clause2dfg axclauses)
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   744
    val tfree_clss = map dfg_tfree_clause (union_all tfree_litss) 
19155
b294c097767e new order for arity clauses
paulson
parents: 18920
diff changeset
   745
    val out = TextIO.openOut filename
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   746
  in
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   747
    TextIO.output (out, string_of_start probname); 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   748
    TextIO.output (out, string_of_descrip probname); 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   749
    TextIO.output (out, string_of_symbols (string_of_funcs funcs) (string_of_preds preds)); 
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   750
    TextIO.output (out, "list_of_clauses(axioms,cnf).\n");
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   751
    writeln_strs out axstrs;
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   752
    List.app (curry TextIO.output out o dfg_classrelClause) classrel_clauses;
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   753
    List.app (curry TextIO.output out o dfg_arity_clause) arity_clauses;
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   754
    TextIO.output (out, "end_of_list.\n\nlist_of_clauses(conjectures,cnf).\n");
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   755
    writeln_strs out tfree_clss;
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   756
    writeln_strs out dfg_clss;
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   757
    TextIO.output (out, "end_of_list.\n\nend_problem.\n");
20022
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
   758
    TextIO.closeOut out;
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
   759
    clnames
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17422
diff changeset
   760
  end;
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   761
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   762
18869
00741f7280f7 removal of ResClause.num_of_clauses and other simplifications
paulson
parents: 18868
diff changeset
   763
(**** Produce TPTP files ****)
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   764
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   765
(*Attach sign in TPTP syntax: false means negate.*)
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   766
fun tptp_sign true s = s
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   767
  | tptp_sign false s = "~ " ^ s
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   768
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   769
fun tptp_of_equality pol ts =
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   770
  let val (s1,s2) = string_of_pair ts
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   771
      val eqop = if pol then " = " else " != "
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   772
  in  s1 ^ eqop ^ s2  end;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   773
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   774
fun tptp_literal (Literal(pol,Predicate("equal",_,ts))) = tptp_of_equality pol ts
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   775
  | tptp_literal (Literal(pol,pred)) = tptp_sign pol (string_of_predicate pred);
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   776
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   777
fun tptp_of_typeLit (LTVar (s,ty))  = tptp_sign false (s ^ "(" ^ ty ^ ")")
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   778
  | tptp_of_typeLit (LTFree (s,ty)) = tptp_sign true  (s ^ "(" ^ ty ^ ")");
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   779
 
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   780
fun gen_tptp_cls (cls_id,ax_name,knd,lits) = 
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   781
    "cnf(" ^ string_of_clausename (cls_id,ax_name) ^ "," ^ 
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   782
    name_of_kind knd ^ "," ^ tptp_pack lits ^ ").\n";
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   783
18869
00741f7280f7 removal of ResClause.num_of_clauses and other simplifications
paulson
parents: 18868
diff changeset
   784
fun tptp_type_lits (Clause {literals, types_sorts, ...}) = 
21790
9d2761d09d91 Removal of the "keep_types" flag: we always keep types!
paulson
parents: 21564
diff changeset
   785
  let val (tvar_lits,tfree_lits) = add_typs_aux types_sorts
9d2761d09d91 Removal of the "keep_types" flag: we always keep types!
paulson
parents: 21564
diff changeset
   786
  in
9d2761d09d91 Removal of the "keep_types" flag: we always keep types!
paulson
parents: 21564
diff changeset
   787
      (map tptp_of_typeLit tvar_lits @ map tptp_literal literals,
9d2761d09d91 Removal of the "keep_types" flag: we always keep types!
paulson
parents: 21564
diff changeset
   788
       map tptp_of_typeLit tfree_lits)
9d2761d09d91 Removal of the "keep_types" flag: we always keep types!
paulson
parents: 21564
diff changeset
   789
  end; 
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   790
18869
00741f7280f7 removal of ResClause.num_of_clauses and other simplifications
paulson
parents: 18868
diff changeset
   791
fun clause2tptp (cls as Clause {clause_id, axiom_name, kind, ...}) =
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17412
diff changeset
   792
    let val (lits,tfree_lits) = tptp_type_lits cls 
17305
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17261
diff changeset
   793
            (*"lits" includes the typing assumptions (TVars)*)
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   794
	val cls_str = gen_tptp_cls(clause_id, axiom_name, kind, lits) 
15608
f161fa6f8fd5 bug fixes involving typechecking clauses
paulson
parents: 15531
diff changeset
   795
    in
f161fa6f8fd5 bug fixes involving typechecking clauses
paulson
parents: 15531
diff changeset
   796
	(cls_str,tfree_lits) 
f161fa6f8fd5 bug fixes involving typechecking clauses
paulson
parents: 15531
diff changeset
   797
    end;
f161fa6f8fd5 bug fixes involving typechecking clauses
paulson
parents: 15531
diff changeset
   798
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   799
fun tptp_tfree_clause tfree_lit =
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   800
    "cnf(" ^ "tfree_tcs," ^ "negated_conjecture" ^ "," ^ tptp_pack[tfree_lit] ^ ").\n";
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   801
    
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17422
diff changeset
   802
fun tptp_of_arLit (TConsLit(b,(c,t,args))) =
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   803
      tptp_sign b (c ^ "(" ^ t ^ paren_pack args ^ ")")
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17422
diff changeset
   804
  | tptp_of_arLit (TVarLit(b,(c,str))) =
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   805
      tptp_sign b (c ^ "(" ^ str ^ ")")
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   806
    
21560
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   807
fun tptp_arity_clause (ArityClause{axiom_name,kind,conclLit,premLits,...}) = 
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   808
  "cnf(" ^ string_of_ar axiom_name ^ "," ^ name_of_kind kind ^ "," ^ 
d92389321fa7 tidied code
paulson
parents: 21509
diff changeset
   809
  tptp_pack (map tptp_of_arLit (conclLit :: premLits)) ^ ").\n";
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   810
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   811
fun tptp_classrelLits sub sup = 
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   812
  let val tvar = "(T)"
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   813
  in  tptp_pack [tptp_sign false (sub^tvar), tptp_sign true (sup^tvar)]  end;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   814
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   815
fun tptp_classrelClause (ClassrelClause {axiom_name,subclass,superclass,...}) =
21509
6c5755ad9cae ATP linkup now generates "new TPTP" rather than "old TPTP"
paulson
parents: 21470
diff changeset
   816
  "cnf(" ^ axiom_name ^ ",axiom," ^ tptp_classrelLits subclass superclass ^ ").\n" 
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 16976
diff changeset
   817
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   818
(* write out a subgoal as tptp clauses to the file "xxxx_N"*)
20038
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   819
fun tptp_write_file thms filename (ax_tuples,classrel_clauses,arity_clauses) =
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   820
  let
19207
33f1b4515ce4 Tidying and tracing. Handling exn CLAUSE so that errors don't reach top-level.
paulson
parents: 19197
diff changeset
   821
    val _ = Output.debug ("Preparing to write the TPTP file " ^ filename)
19443
e32a4703d834 Take conjectures and axioms as thms when convert them to ResClause.clause format.
mengj
parents: 19354
diff changeset
   822
    val clss = make_conjecture_clauses thms
20038
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   823
    val (clnames,axclauses) = ListPair.unzip (make_axiom_clauses ax_tuples)
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   824
    val (tptp_clss,tfree_litss) = ListPair.unzip (map clause2tptp clss)
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   825
    val tfree_clss = map tptp_tfree_clause (foldl (op union_string) [] tfree_litss)
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   826
    val out = TextIO.openOut filename
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   827
  in
20038
73231d03a2ac Some tidying.
paulson
parents: 20022
diff changeset
   828
    List.app (curry TextIO.output out o #1 o clause2tptp) axclauses;
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   829
    writeln_strs out tfree_clss;
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   830
    writeln_strs out tptp_clss;
18868
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   831
    List.app (curry TextIO.output out o tptp_classrelClause) classrel_clauses;
7cfc21ee0370 working SPASS support; much tidying
paulson
parents: 18863
diff changeset
   832
    List.app (curry TextIO.output out o tptp_arity_clause) arity_clauses;
20022
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
   833
    TextIO.closeOut out;
b07a138b4e7d some tidying; fixed the output of theorem names
paulson
parents: 20018
diff changeset
   834
    clnames
18863
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   835
  end;
a113b6839df1 reorganization of code to support DFG otuput
paulson
parents: 18856
diff changeset
   836
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   837
end;