src/Provers/classical.ML
author wenzelm
Tue, 04 May 1999 18:55:43 +0200
changeset 6585 d5eae11efa42
parent 6556 daa00919502b
child 6955 9e2d97ef55d2
permissions -rw-r--r--
removed HOL.tex;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
     1
(*  Title: 	Provers/classical.ML
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     3
    Author: 	Lawrence C Paulson, Cambridge University Computer Laboratory
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     4
    Copyright   1992  University of Cambridge
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
Theorem prover for classical reasoning, including predicate calculus, set
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
theory, etc.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
     9
Rules must be classified as intr, elim, safe, hazardous (unsafe).
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    10
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    11
A rule is unsafe unless it can be applied blindly without harmful results.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    12
For a rule to be safe, its premises and conclusion should be logically
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    13
equivalent.  There should be no variables in the premises that are not in
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    14
the conclusion.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    15
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    16
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    17
(*higher precedence than := facilitates use of references*)
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    18
infix 4 addSIs addSEs addSDs addIs addEs addDs delrules
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
    19
  addSWrapper delSWrapper addWrapper delWrapper
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
    20
  addSbefore addSaltern addbefore addaltern
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
    21
  addD2 addE2 addSD2 addSE2;
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    22
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    23
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    24
(*should be a type abbreviation in signature CLASSICAL*)
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    25
type netpair = (int * (bool * thm)) Net.net * (int * (bool * thm)) Net.net;
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
    26
type wrapper = (int -> tactic) -> (int -> tactic);
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    27
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    28
signature CLASET_THY_DATA =
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    29
sig
5001
9de7fda0a6df accomodate tuned version of theory data;
wenzelm
parents: 4854
diff changeset
    30
  val clasetN: string
9de7fda0a6df accomodate tuned version of theory data;
wenzelm
parents: 4854
diff changeset
    31
  val clasetK: Object.kind
9de7fda0a6df accomodate tuned version of theory data;
wenzelm
parents: 4854
diff changeset
    32
  exception ClasetData of Object.T ref
4854
d1850e0964f2 tuned setup;
wenzelm
parents: 4792
diff changeset
    33
  val setup: (theory -> theory) list
6556
daa00919502b theory data: copy;
wenzelm
parents: 6502
diff changeset
    34
  val fix_methods: Object.T * (Object.T -> Object.T) * (Object.T -> Object.T) *
5001
9de7fda0a6df accomodate tuned version of theory data;
wenzelm
parents: 4854
diff changeset
    35
    (Object.T * Object.T -> Object.T) * (Sign.sg -> Object.T -> unit) -> unit
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    36
end;
2868
17a23a62f82a New DEEPEN allows giving an upper bound for deepen_tac
paulson
parents: 2813
diff changeset
    37
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    38
signature CLASSICAL_DATA =
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    39
sig
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
    40
  val mp	: thm    	(* [| P-->Q;  P |] ==> Q *)
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
    41
  val not_elim	: thm		(* [| ~P;  P |] ==> R *)
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
    42
  val classical	: thm		(* (~P ==> P) ==> P *)
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
    43
  val sizef 	: thm -> int	(* size function for BEST_FIRST *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    44
  val hyp_subst_tacs: (int -> tactic) list
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    45
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    46
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
    47
signature BASIC_CLASSICAL =
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    48
sig
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    49
  type claset
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    50
  val empty_cs: claset
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    51
  val print_cs: claset -> unit
4380
0a32020760fa added print_claset;
wenzelm
parents: 4271
diff changeset
    52
  val print_claset: theory -> unit
4653
d60f76680bf4 renamed rep_claset to rep_cs
oheimb
parents: 4651
diff changeset
    53
  val rep_cs: (* BLAST_DATA in blast.ML dependent on this *)
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    54
    claset -> {safeIs: thm list, safeEs: thm list,
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    55
		 hazIs: thm list, hazEs: thm list,
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
    56
		 swrappers: (string * wrapper) list, 
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
    57
		 uwrappers: (string * wrapper) list,
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    58
		 safe0_netpair: netpair, safep_netpair: netpair,
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    59
		 haz_netpair: netpair, dup_netpair: netpair}
1711
c06d01f75764 Provides merge_cs to support default clasets
paulson
parents: 1587
diff changeset
    60
  val merge_cs		: claset * claset -> claset
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
    61
  val addDs 		: claset * thm list -> claset
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
    62
  val addEs 		: claset * thm list -> claset
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
    63
  val addIs 		: claset * thm list -> claset
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
    64
  val addSDs		: claset * thm list -> claset
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
    65
  val addSEs		: claset * thm list -> claset
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
    66
  val addSIs		: claset * thm list -> claset
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
    67
  val delrules		: claset * thm list -> claset
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
    68
  val addSWrapper 	: claset * (string * wrapper) -> claset
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
    69
  val delSWrapper 	: claset *  string            -> claset
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
    70
  val addWrapper 	: claset * (string * wrapper) -> claset
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
    71
  val delWrapper 	: claset *  string            -> claset
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
    72
  val addSbefore 	: claset * (string * (int -> tactic)) -> claset
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
    73
  val addSaltern 	: claset * (string * (int -> tactic)) -> claset
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
    74
  val addbefore 	: claset * (string * (int -> tactic)) -> claset
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
    75
  val addaltern	 	: claset * (string * (int -> tactic)) -> claset
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
    76
  val addD2             : claset * (string * thm) -> claset
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
    77
  val addE2             : claset * (string * thm) -> claset
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
    78
  val addSD2            : claset * (string * thm) -> claset
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
    79
  val addSE2            : claset * (string * thm) -> claset
4765
d2c41c8b545f merge_cs now also merges safe and unsafe wrappers
oheimb
parents: 4742
diff changeset
    80
  val appSWrappers	: claset -> wrapper
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
    81
  val appWrappers	: claset -> wrapper
5927
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
    82
  val trace_rules	: bool ref
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
    83
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    84
  val claset_ref_of_sg: Sign.sg -> claset ref
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    85
  val claset_ref_of: theory -> claset ref
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    86
  val claset_of_sg: Sign.sg -> claset
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    87
  val claset_of: theory -> claset
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    88
  val CLASET: (claset -> tactic) -> tactic
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    89
  val CLASET': (claset -> 'a -> tactic) -> 'a -> tactic
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    90
  val claset: unit -> claset
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    91
  val claset_ref: unit -> claset ref
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    92
1587
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
    93
  val fast_tac 		: claset -> int -> tactic
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
    94
  val slow_tac 		: claset -> int -> tactic
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
    95
  val weight_ASTAR	: int ref
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
    96
  val astar_tac		: claset -> int -> tactic
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
    97
  val slow_astar_tac 	: claset -> int -> tactic
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
    98
  val best_tac 		: claset -> int -> tactic
1587
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
    99
  val slow_best_tac 	: claset -> int -> tactic
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   100
  val depth_tac		: claset -> int -> int -> tactic
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   101
  val deepen_tac	: claset -> int -> int -> tactic
1587
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   102
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   103
  val contr_tac 	: int -> tactic
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   104
  val dup_elim		: thm -> thm
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   105
  val dup_intr		: thm -> thm
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   106
  val dup_step_tac	: claset -> int -> tactic
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   107
  val eq_mp_tac		: int -> tactic
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   108
  val haz_step_tac 	: claset -> int -> tactic
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   109
  val joinrules 	: thm list * thm list -> (bool * thm) list
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   110
  val mp_tac		: int -> tactic
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   111
  val safe_tac 		: claset -> tactic
5757
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   112
  val safe_steps_tac 	: claset -> int -> tactic
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   113
  val safe_step_tac 	: claset -> int -> tactic
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   114
  val clarify_tac 	: claset -> int -> tactic
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   115
  val clarify_step_tac 	: claset -> int -> tactic
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   116
  val step_tac 		: claset -> int -> tactic
2630
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   117
  val slow_step_tac	: claset -> int -> tactic
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   118
  val swap		: thm                 (* ~P ==> (~Q ==> P) ==> Q *)
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   119
  val swapify 		: thm list -> thm list
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   120
  val swap_res_tac 	: thm list -> int -> tactic
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   121
  val inst_step_tac 	: claset -> int -> tactic
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   122
  val inst0_step_tac 	: claset -> int -> tactic
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   123
  val instp_step_tac 	: claset -> int -> tactic
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   124
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   125
  val AddDs 		: thm list -> unit
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   126
  val AddEs 		: thm list -> unit
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   127
  val AddIs 		: thm list -> unit
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   128
  val AddSDs		: thm list -> unit
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   129
  val AddSEs		: thm list -> unit
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   130
  val AddSIs		: thm list -> unit
1807
3ff66483a8d4 Now exports Delrules
paulson
parents: 1800
diff changeset
   131
  val Delrules		: thm list -> unit
3727
ed63c05d7992 Added Safe_tac; all other default claset tactics now dereference "claset"
paulson
parents: 3705
diff changeset
   132
  val Safe_tac         	: tactic
1814
89f8d4a88cca Addition of Safe_step_tac
paulson
parents: 1807
diff changeset
   133
  val Safe_step_tac	: int -> tactic
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   134
  val Clarify_tac 	: int -> tactic
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   135
  val Clarify_step_tac 	: int -> tactic
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   136
  val Step_tac 		: int -> tactic
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   137
  val Fast_tac 		: int -> tactic
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   138
  val Best_tac 		: int -> tactic
2066
b9063086ef56 Introduction of Slow_tac and Slow_best_tac
paulson
parents: 1938
diff changeset
   139
  val Slow_tac 		: int -> tactic
b9063086ef56 Introduction of Slow_tac and Slow_best_tac
paulson
parents: 1938
diff changeset
   140
  val Slow_best_tac     : int -> tactic
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   141
  val Deepen_tac	: int -> int -> tactic
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   142
end;
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   143
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   144
signature CLASSICAL =
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   145
sig
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   146
  include BASIC_CLASSICAL
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   147
  val print_local_claset: Proof.context -> unit
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   148
  val get_local_claset: Proof.context -> claset
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   149
  val put_local_claset: claset -> Proof.context -> Proof.context
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   150
  val haz_dest_global: theory attribute
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   151
  val haz_elim_global: theory attribute
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   152
  val haz_intro_global: theory attribute
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   153
  val safe_dest_global: theory attribute
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   154
  val safe_elim_global: theory attribute
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   155
  val safe_intro_global: theory attribute
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   156
  val delrule_global: theory attribute
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   157
  val haz_dest_local: Proof.context attribute
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   158
  val haz_elim_local: Proof.context attribute
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   159
  val haz_intro_local: Proof.context attribute
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   160
  val safe_dest_local: Proof.context attribute
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   161
  val safe_elim_local: Proof.context attribute
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   162
  val safe_intro_local: Proof.context attribute
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   163
  val delrule_local: Proof.context attribute
5927
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
   164
  val cla_modifiers: (Args.T list -> (Proof.context attribute * Args.T list)) list
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
   165
  val cla_method: (claset -> tactic) -> Args.src -> Proof.context -> Proof.method
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
   166
  val cla_method': (claset -> int -> tactic) -> Args.src -> Proof.context -> Proof.method
6096
3451f9e88528 eliminated tthm type and Attribute structure;
wenzelm
parents: 5927
diff changeset
   167
  val single_tac: claset -> thm list -> int -> tactic
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   168
  val setup: (theory -> theory) list
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   169
end;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   170
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   171
structure ClasetThyData: CLASET_THY_DATA =
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   172
struct
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   173
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   174
(* data kind claset -- forward declaration *)
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   175
5001
9de7fda0a6df accomodate tuned version of theory data;
wenzelm
parents: 4854
diff changeset
   176
val clasetN = "Provers/claset";
9de7fda0a6df accomodate tuned version of theory data;
wenzelm
parents: 4854
diff changeset
   177
val clasetK = Object.kind clasetN;
9de7fda0a6df accomodate tuned version of theory data;
wenzelm
parents: 4854
diff changeset
   178
exception ClasetData of Object.T ref;
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   179
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   180
local
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   181
  fun undef _ = raise Match;
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   182
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   183
  val empty_ref = ref ERROR;
6556
daa00919502b theory data: copy;
wenzelm
parents: 6502
diff changeset
   184
  val copy_fn = ref (undef: Object.T -> Object.T);
5001
9de7fda0a6df accomodate tuned version of theory data;
wenzelm
parents: 4854
diff changeset
   185
  val prep_ext_fn = ref (undef: Object.T -> Object.T);
9de7fda0a6df accomodate tuned version of theory data;
wenzelm
parents: 4854
diff changeset
   186
  val merge_fn = ref (undef: Object.T * Object.T -> Object.T);
9de7fda0a6df accomodate tuned version of theory data;
wenzelm
parents: 4854
diff changeset
   187
  val print_fn = ref (undef: Sign.sg -> Object.T -> unit);
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   188
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   189
  val empty = ClasetData empty_ref;
6556
daa00919502b theory data: copy;
wenzelm
parents: 6502
diff changeset
   190
  fun copy exn = ! copy_fn exn;
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   191
  fun prep_ext exn = ! prep_ext_fn exn;
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   192
  fun merge exn = ! merge_fn exn;
4259
adbe3f4e7caf adapted print methods;
wenzelm
parents: 4124
diff changeset
   193
  fun print sg exn = ! print_fn sg exn;
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   194
in
6556
daa00919502b theory data: copy;
wenzelm
parents: 6502
diff changeset
   195
  val setup = [Theory.init_data clasetK (empty, copy, prep_ext, merge, print)];
daa00919502b theory data: copy;
wenzelm
parents: 6502
diff changeset
   196
  fun fix_methods (e, cp, ext, mrg, prt) =
daa00919502b theory data: copy;
wenzelm
parents: 6502
diff changeset
   197
    (empty_ref := e; copy_fn := cp; prep_ext_fn := ext; merge_fn := mrg; print_fn := prt);
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   198
end;
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   199
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   200
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   201
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   202
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   203
5927
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
   204
functor ClassicalFun(Data: CLASSICAL_DATA): CLASSICAL =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   205
struct
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   206
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   207
local open ClasetThyData Data in
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   208
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   209
(*** Useful tactics for classical reasoning ***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   210
1524
524879632d88 imp_elim and swap are now stored in thm database
paulson
parents: 1231
diff changeset
   211
val imp_elim = (*cannot use bind_thm within a structure!*)
524879632d88 imp_elim and swap are now stored in thm database
paulson
parents: 1231
diff changeset
   212
  store_thm ("imp_elim", make_elim mp);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   213
4392
ea41d9c1b0ef More deterministic (?) contr_tac
paulson
parents: 4380
diff changeset
   214
(*Prove goal that assumes both P and ~P.  
ea41d9c1b0ef More deterministic (?) contr_tac
paulson
parents: 4380
diff changeset
   215
  No backtracking if it finds an equal assumption.  Perhaps should call
ea41d9c1b0ef More deterministic (?) contr_tac
paulson
parents: 4380
diff changeset
   216
  ematch_tac instead of eresolve_tac, but then cannot prove ZF/cantor.*)
ea41d9c1b0ef More deterministic (?) contr_tac
paulson
parents: 4380
diff changeset
   217
val contr_tac = eresolve_tac [not_elim]  THEN'  
ea41d9c1b0ef More deterministic (?) contr_tac
paulson
parents: 4380
diff changeset
   218
                (eq_assume_tac ORELSE' assume_tac);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   219
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   220
(*Finds P-->Q and P in the assumptions, replaces implication by Q.
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   221
  Could do the same thing for P<->Q and P... *)
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   222
fun mp_tac i = eresolve_tac [not_elim, imp_elim] i  THEN  assume_tac i;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   223
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   224
(*Like mp_tac but instantiates no variables*)
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   225
fun eq_mp_tac i = ematch_tac [not_elim, imp_elim] i  THEN  eq_assume_tac i;
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   226
1524
524879632d88 imp_elim and swap are now stored in thm database
paulson
parents: 1231
diff changeset
   227
val swap =
524879632d88 imp_elim and swap are now stored in thm database
paulson
parents: 1231
diff changeset
   228
  store_thm ("swap", rule_by_tactic (etac thin_rl 1) (not_elim RS classical));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   229
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   230
(*Creates rules to eliminate ~A, from rules to introduce A*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   231
fun swapify intrs = intrs RLN (2, [swap]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   232
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   233
(*Uses introduction rules in the normal way, or on negated assumptions,
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   234
  trying rules in order. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   235
fun swap_res_tac rls = 
54
3dea30013b58 classical/swap_res_tac: recoded to allow backtracking
lcp
parents: 0
diff changeset
   236
    let fun addrl (rl,brls) = (false, rl) :: (true, rl RSN (2,swap)) :: brls
3dea30013b58 classical/swap_res_tac: recoded to allow backtracking
lcp
parents: 0
diff changeset
   237
    in  assume_tac 	ORELSE' 
3dea30013b58 classical/swap_res_tac: recoded to allow backtracking
lcp
parents: 0
diff changeset
   238
	contr_tac 	ORELSE' 
3dea30013b58 classical/swap_res_tac: recoded to allow backtracking
lcp
parents: 0
diff changeset
   239
        biresolve_tac (foldr addrl (rls,[]))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   240
    end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   241
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   242
(*Duplication of hazardous rules, for complete provers*)
2689
6d3d893453de dup_intr & dup_elim no longer call standard -- this
paulson
parents: 2630
diff changeset
   243
fun dup_intr th = zero_var_indexes (th RS classical);
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   244
4646
f6298426f5a7 Catches bad elim rules, handling exception OPTION
paulson
parents: 4625
diff changeset
   245
fun dup_elim th = 
f6298426f5a7 Catches bad elim rules, handling exception OPTION
paulson
parents: 4625
diff changeset
   246
    th RSN (2, revcut_rl) |> assumption 2 |> Seq.hd |> 
f6298426f5a7 Catches bad elim rules, handling exception OPTION
paulson
parents: 4625
diff changeset
   247
    rule_by_tactic (TRYALL (etac revcut_rl))
f6298426f5a7 Catches bad elim rules, handling exception OPTION
paulson
parents: 4625
diff changeset
   248
    handle _ => error ("Bad format for elimination rule\n" ^ string_of_thm th);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   249
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   250
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   251
(**** Classical rule sets ****)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   252
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   253
datatype claset =
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   254
  CS of {safeIs		: thm list,		(*safe introduction rules*)
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   255
	 safeEs		: thm list,		(*safe elimination rules*)
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   256
	 hazIs		: thm list,		(*unsafe introduction rules*)
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   257
	 hazEs		: thm list,		(*unsafe elimination rules*)
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   258
	 swrappers	: (string * wrapper) list, (*for transf. safe_step_tac*)
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   259
	 uwrappers	: (string * wrapper) list, (*for transforming step_tac*)
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   260
	 safe0_netpair	: netpair,		(*nets for trivial cases*)
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   261
	 safep_netpair	: netpair,		(*nets for >0 subgoals*)
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   262
	 haz_netpair  	: netpair,		(*nets for unsafe rules*)
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   263
	 dup_netpair	: netpair};		(*nets for duplication*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   264
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   265
(*Desired invariants are
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   266
	safe0_netpair = build safe0_brls,
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   267
	safep_netpair = build safep_brls,
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   268
	haz_netpair = build (joinrules(hazIs, hazEs)),
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   269
	dup_netpair = build (joinrules(map dup_intr hazIs, 
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   270
				       map dup_elim hazEs))}
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   271
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   272
where build = build_netpair(Net.empty,Net.empty), 
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   273
      safe0_brls contains all brules that solve the subgoal, and
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   274
      safep_brls contains all brules that generate 1 or more new subgoals.
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   275
The theorem lists are largely comments, though they are used in merge_cs and print_cs.
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   276
Nets must be built incrementally, to save space and time.
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   277
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   278
6502
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   279
val empty_netpair = (Net.empty, Net.empty);
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   280
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   281
val empty_cs = 
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   282
  CS{safeIs	= [],
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   283
     safeEs	= [],
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   284
     hazIs	= [],
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   285
     hazEs	= [],
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   286
     swrappers  = [],
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   287
     uwrappers  = [],
6502
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   288
     safe0_netpair = empty_netpair,
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   289
     safep_netpair = empty_netpair,
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   290
     haz_netpair   = empty_netpair,
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   291
     dup_netpair   = empty_netpair};
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   292
3546
de164676a202 improved print_cs;
wenzelm
parents: 3537
diff changeset
   293
fun print_cs (CS {safeIs, safeEs, hazIs, hazEs, ...}) =
de164676a202 improved print_cs;
wenzelm
parents: 3537
diff changeset
   294
  let val pretty_thms = map Display.pretty_thm in
de164676a202 improved print_cs;
wenzelm
parents: 3537
diff changeset
   295
    Pretty.writeln (Pretty.big_list "safe introduction rules:" (pretty_thms safeIs));
4624
795b5b624c02 tuned print_cs;
wenzelm
parents: 4392
diff changeset
   296
    Pretty.writeln (Pretty.big_list "unsafe introduction rules:" (pretty_thms hazIs));
4625
wenzelm
parents: 4624
diff changeset
   297
    Pretty.writeln (Pretty.big_list "safe elimination rules:" (pretty_thms safeEs));
wenzelm
parents: 4624
diff changeset
   298
    Pretty.writeln (Pretty.big_list "unsafe elimination rules:" (pretty_thms hazEs))
3546
de164676a202 improved print_cs;
wenzelm
parents: 3537
diff changeset
   299
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   300
4653
d60f76680bf4 renamed rep_claset to rep_cs
oheimb
parents: 4651
diff changeset
   301
fun rep_cs (CS args) = args;
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   302
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   303
local 
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   304
  fun calc_wrap l tac = foldr (fn ((name,tacf),w) => tacf w) (l, tac);
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   305
in 
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   306
  fun appSWrappers (CS{swrappers,...}) = calc_wrap swrappers;
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   307
  fun appWrappers  (CS{uwrappers,...}) = calc_wrap uwrappers;
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   308
end;
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   309
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   310
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   311
(*** Adding (un)safe introduction or elimination rules.
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   312
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   313
    In case of overlap, new rules are tried BEFORE old ones!!
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   314
***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   315
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   316
(*For use with biresolve_tac.  Combines intr rules with swap to handle negated
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   317
  assumptions.  Pairs elim rules with true. *)
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   318
fun joinrules (intrs,elims) =  
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   319
    (map (pair true) (elims @ swapify intrs)  @
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   320
     map (pair false) intrs);
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   321
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   322
(*Priority: prefer rules with fewest subgoals, 
1231
91d2c1bb5803 clarified comment
paulson
parents: 1073
diff changeset
   323
  then rules added most recently (preferring the head of the list).*)
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   324
fun tag_brls k [] = []
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   325
  | tag_brls k (brl::brls) =
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   326
      (1000000*subgoals_of_brl brl + k, brl) :: 
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   327
      tag_brls (k+1) brls;
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   328
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   329
fun insert_tagged_list kbrls netpr = foldr insert_tagged_brl (kbrls, netpr);
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   330
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   331
(*Insert into netpair that already has nI intr rules and nE elim rules.
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   332
  Count the intr rules double (to account for swapify).  Negate to give the
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   333
  new insertions the lowest priority.*)
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   334
fun insert (nI,nE) = insert_tagged_list o (tag_brls (~(2*nI+nE))) o joinrules;
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   335
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   336
fun delete_tagged_list brls netpr = foldr delete_tagged_brl (brls, netpr);
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   337
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   338
val delete = delete_tagged_list o joinrules;
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   339
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   340
val mem_thm = gen_mem eq_thm
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   341
and rem_thm = gen_rem eq_thm;
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   342
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   343
(*Warn if the rule is already present ELSEWHERE in the claset.  The addition
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   344
  is still allowed.*)
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   345
fun warn_dup th (CS{safeIs, safeEs, hazIs, hazEs, ...}) = 
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   346
       if mem_thm (th, safeIs) then 
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   347
	 warning ("Rule already in claset as Safe Intr\n" ^ string_of_thm th)
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   348
  else if mem_thm (th, safeEs) then
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   349
         warning ("Rule already in claset as Safe Elim\n" ^ string_of_thm th)
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   350
  else if mem_thm (th, hazIs) then 
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   351
         warning ("Rule already in claset as unsafe Intr\n" ^ string_of_thm th)
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   352
  else if mem_thm (th, hazEs) then 
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   353
         warning ("Rule already in claset as unsafe Elim\n" ^ string_of_thm th)
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   354
  else ();
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   355
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   356
(*** Safe rules ***)
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   357
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   358
fun addSI (cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, 
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   359
	      safe0_netpair, safep_netpair, haz_netpair, dup_netpair},
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   360
	   th)  =
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   361
  if mem_thm (th, safeIs) then 
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   362
	 (warning ("Ignoring duplicate Safe Intr\n" ^ string_of_thm th);
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   363
	  cs)
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   364
  else
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   365
  let val (safe0_rls, safep_rls) = (*0 subgoals vs 1 or more*)
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   366
          partition (fn rl => nprems_of rl=0) [th]
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   367
      val nI = length safeIs + 1
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   368
      and nE = length safeEs
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   369
  in warn_dup th cs;
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   370
     CS{safeIs	= th::safeIs,
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   371
        safe0_netpair = insert (nI,nE) (safe0_rls, []) safe0_netpair,
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   372
	safep_netpair = insert (nI,nE) (safep_rls, []) safep_netpair,
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   373
	safeEs	= safeEs,
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   374
	hazIs	= hazIs,
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   375
	hazEs	= hazEs,
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   376
	swrappers    = swrappers,
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   377
	uwrappers    = uwrappers,
2630
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   378
	haz_netpair  = haz_netpair,
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   379
	dup_netpair  = dup_netpair}
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   380
  end;
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   381
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   382
fun addSE (cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, 
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   383
		    safe0_netpair, safep_netpair, haz_netpair, dup_netpair},
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   384
	   th)  =
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   385
  if mem_thm (th, safeEs) then 
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   386
	 (warning ("Ignoring duplicate Safe Elim\n" ^ string_of_thm th);
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   387
	  cs)
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   388
  else
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   389
  let val (safe0_rls, safep_rls) = (*0 subgoals vs 1 or more*)
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   390
          partition (fn rl => nprems_of rl=1) [th]
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   391
      val nI = length safeIs
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   392
      and nE = length safeEs + 1
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   393
  in warn_dup th cs;
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   394
     CS{safeEs	= th::safeEs,
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   395
        safe0_netpair = insert (nI,nE) ([], safe0_rls) safe0_netpair,
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   396
	safep_netpair = insert (nI,nE) ([], safep_rls) safep_netpair,
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   397
	safeIs	= safeIs,
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   398
	hazIs	= hazIs,
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   399
	hazEs	= hazEs,
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   400
	swrappers    = swrappers,
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   401
	uwrappers    = uwrappers,
2630
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   402
	haz_netpair  = haz_netpair,
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   403
	dup_netpair  = dup_netpair}
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   404
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   405
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   406
fun rev_foldl f (e, l) = foldl f (e, rev l);
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   407
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   408
val op addSIs = rev_foldl addSI;
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   409
val op addSEs = rev_foldl addSE;
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   410
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   411
fun cs addSDs ths = cs addSEs (map make_elim ths);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   412
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   413
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   414
(*** Hazardous (unsafe) rules ***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   415
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   416
fun addI (cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, 
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   417
		   safe0_netpair, safep_netpair, haz_netpair, dup_netpair},
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   418
	  th)=
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   419
  if mem_thm (th, hazIs) then 
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   420
	 (warning ("Ignoring duplicate unsafe Intr\n" ^ string_of_thm th);
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   421
	  cs)
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   422
  else
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   423
  let val nI = length hazIs + 1
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   424
      and nE = length hazEs
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   425
  in warn_dup th cs;
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   426
     CS{hazIs	= th::hazIs,
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   427
	haz_netpair = insert (nI,nE) ([th], []) haz_netpair,
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   428
	dup_netpair = insert (nI,nE) (map dup_intr [th], []) dup_netpair,
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   429
	safeIs 	= safeIs, 
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   430
	safeEs	= safeEs,
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   431
	hazEs	= hazEs,
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   432
	swrappers     = swrappers,
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   433
	uwrappers     = uwrappers,
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   434
	safe0_netpair = safe0_netpair,
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   435
	safep_netpair = safep_netpair}
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   436
  end;
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   437
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   438
fun addE (cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, 
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   439
		   safe0_netpair, safep_netpair, haz_netpair, dup_netpair},
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   440
	  th) =
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   441
  if mem_thm (th, hazEs) then 
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   442
	 (warning ("Ignoring duplicate unsafe Elim\n" ^ string_of_thm th);
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   443
	  cs)
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   444
  else
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   445
  let val nI = length hazIs 
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   446
      and nE = length hazEs + 1
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   447
  in warn_dup th cs;
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   448
     CS{hazEs	= th::hazEs,
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   449
	haz_netpair = insert (nI,nE) ([], [th]) haz_netpair,
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   450
	dup_netpair = insert (nI,nE) ([], map dup_elim [th]) dup_netpair,
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   451
	safeIs	= safeIs, 
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   452
	safeEs	= safeEs,
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   453
	hazIs	= hazIs,
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   454
	swrappers     = swrappers,
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   455
	uwrappers     = uwrappers,
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   456
	safe0_netpair = safe0_netpair,
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   457
	safep_netpair = safep_netpair}
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   458
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   459
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   460
val op addIs = rev_foldl addI;
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   461
val op addEs = rev_foldl addE;
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   462
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   463
fun cs addDs ths = cs addEs (map make_elim ths);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   464
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   465
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   466
(*** Deletion of rules 
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   467
     Working out what to delete, requires repeating much of the code used
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   468
	to insert.
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   469
     Separate functions delSI, etc., are not exported; instead delrules
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   470
        searches in all the lists and chooses the relevant delXX functions.
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   471
***)
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   472
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   473
fun delSI th 
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   474
          (cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, 
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   475
		    safe0_netpair, safep_netpair, haz_netpair, dup_netpair}) =
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   476
 if mem_thm (th, safeIs) then
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   477
   let val (safe0_rls, safep_rls) = partition (fn rl => nprems_of rl=0) [th]
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   478
   in CS{safe0_netpair = delete (safe0_rls, []) safe0_netpair,
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   479
	 safep_netpair = delete (safep_rls, []) safep_netpair,
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   480
	 safeIs	= rem_thm (safeIs,th),
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   481
	 safeEs	= safeEs,
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   482
	 hazIs	= hazIs,
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   483
	 hazEs	= hazEs,
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   484
	 swrappers    = swrappers,
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   485
	 uwrappers    = uwrappers,
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   486
	 haz_netpair  = haz_netpair,
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   487
	 dup_netpair  = dup_netpair}
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   488
   end
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   489
 else cs;
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   490
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   491
fun delSE th
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   492
          (cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, 
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   493
	            safe0_netpair, safep_netpair, haz_netpair, dup_netpair}) =
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   494
 if mem_thm (th, safeEs) then
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   495
   let val (safe0_rls, safep_rls) = partition (fn rl => nprems_of rl=1) [th]
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   496
   in CS{safe0_netpair = delete ([], safe0_rls) safe0_netpair,
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   497
	 safep_netpair = delete ([], safep_rls) safep_netpair,
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   498
	 safeIs	= safeIs,
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   499
	 safeEs	= rem_thm (safeEs,th),
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   500
	 hazIs	= hazIs,
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   501
	 hazEs	= hazEs,
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   502
	 swrappers    = swrappers,
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   503
	 uwrappers    = uwrappers,
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   504
	 haz_netpair  = haz_netpair,
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   505
	 dup_netpair  = dup_netpair}
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   506
   end
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   507
 else cs;
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   508
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   509
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   510
fun delI th
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   511
         (cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, 
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   512
	           safe0_netpair, safep_netpair, haz_netpair, dup_netpair}) =
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   513
 if mem_thm (th, hazIs) then
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   514
     CS{haz_netpair = delete ([th], []) haz_netpair,
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   515
	dup_netpair = delete ([dup_intr th], []) dup_netpair,
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   516
	safeIs 	= safeIs, 
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   517
	safeEs	= safeEs,
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   518
	hazIs	= rem_thm (hazIs,th),
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   519
	hazEs	= hazEs,
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   520
	swrappers     = swrappers,
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   521
	uwrappers     = uwrappers,
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   522
	safe0_netpair = safe0_netpair,
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   523
	safep_netpair = safep_netpair}
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   524
 else cs;
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   525
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   526
fun delE th
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   527
	 (cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, 
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   528
	           safe0_netpair, safep_netpair, haz_netpair, dup_netpair}) =
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   529
 if mem_thm (th, hazEs) then
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   530
     CS{haz_netpair = delete ([], [th]) haz_netpair,
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   531
	dup_netpair = delete ([], [dup_elim th]) dup_netpair,
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   532
	safeIs	= safeIs, 
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   533
	safeEs	= safeEs,
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   534
	hazIs	= hazIs,
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   535
	hazEs	= rem_thm (hazEs,th),
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   536
	swrappers     = swrappers,
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   537
	uwrappers     = uwrappers,
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   538
	safe0_netpair = safe0_netpair,
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   539
	safep_netpair = safep_netpair}
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   540
 else cs;
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   541
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   542
(*Delete ALL occurrences of "th" in the claset (perhaps from several lists)*)
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   543
fun delrule (cs as CS{safeIs, safeEs, hazIs, hazEs, ...}, th) =
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   544
       if mem_thm (th, safeIs) orelse mem_thm (th, safeEs) orelse
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   545
	  mem_thm (th, hazIs)  orelse mem_thm (th, hazEs) 
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   546
       then delSI th (delSE th (delI th (delE th cs)))
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   547
       else (warning ("Rule not in claset\n" ^ (string_of_thm th)); 
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   548
	     cs);
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   549
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   550
val op delrules = foldl delrule;
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   551
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   552
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   553
(*** Modifying the wrapper tacticals ***)
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   554
fun update_swrappers 
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   555
(CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, 
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   556
    safe0_netpair, safep_netpair, haz_netpair, dup_netpair}) f =
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   557
 CS{safeIs = safeIs, safeEs = safeEs, hazIs = hazIs, hazEs = hazEs,
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   558
    swrappers = f swrappers, uwrappers = uwrappers,
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   559
    safe0_netpair = safe0_netpair, safep_netpair = safep_netpair,
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   560
    haz_netpair = haz_netpair, dup_netpair = dup_netpair};
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   561
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   562
fun update_uwrappers 
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   563
(CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, 
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   564
    safe0_netpair, safep_netpair, haz_netpair, dup_netpair}) f =
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   565
 CS{safeIs = safeIs, safeEs = safeEs, hazIs = hazIs, hazEs = hazEs,
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   566
    swrappers = swrappers, uwrappers = f uwrappers,
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   567
    safe0_netpair = safe0_netpair, safep_netpair = safep_netpair,
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   568
    haz_netpair = haz_netpair, dup_netpair = dup_netpair};
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   569
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   570
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   571
(*Add/replace a safe wrapper*)
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   572
fun cs addSWrapper new_swrapper = update_swrappers cs (fn swrappers =>
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   573
    (case assoc_string (swrappers,(fst new_swrapper)) of None =>()
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   574
	   | Some x => warning("overwriting safe wrapper "^fst new_swrapper); 
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   575
		   overwrite (swrappers, new_swrapper)));
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   576
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   577
(*Add/replace an unsafe wrapper*)
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   578
fun cs addWrapper new_uwrapper = update_uwrappers cs (fn uwrappers =>
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   579
    (case assoc_string (uwrappers,(fst new_uwrapper)) of None =>()
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   580
	   | Some x => warning ("overwriting unsafe wrapper "^fst new_uwrapper);
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   581
		   overwrite (uwrappers, new_uwrapper)));
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   582
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   583
(*Remove a safe wrapper*)
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   584
fun cs delSWrapper name = update_swrappers cs (fn swrappers =>
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   585
    let val (del,rest) = partition (fn (n,_) => n=name) swrappers
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   586
    in if null del then (warning ("No such safe wrapper in claset: "^ name); 
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   587
			 swrappers) else rest end);
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   588
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   589
(*Remove an unsafe wrapper*)
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   590
fun cs delWrapper name = update_uwrappers cs (fn uwrappers =>
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   591
    let val (del,rest) = partition (fn (n,_) => n=name) uwrappers
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   592
    in if null del then (warning ("No such unsafe wrapper in claset: " ^ name);
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   593
                         uwrappers) else rest end);
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   594
2630
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   595
(*compose a safe tactic sequentially before/alternatively after safe_step_tac*)
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   596
fun cs addSbefore  (name,    tac1) = 
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   597
    cs addSWrapper (name, fn tac2 => tac1 ORELSE' tac2);
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   598
fun cs addSaltern  (name,    tac2) = 
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   599
    cs addSWrapper (name, fn tac1 => tac1 ORELSE' tac2);
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   600
2630
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   601
(*compose a tactic sequentially before/alternatively after the step tactic*)
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   602
fun cs addbefore   (name,    tac1) = 
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   603
    cs addWrapper  (name, fn tac2 => tac1 APPEND' tac2);
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   604
fun cs addaltern   (name,    tac2) =
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   605
    cs addWrapper  (name, fn tac1 => tac1 APPEND' tac2);
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   606
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   607
fun cs addD2     (name, thm) = 
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   608
    cs addaltern (name, dtac thm THEN' atac);
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   609
fun cs addE2     (name, thm) = 
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   610
    cs addaltern (name, etac thm THEN' atac);
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   611
fun cs addSD2     (name, thm) = 
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   612
    cs addSaltern (name, dmatch_tac [thm] THEN' eq_assume_tac);
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   613
fun cs addSE2     (name, thm) = 
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   614
    cs addSaltern (name, ematch_tac [thm] THEN' eq_assume_tac);
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   615
1711
c06d01f75764 Provides merge_cs to support default clasets
paulson
parents: 1587
diff changeset
   616
(*Merge works by adding all new rules of the 2nd claset into the 1st claset.
c06d01f75764 Provides merge_cs to support default clasets
paulson
parents: 1587
diff changeset
   617
  Merging the term nets may look more efficient, but the rather delicate
c06d01f75764 Provides merge_cs to support default clasets
paulson
parents: 1587
diff changeset
   618
  treatment of priority might get muddled up.*)
c06d01f75764 Provides merge_cs to support default clasets
paulson
parents: 1587
diff changeset
   619
fun merge_cs
2630
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   620
    (cs as CS{safeIs, safeEs, hazIs, hazEs, ...},
4765
d2c41c8b545f merge_cs now also merges safe and unsafe wrappers
oheimb
parents: 4742
diff changeset
   621
     CS{safeIs=safeIs2, safeEs=safeEs2, hazIs=hazIs2, hazEs=hazEs2,
d2c41c8b545f merge_cs now also merges safe and unsafe wrappers
oheimb
parents: 4742
diff changeset
   622
	swrappers, uwrappers, ...}) =
1711
c06d01f75764 Provides merge_cs to support default clasets
paulson
parents: 1587
diff changeset
   623
  let val safeIs' = gen_rems eq_thm (safeIs2,safeIs)
c06d01f75764 Provides merge_cs to support default clasets
paulson
parents: 1587
diff changeset
   624
      val safeEs' = gen_rems eq_thm (safeEs2,safeEs)
2630
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   625
      val  hazIs' = gen_rems eq_thm ( hazIs2, hazIs)
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   626
      val  hazEs' = gen_rems eq_thm ( hazEs2, hazEs)
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   627
      val cs1   = cs addSIs safeIs'
4765
d2c41c8b545f merge_cs now also merges safe and unsafe wrappers
oheimb
parents: 4742
diff changeset
   628
		     addSEs safeEs'
d2c41c8b545f merge_cs now also merges safe and unsafe wrappers
oheimb
parents: 4742
diff changeset
   629
		     addIs  hazIs'
d2c41c8b545f merge_cs now also merges safe and unsafe wrappers
oheimb
parents: 4742
diff changeset
   630
		     addEs  hazEs'
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   631
      val cs2 = update_swrappers cs1 (fn ws => merge_alists ws swrappers);
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   632
      val cs3 = update_uwrappers cs2 (fn ws => merge_alists ws uwrappers);
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   633
  in cs3 
1711
c06d01f75764 Provides merge_cs to support default clasets
paulson
parents: 1587
diff changeset
   634
  end;
c06d01f75764 Provides merge_cs to support default clasets
paulson
parents: 1587
diff changeset
   635
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   636
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   637
(**** Simple tactics for theorem proving ****)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   638
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   639
(*Attack subgoals using safe inferences -- matching, not resolution*)
2630
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   640
fun safe_step_tac (cs as CS{safe0_netpair,safep_netpair,...}) = 
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   641
  appSWrappers cs (FIRST' [
2630
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   642
	eq_assume_tac,
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   643
	eq_mp_tac,
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   644
	bimatch_from_nets_tac safe0_netpair,
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   645
	FIRST' hyp_subst_tacs,
7a962f6829ca moved THEN_MAYBE to Pure/tctical.ML
oheimb
parents: 2173
diff changeset
   646
	bimatch_from_nets_tac safep_netpair]);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   647
5757
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   648
(*Repeatedly attack a subgoal using safe inferences -- it's deterministic!*)
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   649
fun safe_steps_tac cs = REPEAT_DETERM1 o 
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   650
	(fn i => COND (has_fewer_prems i) no_tac (safe_step_tac cs i));
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   651
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   652
(*Repeatedly attack subgoals using safe inferences -- it's deterministic!*)
5757
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   653
fun safe_tac cs = REPEAT_DETERM1 (FIRSTGOAL (safe_steps_tac cs));
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   654
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   655
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   656
(*** Clarify_tac: do safe steps without causing branching ***)
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   657
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   658
fun nsubgoalsP n (k,brl) = (subgoals_of_brl brl = n);
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   659
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   660
(*version of bimatch_from_nets_tac that only applies rules that
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   661
  create precisely n subgoals.*)
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   662
fun n_bimatch_from_nets_tac n = 
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   663
    biresolution_from_nets_tac (orderlist o filter (nsubgoalsP n)) true;
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   664
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   665
fun eq_contr_tac i = ematch_tac [not_elim] i  THEN  eq_assume_tac i;
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   666
val eq_assume_contr_tac = eq_assume_tac ORELSE' eq_contr_tac;
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   667
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   668
(*Two-way branching is allowed only if one of the branches immediately closes*)
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   669
fun bimatch2_tac netpair i =
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   670
    n_bimatch_from_nets_tac 2 netpair i THEN
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   671
    (eq_assume_contr_tac i ORELSE eq_assume_contr_tac (i+1));
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   672
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   673
(*Attack subgoals using safe inferences -- matching, not resolution*)
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   674
fun clarify_step_tac (cs as CS{safe0_netpair,safep_netpair,...}) = 
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   675
  appSWrappers cs (FIRST' [
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   676
	eq_assume_contr_tac,
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   677
	bimatch_from_nets_tac safe0_netpair,
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   678
	FIRST' hyp_subst_tacs,
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   679
	n_bimatch_from_nets_tac 1 safep_netpair,
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   680
        bimatch2_tac safep_netpair]);
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   681
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   682
fun clarify_tac cs = SELECT_GOAL (REPEAT_DETERM (clarify_step_tac cs 1));
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   683
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   684
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   685
(*** Unsafe steps instantiate variables or lose information ***)
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   686
4066
7b508ac609f7 Fixed comments
paulson
parents: 3727
diff changeset
   687
(*Backtracking is allowed among the various these unsafe ways of
7b508ac609f7 Fixed comments
paulson
parents: 3727
diff changeset
   688
  proving a subgoal.  *)
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   689
fun inst0_step_tac (CS{safe0_netpair,safep_netpair,...}) =
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   690
  assume_tac 			  APPEND' 
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   691
  contr_tac 			  APPEND' 
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   692
  biresolve_from_nets_tac safe0_netpair;
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   693
4066
7b508ac609f7 Fixed comments
paulson
parents: 3727
diff changeset
   694
(*These unsafe steps could generate more subgoals.*)
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   695
fun instp_step_tac (CS{safep_netpair,...}) =
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   696
  biresolve_from_nets_tac safep_netpair;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   697
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   698
(*These steps could instantiate variables and are therefore unsafe.*)
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   699
fun inst_step_tac cs = inst0_step_tac cs APPEND' instp_step_tac cs;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   700
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   701
fun haz_step_tac (CS{haz_netpair,...}) = 
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   702
  biresolve_from_nets_tac haz_netpair;
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   703
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   704
(*Single step for the prover.  FAILS unless it makes progress. *)
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   705
fun step_tac cs i = safe_tac cs ORELSE appWrappers cs 
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   706
	(inst_step_tac cs ORELSE' haz_step_tac cs) i;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   707
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   708
(*Using a "safe" rule to instantiate variables is unsafe.  This tactic
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   709
  allows backtracking from "safe" rules to "unsafe" rules here.*)
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   710
fun slow_step_tac cs i = safe_tac cs ORELSE appWrappers cs 
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   711
	(inst_step_tac cs APPEND' haz_step_tac cs) i;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   712
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   713
(**** The following tactics all fail unless they solve one goal ****)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   714
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   715
(*Dumb but fast*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   716
fun fast_tac cs = SELECT_GOAL (DEPTH_SOLVE (step_tac cs 1));
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   717
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   718
(*Slower but smarter than fast_tac*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   719
fun best_tac cs = 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   720
  SELECT_GOAL (BEST_FIRST (has_fewer_prems 1, sizef) (step_tac cs 1));
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   721
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   722
fun slow_tac cs = SELECT_GOAL (DEPTH_SOLVE (slow_step_tac cs 1));
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   723
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   724
fun slow_best_tac cs = 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   725
  SELECT_GOAL (BEST_FIRST (has_fewer_prems 1, sizef) (slow_step_tac cs 1));
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   726
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   727
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   728
(***ASTAR with weight weight_ASTAR, by Norbert Voelker*) 
1587
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   729
val weight_ASTAR = ref 5; 
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   730
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   731
fun astar_tac cs = 
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   732
  SELECT_GOAL ( ASTAR (has_fewer_prems 1
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   733
	      , fn level =>(fn thm =>size_of_thm thm + !weight_ASTAR *level)) 
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   734
	      (step_tac cs 1));
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   735
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   736
fun slow_astar_tac cs = 
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   737
  SELECT_GOAL ( ASTAR (has_fewer_prems 1
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   738
	      , fn level =>(fn thm =>size_of_thm thm + !weight_ASTAR *level)) 
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   739
	      (slow_step_tac cs 1));
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   740
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   741
(**** Complete tactic, loosely based upon LeanTaP.  This tactic is the outcome
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   742
  of much experimentation!  Changing APPEND to ORELSE below would prove
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   743
  easy theorems faster, but loses completeness -- and many of the harder
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   744
  theorems such as 43. ****)
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   745
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   746
(*Non-deterministic!  Could always expand the first unsafe connective.
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   747
  That's hard to implement and did not perform better in experiments, due to
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   748
  greater search depth required.*)
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   749
fun dup_step_tac (cs as (CS{dup_netpair,...})) = 
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   750
  biresolve_from_nets_tac dup_netpair;
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   751
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   752
(*Searching to depth m. A variant called nodup_depth_tac appears in clasimp.ML*)
5757
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   753
local
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   754
fun slow_step_tac' cs = appWrappers cs 
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   755
	(instp_step_tac cs APPEND' dup_step_tac cs);
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   756
in fun depth_tac cs m i state = SELECT_GOAL 
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   757
   (safe_steps_tac cs 1 THEN_ELSE 
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   758
	(DEPTH_SOLVE (depth_tac cs m 1),
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   759
	 inst0_step_tac cs 1 APPEND COND (K (m=0)) no_tac
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   760
		(slow_step_tac' cs 1 THEN DEPTH_SOLVE (depth_tac cs (m-1) 1))
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   761
        )) i state;
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   762
end;
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   763
2173
08c68550460b Added a comment
paulson
parents: 2066
diff changeset
   764
(*Search, with depth bound m.  
08c68550460b Added a comment
paulson
parents: 2066
diff changeset
   765
  This is the "entry point", which does safe inferences first.*)
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   766
fun safe_depth_tac cs m = 
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   767
  SUBGOAL 
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   768
    (fn (prem,i) =>
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   769
      let val deti =
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   770
	  (*No Vars in the goal?  No need to backtrack between goals.*)
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   771
	  case term_vars prem of
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   772
	      []	=> DETERM 
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   773
	    | _::_	=> I
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   774
      in  SELECT_GOAL (TRY (safe_tac cs) THEN 
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   775
		       DEPTH_SOLVE (deti (depth_tac cs m 1))) i
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   776
      end);
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   777
2868
17a23a62f82a New DEEPEN allows giving an upper bound for deepen_tac
paulson
parents: 2813
diff changeset
   778
fun deepen_tac cs = DEEPEN (2,10) (safe_depth_tac cs);
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   779
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   780
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   781
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   782
(** claset theory data **)
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   783
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   784
(* init data kind claset *)
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   785
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   786
exception CSData of claset ref;
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   787
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   788
local
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   789
  val empty = CSData (ref empty_cs);
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   790
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   791
  (*create new references*)
6556
daa00919502b theory data: copy;
wenzelm
parents: 6502
diff changeset
   792
  fun copy (ClasetData (ref (CSData (ref cs)))) =
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   793
    ClasetData (ref (CSData (ref cs)));
6556
daa00919502b theory data: copy;
wenzelm
parents: 6502
diff changeset
   794
  val prep_ext = copy;
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   795
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   796
  fun merge (ClasetData (ref (CSData (ref cs1))), ClasetData (ref (CSData (ref cs2)))) =
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   797
    ClasetData (ref (CSData (ref (merge_cs (cs1, cs2)))));
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   798
4259
adbe3f4e7caf adapted print methods;
wenzelm
parents: 4124
diff changeset
   799
  fun print (_: Sign.sg) (ClasetData (ref (CSData (ref cs)))) = print_cs cs;
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   800
in
6556
daa00919502b theory data: copy;
wenzelm
parents: 6502
diff changeset
   801
  val _ = fix_methods (empty, copy, prep_ext, merge, print);
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   802
end;
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   803
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   804
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   805
(* access claset *)
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   806
5001
9de7fda0a6df accomodate tuned version of theory data;
wenzelm
parents: 4854
diff changeset
   807
val print_claset = Theory.print_data clasetK;
4380
0a32020760fa added print_claset;
wenzelm
parents: 4271
diff changeset
   808
5001
9de7fda0a6df accomodate tuned version of theory data;
wenzelm
parents: 4854
diff changeset
   809
val claset_ref_of_sg = Sign.get_data clasetK (fn ClasetData (ref (CSData r)) => r);
1807
3ff66483a8d4 Now exports Delrules
paulson
parents: 1800
diff changeset
   810
6391
0da748358eff Theory.sign_of;
wenzelm
parents: 6096
diff changeset
   811
val claset_ref_of = claset_ref_of_sg o Theory.sign_of;
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   812
val claset_of_sg = ! o claset_ref_of_sg;
6391
0da748358eff Theory.sign_of;
wenzelm
parents: 6096
diff changeset
   813
val claset_of = claset_of_sg o Theory.sign_of;
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   814
6391
0da748358eff Theory.sign_of;
wenzelm
parents: 6096
diff changeset
   815
fun CLASET tacf state = tacf (claset_of_sg (Thm.sign_of_thm state)) state;
0da748358eff Theory.sign_of;
wenzelm
parents: 6096
diff changeset
   816
fun CLASET' tacf i state = tacf (claset_of_sg (Thm.sign_of_thm state)) i state;
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   817
5028
61c10aad3d71 Context.the_context;
wenzelm
parents: 5001
diff changeset
   818
val claset = claset_of o Context.the_context;
6391
0da748358eff Theory.sign_of;
wenzelm
parents: 6096
diff changeset
   819
val claset_ref = claset_ref_of_sg o Theory.sign_of o Context.the_context;
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   820
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   821
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   822
(* change claset *)
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   823
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   824
fun change_claset f x = claset_ref () := (f (claset (), x));
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   825
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   826
val AddDs = change_claset (op addDs);
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   827
val AddEs = change_claset (op addEs);
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   828
val AddIs = change_claset (op addIs);
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   829
val AddSDs = change_claset (op addSDs);
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   830
val AddSEs = change_claset (op addSEs);
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   831
val AddSIs = change_claset (op addSIs);
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   832
val Delrules = change_claset (op delrules);
3727
ed63c05d7992 Added Safe_tac; all other default claset tactics now dereference "claset"
paulson
parents: 3705
diff changeset
   833
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   834
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   835
(* proof data kind 'Provers/claset' *)
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   836
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   837
structure LocalClasetArgs =
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   838
struct
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   839
  val name = "Provers/claset";
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   840
  type T = claset;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   841
  val init = claset_of;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   842
  fun print _ cs = print_cs cs;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   843
end;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   844
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   845
structure LocalClaset = ProofDataFun(LocalClasetArgs);
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   846
val print_local_claset = LocalClaset.print;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   847
val get_local_claset = LocalClaset.get;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   848
val put_local_claset = LocalClaset.put;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   849
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   850
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   851
(* attributes *)
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   852
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   853
fun change_global_cs f (thy, th) =
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   854
  let val r = claset_ref_of thy
6096
3451f9e88528 eliminated tthm type and Attribute structure;
wenzelm
parents: 5927
diff changeset
   855
  in r := f (! r, [th]); (thy, th) end;
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   856
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   857
fun change_local_cs f (ctxt, th) =
6096
3451f9e88528 eliminated tthm type and Attribute structure;
wenzelm
parents: 5927
diff changeset
   858
  let val cs = f (get_local_claset ctxt, [th])
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   859
  in (put_local_claset cs ctxt, th) end;
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   860
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   861
val haz_dest_global = change_global_cs (op addDs);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   862
val haz_elim_global = change_global_cs (op addEs);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   863
val haz_intro_global = change_global_cs (op addIs);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   864
val safe_dest_global = change_global_cs (op addSDs);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   865
val safe_elim_global = change_global_cs (op addSEs);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   866
val safe_intro_global = change_global_cs (op addSIs);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   867
val delrule_global = change_global_cs (op delrules);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   868
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   869
val haz_dest_local = change_local_cs (op addDs);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   870
val haz_elim_local = change_local_cs (op addEs);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   871
val haz_intro_local = change_local_cs (op addIs);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   872
val safe_dest_local = change_local_cs (op addSDs);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   873
val safe_elim_local = change_local_cs (op addSEs);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   874
val safe_intro_local = change_local_cs (op addSIs);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   875
val delrule_local = change_local_cs (op delrules);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   876
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   877
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   878
(* tactics referring to the implicit claset *)
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   879
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   880
(*the abstraction over the proof state delays the dereferencing*)
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   881
fun Safe_tac st		  = safe_tac (claset()) st;
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   882
fun Safe_step_tac i st	  = safe_step_tac (claset()) i st;
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   883
fun Clarify_step_tac i st = clarify_step_tac (claset()) i st;
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   884
fun Clarify_tac i st	  = clarify_tac (claset()) i st;
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   885
fun Step_tac i st	  = step_tac (claset()) i st;
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   886
fun Fast_tac i st	  = fast_tac (claset()) i st;
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   887
fun Best_tac i st	  = best_tac (claset()) i st;
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   888
fun Slow_tac i st	  = slow_tac (claset()) i st;
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   889
fun Slow_best_tac i st	  = slow_best_tac (claset()) i st;
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   890
fun Deepen_tac m	  = deepen_tac (claset()) m;
2066
b9063086ef56 Introduction of Slow_tac and Slow_best_tac
paulson
parents: 1938
diff changeset
   891
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   892
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   893
end; 
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   894
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   895
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   896
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   897
(** concrete syntax of attributes **)
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   898
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   899
(* add / del rules *)
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   900
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   901
val introN = "intro";
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   902
val elimN = "elim";
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   903
val destN = "dest";
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   904
val delN = "del";
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   905
val delruleN = "delrule";
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   906
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   907
val bang = Args.$$$ "!";
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   908
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   909
fun cla_att change haz safe =
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   910
  Attrib.syntax (Scan.lift ((bang >> K haz || Scan.succeed safe) >> change));
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   911
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   912
fun cla_attr f g = (cla_att change_global_cs f g, cla_att change_local_cs f g);
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   913
val del_attr = (Attrib.no_args delrule_global, Attrib.no_args delrule_local);
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   914
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   915
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   916
(* setup_attrs *)
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   917
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   918
val setup_attrs = Attrib.add_attributes
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   919
 [(destN, cla_attr (op addDs) (op addSDs), "destruction rule"),
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   920
  (elimN, cla_attr (op addEs) (op addSEs), "elimination rule"),
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   921
  (introN, cla_attr (op addIs) (op addSIs), "introduction rule"),
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   922
  (delruleN, del_attr, "delete rule")];
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   923
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   924
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   925
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   926
(** single rule proof method **)
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   927
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   928
(* utils *)
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   929
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   930
fun resolve_from_seq_tac rq i st = Seq.flat (Seq.map (fn r => rtac r i st) rq);
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   931
fun order_rules xs = map snd (Tactic.orderlist xs);
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   932
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   933
fun find_rules concl nets =
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   934
  let fun rules_of (inet, _) = order_rules (Net.unify_term inet concl)
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   935
  in flat (map rules_of nets) end;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   936
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   937
fun find_erules [] _ = []
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   938
  | find_erules facts nets =
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   939
      let
6502
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   940
        fun may_unify net = Net.unify_term net o Logic.strip_assums_concl o #prop o Thm.rep_thm;
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   941
        fun erules_of (_, enet) = order_rules (flat (map (may_unify enet) facts));
6502
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   942
      in flat (map erules_of nets) end;
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   943
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   944
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   945
(* trace rules *)
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   946
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   947
val trace_rules = ref false;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   948
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   949
fun print_rules rules i =
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   950
  if not (! trace_rules) then ()
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   951
  else
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   952
    Pretty.writeln (Pretty.big_list ("trying standard rule(s) on goal #" ^ string_of_int i ^ ":")
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   953
      (map Display.pretty_thm rules));
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   954
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   955
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   956
(* single_tac *)
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   957
6502
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   958
val imp_elim_netpair = insert (0, 0) ([], [imp_elim]) empty_netpair;
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   959
val not_elim_netpair = insert (0, 0) ([], [Data.not_elim]) empty_netpair;
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   960
6096
3451f9e88528 eliminated tthm type and Attribute structure;
wenzelm
parents: 5927
diff changeset
   961
fun single_tac cs facts =
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   962
  let
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   963
    val CS {safe0_netpair, safep_netpair, haz_netpair, dup_netpair, ...} = cs;
6502
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   964
    val nets = [imp_elim_netpair, safe0_netpair, safep_netpair,
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   965
      not_elim_netpair, haz_netpair, dup_netpair];
6492
wenzelm
parents: 6489
diff changeset
   966
    val erules = find_erules facts nets;
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   967
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   968
    val tac = SUBGOAL (fn (goal, i) =>
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   969
      let
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   970
        val irules = find_rules (Logic.strip_assums_concl goal) nets;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   971
        val rules = erules @ irules;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   972
        val ruleq = Method.forward_chain facts rules;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   973
      in
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   974
        print_rules rules i;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   975
        fn st => Seq.flat (Seq.map (fn rule => Tactic.rtac rule i st) ruleq) end);
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   976
  in tac end;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   977
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   978
val single = Method.METHOD (FIRSTGOAL o (fn facts => CLASET' (fn cs => single_tac cs facts)));
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   979
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   980
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   981
6502
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   982
(** more proof methods **)
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   983
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   984
(* contradiction *)
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   985
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   986
(* FIXME
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   987
val contradiction = Method.METHOD (fn facts =>
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   988
  Method.FINISHED (ALLGOALS (Method.same_tac facts THEN' (contr_tac ORELSE' assume_tac))));
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   989
*)
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   990
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   991
val contradiction = Method.METHOD (fn facts => FIRSTGOAL (Method.same_tac facts THEN' contr_tac));
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   992
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   993
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   994
(* automatic methods *)
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   995
5927
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
   996
val cla_modifiers =
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
   997
 [Args.$$$ destN -- bang >> K haz_dest_local,
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
   998
  Args.$$$ destN >> K safe_dest_local,
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
   999
  Args.$$$ elimN -- bang >> K haz_elim_local,
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
  1000
  Args.$$$ elimN >> K safe_elim_local,
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
  1001
  Args.$$$ introN -- bang >> K haz_intro_local,
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
  1002
  Args.$$$ introN >> K safe_intro_local,
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
  1003
  Args.$$$ delN >> K delrule_local];
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
  1004
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
  1005
val cla_args = Method.only_sectioned_args cla_modifiers;
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1006
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
  1007
fun cla_meth tac ctxt = Method.METHOD0 (tac (get_local_claset ctxt));
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
  1008
fun cla_meth' tac ctxt = Method.METHOD0 (FIRSTGOAL (tac (get_local_claset ctxt)));
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1009
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
  1010
val cla_method = cla_args o cla_meth;
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
  1011
val cla_method' = cla_args o cla_meth';
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1012
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1013
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1014
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1015
(** setup_methods **)
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1016
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1017
val setup_methods = Method.add_methods
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1018
 [("single", Method.no_args single, "apply standard rule (single step)"),
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1019
  ("default", Method.no_args single, "apply standard rule (single step)"),
6502
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
  1020
  ("contradiction", Method.no_args contradiction, "proof by contradiction"),
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
  1021
  ("safe_tac", cla_method safe_tac, "safe_tac"),
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
  1022
  ("safe_step", cla_method' safe_step_tac, "step_tac"),
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
  1023
  ("fast", cla_method' fast_tac, "fast_tac"),
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
  1024
  ("best", cla_method' best_tac, "best_tac"),
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
  1025
  ("slow", cla_method' slow_tac, "slow_tac"),
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
  1026
  ("slow_best", cla_method' slow_best_tac, "slow_best_tac")];
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1027
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1028
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1029
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1030
(** theory setup **)
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1031
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1032
(* FIXME claset theory data *)
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1033
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1034
val setup = [LocalClaset.init, setup_attrs, setup_methods];
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1035
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1036
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1037
end;