src/HOL/Reconstruction.thy
author quigley
Mon, 04 Apr 2005 18:43:18 +0200
changeset 15653 3549ff7158f3
parent 15645 5e20c54683d3
child 15678 28cc2314c7ff
permissions -rw-r--r--
Updated to add watcher code.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     1
(*  Title:      HOL/Reconstruction.thy
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     2
    ID: $Id$
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     4
    Copyright   2004  University of Cambridge
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     5
*)
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     6
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     7
header{*Attributes for Reconstructing External Resolution Proofs*}
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     8
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     9
theory Reconstruction
15382
e56ce5cefe9c all theories must be related to Reconstruction
paulson
parents: 15359
diff changeset
    10
    imports Hilbert_Choice Map Infinite_Set
15359
8bad1f42fec0 new CLAUSIFY attribute for proof reconstruction with lemmas
paulson
parents: 15151
diff changeset
    11
    files "Tools/res_lib.ML"
8bad1f42fec0 new CLAUSIFY attribute for proof reconstruction with lemmas
paulson
parents: 15151
diff changeset
    12
	  "Tools/res_clause.ML"
8bad1f42fec0 new CLAUSIFY attribute for proof reconstruction with lemmas
paulson
parents: 15151
diff changeset
    13
	  "Tools/res_skolem_function.ML"
8bad1f42fec0 new CLAUSIFY attribute for proof reconstruction with lemmas
paulson
parents: 15151
diff changeset
    14
	  "Tools/res_axioms.ML"
8bad1f42fec0 new CLAUSIFY attribute for proof reconstruction with lemmas
paulson
parents: 15151
diff changeset
    15
	  "Tools/res_types_sorts.ML"
15653
3549ff7158f3 Updated to add watcher code.
quigley
parents: 15645
diff changeset
    16
15359
8bad1f42fec0 new CLAUSIFY attribute for proof reconstruction with lemmas
paulson
parents: 15151
diff changeset
    17
          "Tools/reconstruction.ML"
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    18
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    19
begin
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    20
15382
e56ce5cefe9c all theories must be related to Reconstruction
paulson
parents: 15359
diff changeset
    21
text{*Every theory of HOL must be a descendant or ancestor of this one!*}
e56ce5cefe9c all theories must be related to Reconstruction
paulson
parents: 15359
diff changeset
    22
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    23
setup Reconstruction.setup
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    24
15653
3549ff7158f3 Updated to add watcher code.
quigley
parents: 15645
diff changeset
    25
end