src/Provers/classical.ML
author blanchet
Wed, 04 Mar 2009 10:45:52 +0100
changeset 30240 5b25fee0362c
parent 29267 8615b4f54047
child 30510 4120fc59dd85
permissions -rw-r--r--
Merge.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
     1
(*  Title:      Provers/classical.ML
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     3
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     4
Theorem prover for classical reasoning, including predicate calculus, set
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
theory, etc.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
9563
216d053992a5 fixed classification of rules in atts and modifiers (final!?);
wenzelm
parents: 9513
diff changeset
     7
Rules must be classified as intro, elim, safe, hazardous (unsafe).
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     9
A rule is unsafe unless it can be applied blindly without harmful results.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    10
For a rule to be safe, its premises and conclusion should be logically
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    11
equivalent.  There should be no variables in the premises that are not in
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    12
the conclusion.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    13
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    14
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    15
(*higher precedence than := facilitates use of references*)
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
    16
infix 4 addSIs addSEs addSDs addIs addEs addDs delrules
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
    17
  addSWrapper delSWrapper addWrapper delWrapper
11181
d04f57b91166 renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents: 11168
diff changeset
    18
  addSbefore addSafter addbefore addafter
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
    19
  addD2 addE2 addSD2 addSE2;
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    20
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    21
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    22
(*should be a type abbreviation in signature CLASSICAL*)
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    23
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
    24
type wrapper = (int -> tactic) -> (int -> tactic);
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    25
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    26
signature CLASSICAL_DATA =
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    27
sig
26412
0918f5c0bbca pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents: 24867
diff changeset
    28
  val imp_elim  : thm           (* P --> Q ==> (~ R ==> P) ==> (Q ==> R) ==> R *)
0918f5c0bbca pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents: 24867
diff changeset
    29
  val not_elim  : thm           (* ~P ==> P ==> R *)
0918f5c0bbca pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents: 24867
diff changeset
    30
  val swap      : thm           (* ~ P ==> (~ R ==> P) ==> R *)
0918f5c0bbca pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents: 24867
diff changeset
    31
  val classical : thm           (* (~ P ==> P) ==> P *)
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    32
  val sizef     : thm -> int    (* size function for BEST_FIRST *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    33
  val hyp_subst_tacs: (int -> tactic) list
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    34
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    35
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
    36
signature BASIC_CLASSICAL =
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    37
sig
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    38
  type claset
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    39
  val empty_cs: claset
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    40
  val print_cs: claset -> unit
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
    41
  val rep_cs:
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    42
    claset -> {safeIs: thm list, safeEs: thm list,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    43
                 hazIs: thm list, hazEs: thm list,
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
    44
                 swrappers: (string * wrapper) list,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    45
                 uwrappers: (string * wrapper) list,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    46
                 safe0_netpair: netpair, safep_netpair: netpair,
12401
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
    47
                 haz_netpair: netpair, dup_netpair: netpair,
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
    48
                 xtra_netpair: ContextRules.netpair}
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    49
  val merge_cs          : claset * claset -> claset
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    50
  val addDs             : claset * thm list -> claset
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    51
  val addEs             : claset * thm list -> claset
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    52
  val addIs             : claset * thm list -> claset
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    53
  val addSDs            : claset * thm list -> claset
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    54
  val addSEs            : claset * thm list -> claset
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    55
  val addSIs            : claset * thm list -> claset
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    56
  val delrules          : claset * thm list -> claset
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    57
  val addSWrapper       : claset * (string * wrapper) -> claset
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    58
  val delSWrapper       : claset *  string            -> claset
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    59
  val addWrapper        : claset * (string * wrapper) -> claset
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    60
  val delWrapper        : claset *  string            -> claset
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    61
  val addSbefore        : claset * (string * (int -> tactic)) -> claset
11181
d04f57b91166 renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents: 11168
diff changeset
    62
  val addSafter         : claset * (string * (int -> tactic)) -> claset
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    63
  val addbefore         : claset * (string * (int -> tactic)) -> claset
11181
d04f57b91166 renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents: 11168
diff changeset
    64
  val addafter          : claset * (string * (int -> tactic)) -> claset
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
    65
  val addD2             : claset * (string * thm) -> claset
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
    66
  val addE2             : claset * (string * thm) -> claset
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
    67
  val addSD2            : claset * (string * thm) -> claset
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
    68
  val addSE2            : claset * (string * thm) -> claset
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    69
  val appSWrappers      : claset -> wrapper
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    70
  val appWrappers       : claset -> wrapper
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
    71
17880
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
    72
  val change_claset: (claset -> claset) -> unit
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    73
  val claset_of: theory -> claset
17880
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
    74
  val claset: unit -> claset
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    75
  val CLASET: (claset -> tactic) -> tactic
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    76
  val CLASET': (claset -> 'a -> tactic) -> 'a -> tactic
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
    77
  val local_claset_of   : Proof.context -> claset
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    78
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    79
  val fast_tac          : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    80
  val slow_tac          : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    81
  val weight_ASTAR      : int ref
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    82
  val astar_tac         : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    83
  val slow_astar_tac    : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    84
  val best_tac          : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    85
  val first_best_tac    : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    86
  val slow_best_tac     : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    87
  val depth_tac         : claset -> int -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    88
  val deepen_tac        : claset -> int -> int -> tactic
1587
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
    89
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    90
  val contr_tac         : int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    91
  val dup_elim          : thm -> thm
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    92
  val dup_intr          : thm -> thm
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    93
  val dup_step_tac      : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    94
  val eq_mp_tac         : int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    95
  val haz_step_tac      : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    96
  val joinrules         : thm list * thm list -> (bool * thm) list
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    97
  val mp_tac            : int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    98
  val safe_tac          : claset -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
    99
  val safe_steps_tac    : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   100
  val safe_step_tac     : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   101
  val clarify_tac       : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   102
  val clarify_step_tac  : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   103
  val step_tac          : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   104
  val slow_step_tac     : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   105
  val swapify           : thm list -> thm list
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   106
  val swap_res_tac      : thm list -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   107
  val inst_step_tac     : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   108
  val inst0_step_tac    : claset -> int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   109
  val instp_step_tac    : claset -> int -> tactic
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   110
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   111
  val AddDs             : thm list -> unit
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   112
  val AddEs             : thm list -> unit
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   113
  val AddIs             : thm list -> unit
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   114
  val AddSDs            : thm list -> unit
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   115
  val AddSEs            : thm list -> unit
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   116
  val AddSIs            : thm list -> unit
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   117
  val Delrules          : thm list -> unit
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   118
  val Safe_tac          : tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   119
  val Safe_step_tac     : int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   120
  val Clarify_tac       : int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   121
  val Clarify_step_tac  : int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   122
  val Step_tac          : int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   123
  val Fast_tac          : int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   124
  val Best_tac          : int -> tactic
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   125
  val Slow_tac          : int -> tactic
2066
b9063086ef56 Introduction of Slow_tac and Slow_best_tac
paulson
parents: 1938
diff changeset
   126
  val Slow_best_tac     : int -> tactic
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   127
  val Deepen_tac        : int -> int -> tactic
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   128
end;
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   129
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   130
signature CLASSICAL =
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   131
sig
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   132
  include BASIC_CLASSICAL
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   133
  val classical_rule: thm -> thm
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   134
  val add_context_safe_wrapper: string * (Proof.context -> wrapper) -> theory -> theory
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   135
  val del_context_safe_wrapper: string -> theory -> theory
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   136
  val add_context_unsafe_wrapper: string * (Proof.context -> wrapper) -> theory -> theory
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   137
  val del_context_unsafe_wrapper: string -> theory -> theory
17880
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
   138
  val get_claset: theory -> claset
26497
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   139
  val map_claset: (claset -> claset) -> theory -> theory
24021
491c68f40bc4 added get_cs/map_cs;
wenzelm
parents: 23594
diff changeset
   140
  val get_cs: Context.generic -> claset
491c68f40bc4 added get_cs/map_cs;
wenzelm
parents: 23594
diff changeset
   141
  val map_cs: (claset -> claset) -> Context.generic -> Context.generic
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   142
  val safe_dest: int option -> attribute
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   143
  val safe_elim: int option -> attribute
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   144
  val safe_intro: int option -> attribute
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   145
  val haz_dest: int option -> attribute
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   146
  val haz_elim: int option -> attribute
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   147
  val haz_intro: int option -> attribute
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   148
  val rule_del: attribute
7272
d20f51e43909 Method.modifier;
wenzelm
parents: 7230
diff changeset
   149
  val cla_modifiers: (Args.T list -> (Method.modifier * Args.T list)) list
7559
1d2c099e98f7 setup for refined facts handling;
wenzelm
parents: 7425
diff changeset
   150
  val cla_meth: (claset -> tactic) -> thm list -> Proof.context -> Proof.method
1d2c099e98f7 setup for refined facts handling;
wenzelm
parents: 7425
diff changeset
   151
  val cla_meth': (claset -> int -> tactic) -> thm list -> Proof.context -> Proof.method
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15574
diff changeset
   152
  val cla_method: (claset -> tactic) -> Method.src -> Proof.context -> Proof.method
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15574
diff changeset
   153
  val cla_method': (claset -> int -> tactic) -> Method.src -> Proof.context -> Proof.method
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18691
diff changeset
   154
  val setup: theory -> theory
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   155
end;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   156
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   157
5927
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
   158
functor ClassicalFun(Data: CLASSICAL_DATA): CLASSICAL =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   159
struct
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   160
7354
358b1c5391f0 proper setup of GlobalClaset data;
wenzelm
parents: 7329
diff changeset
   161
local open Data in
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   162
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   163
(** classical elimination rules **)
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   164
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   165
(*
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   166
Classical reasoning requires stronger elimination rules.  For
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   167
instance, make_elim of Pure transforms the HOL rule injD into
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   168
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   169
    [| inj f; f x = f y; x = y ==> PROP W |] ==> PROP W
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   170
26938
64e850c3da9e tuned comments;
wenzelm
parents: 26928
diff changeset
   171
Such rules can cause fast_tac to fail and blast_tac to report "PROOF
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   172
FAILED"; classical_rule will strenthen this to
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   173
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   174
    [| inj f; ~ W ==> f x = f y; x = y ==> W |] ==> W
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   175
*)
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   176
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   177
fun classical_rule rule =
19257
4463aee061bc ObjectLogic.is_elim;
wenzelm
parents: 19110
diff changeset
   178
  if ObjectLogic.is_elim rule then
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   179
    let
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   180
      val rule' = rule RS classical;
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   181
      val concl' = Thm.concl_of rule';
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   182
      fun redundant_hyp goal =
19257
4463aee061bc ObjectLogic.is_elim;
wenzelm
parents: 19110
diff changeset
   183
        concl' aconv Logic.strip_assums_concl goal orelse
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   184
          (case Logic.strip_assums_hyp goal of
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   185
            hyp :: hyps => exists (fn t => t aconv hyp) hyps
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   186
          | _ => false);
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   187
      val rule'' =
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   188
        rule' |> ALLGOALS (SUBGOAL (fn (goal, i) =>
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   189
          if i = 1 orelse redundant_hyp goal
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   190
          then Tactic.etac thin_rl i
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   191
          else all_tac))
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   192
        |> Seq.hd
21963
416a5338d2bb removed obsolete name_hint handling;
wenzelm
parents: 21689
diff changeset
   193
        |> Drule.zero_var_indexes;
22360
26ead7ed4f4b moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
wenzelm
parents: 22095
diff changeset
   194
    in if Thm.equiv_thm (rule, rule'') then rule else rule'' end
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   195
  else rule;
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   196
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   197
(*flatten nested meta connectives in prems*)
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   198
val flat_rule = Conv.fconv_rule (Conv.prems_conv ~1 ObjectLogic.atomize_prems);
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   199
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   200
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   201
(*** Useful tactics for classical reasoning ***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   202
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   203
(*Prove goal that assumes both P and ~P.
4392
ea41d9c1b0ef More deterministic (?) contr_tac
paulson
parents: 4380
diff changeset
   204
  No backtracking if it finds an equal assumption.  Perhaps should call
ea41d9c1b0ef More deterministic (?) contr_tac
paulson
parents: 4380
diff changeset
   205
  ematch_tac instead of eresolve_tac, but then cannot prove ZF/cantor.*)
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   206
val contr_tac = eresolve_tac [not_elim]  THEN'
4392
ea41d9c1b0ef More deterministic (?) contr_tac
paulson
parents: 4380
diff changeset
   207
                (eq_assume_tac ORELSE' assume_tac);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   208
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   209
(*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
   210
  Could do the same thing for P<->Q and P... *)
26412
0918f5c0bbca pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents: 24867
diff changeset
   211
fun mp_tac i = eresolve_tac [not_elim, Data.imp_elim] i  THEN  assume_tac i;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   212
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   213
(*Like mp_tac but instantiates no variables*)
26412
0918f5c0bbca pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents: 24867
diff changeset
   214
fun eq_mp_tac i = ematch_tac [not_elim, Data.imp_elim] i  THEN  eq_assume_tac i;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   215
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   216
(*Creates rules to eliminate ~A, from rules to introduce A*)
26412
0918f5c0bbca pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents: 24867
diff changeset
   217
fun swapify intrs = intrs RLN (2, [Data.swap]);
0918f5c0bbca pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents: 24867
diff changeset
   218
fun swapped x = Attrib.no_args (fn (x, th) => (x, th RSN (2, Data.swap))) x;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   219
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   220
(*Uses introduction rules in the normal way, or on negated assumptions,
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   221
  trying rules in order. *)
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   222
fun swap_res_tac rls =
26412
0918f5c0bbca pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents: 24867
diff changeset
   223
    let fun addrl (rl,brls) = (false, rl) :: (true, rl RSN (2, Data.swap)) :: brls
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   224
    in  assume_tac      ORELSE'
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   225
        contr_tac       ORELSE'
30240
blanchet
parents: 29267
diff changeset
   226
        biresolve_tac (List.foldr addrl [] rls)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   227
    end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   228
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   229
(*Duplication of hazardous rules, for complete provers*)
2689
6d3d893453de dup_intr & dup_elim no longer call standard -- this
paulson
parents: 2630
diff changeset
   230
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
   231
6967
a3c163ed1e04 dup_elim: use try to handle general exn;
wenzelm
parents: 6955
diff changeset
   232
fun dup_elim th =
13525
cafd1f98d658 dup_elim: improved error reporting;
wenzelm
parents: 13105
diff changeset
   233
    rule_by_tactic (TRYALL (etac revcut_rl))
18557
60a0f9caa0a2 Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents: 18534
diff changeset
   234
      ((th RSN (2, revcut_rl)) |> assumption 2 |> Seq.hd);
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   235
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   236
(**** Classical rule sets ****)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   237
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   238
datatype claset =
12401
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   239
  CS of {safeIs         : thm list,                (*safe introduction rules*)
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   240
         safeEs         : thm list,                (*safe elimination rules*)
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   241
         hazIs          : thm list,                (*unsafe introduction rules*)
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   242
         hazEs          : thm list,                (*unsafe elimination rules*)
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   243
         swrappers      : (string * wrapper) list, (*for transforming safe_step_tac*)
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   244
         uwrappers      : (string * wrapper) list, (*for transforming step_tac*)
12401
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   245
         safe0_netpair  : netpair,                 (*nets for trivial cases*)
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   246
         safep_netpair  : netpair,                 (*nets for >0 subgoals*)
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   247
         haz_netpair    : netpair,                 (*nets for unsafe rules*)
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   248
         dup_netpair    : netpair,                 (*nets for duplication*)
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   249
         xtra_netpair   : ContextRules.netpair};   (*nets for extra rules*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   250
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   251
(*Desired invariants are
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   252
        safe0_netpair = build safe0_brls,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   253
        safep_netpair = build safep_brls,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   254
        haz_netpair = build (joinrules(hazIs, hazEs)),
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   255
        dup_netpair = build (joinrules(map dup_intr hazIs,
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   256
                                       map dup_elim hazEs))
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   257
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   258
where build = build_netpair(Net.empty,Net.empty),
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   259
      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
   260
      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
   261
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
   262
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
   263
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   264
6502
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   265
val empty_netpair = (Net.empty, Net.empty);
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   266
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   267
val empty_cs =
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   268
  CS{safeIs     = [],
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   269
     safeEs     = [],
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   270
     hazIs      = [],
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   271
     hazEs      = [],
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   272
     swrappers  = [],
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   273
     uwrappers  = [],
6502
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   274
     safe0_netpair = empty_netpair,
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   275
     safep_netpair = empty_netpair,
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   276
     haz_netpair   = empty_netpair,
6955
9e2d97ef55d2 type claset: added extra I/E rules;
wenzelm
parents: 6556
diff changeset
   277
     dup_netpair   = empty_netpair,
9e2d97ef55d2 type claset: added extra I/E rules;
wenzelm
parents: 6556
diff changeset
   278
     xtra_netpair  = empty_netpair};
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   279
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   280
fun print_cs (CS {safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, ...}) =
3546
de164676a202 improved print_cs;
wenzelm
parents: 3537
diff changeset
   281
  let val pretty_thms = map Display.pretty_thm in
9760
72c0a12ae3bf improved messages;
wenzelm
parents: 9721
diff changeset
   282
    [Pretty.big_list "safe introduction rules (intro!):" (pretty_thms safeIs),
72c0a12ae3bf improved messages;
wenzelm
parents: 9721
diff changeset
   283
      Pretty.big_list "introduction rules (intro):" (pretty_thms hazIs),
72c0a12ae3bf improved messages;
wenzelm
parents: 9721
diff changeset
   284
      Pretty.big_list "safe elimination rules (elim!):" (pretty_thms safeEs),
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   285
      Pretty.big_list "elimination rules (elim):" (pretty_thms hazEs),
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   286
      Pretty.strs ("safe wrappers:" :: map #1 swrappers),
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   287
      Pretty.strs ("unsafe wrappers:" :: map #1 uwrappers)]
8727
71acc2d8991a Pretty.chunks;
wenzelm
parents: 8699
diff changeset
   288
    |> Pretty.chunks |> Pretty.writeln
3546
de164676a202 improved print_cs;
wenzelm
parents: 3537
diff changeset
   289
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   290
4653
d60f76680bf4 renamed rep_claset to rep_cs
oheimb
parents: 4651
diff changeset
   291
fun rep_cs (CS args) = args;
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   292
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   293
fun appSWrappers (CS {swrappers, ...}) = fold snd swrappers;
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   294
fun appWrappers  (CS {uwrappers, ...}) = fold snd uwrappers;
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   295
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   296
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   297
(*** Adding (un)safe introduction or elimination rules.
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   298
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   299
    In case of overlap, new rules are tried BEFORE old ones!!
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   300
***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   301
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   302
(*For use with biresolve_tac.  Combines intro rules with swap to handle negated
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   303
  assumptions.  Pairs elim rules with true. *)
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   304
fun joinrules (intrs, elims) =
18557
60a0f9caa0a2 Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents: 18534
diff changeset
   305
  (map (pair true) (elims @ swapify intrs)) @ map (pair false) intrs;
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   306
12401
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   307
fun joinrules' (intrs, elims) =
18557
60a0f9caa0a2 Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents: 18534
diff changeset
   308
  map (pair true) elims @ map (pair false) intrs;
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   309
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   310
(*Priority: prefer rules with fewest subgoals,
1231
91d2c1bb5803 clarified comment
paulson
parents: 1073
diff changeset
   311
  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
   312
fun tag_brls k [] = []
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   313
  | tag_brls k (brl::brls) =
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   314
      (1000000*subgoals_of_brl brl + k, brl) ::
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   315
      tag_brls (k+1) brls;
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   316
12401
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   317
fun tag_brls' _ _ [] = []
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   318
  | tag_brls' w k (brl::brls) = ((w, k), brl) :: tag_brls' w (k + 1) brls;
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   319
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22846
diff changeset
   320
fun insert_tagged_list rls = fold_rev Tactic.insert_tagged_brl rls;
1073
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
(*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
   323
  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
   324
  new insertions the lowest priority.*)
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   325
fun insert (nI, nE) = insert_tagged_list o (tag_brls (~(2*nI+nE))) o joinrules;
12401
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   326
fun insert' w (nI, nE) = insert_tagged_list o tag_brls' w (~(nI + nE)) o joinrules';
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   327
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22846
diff changeset
   328
fun delete_tagged_list rls = fold_rev Tactic.delete_tagged_brl rls;
12362
57cd572103c4 made SML/NJ happy;
wenzelm
parents: 12311
diff changeset
   329
fun delete x = delete_tagged_list (joinrules x);
12401
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   330
fun delete' x = delete_tagged_list (joinrules' x);
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   331
22360
26ead7ed4f4b moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
wenzelm
parents: 22095
diff changeset
   332
val mem_thm = member Thm.eq_thm_prop
26ead7ed4f4b moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
wenzelm
parents: 22095
diff changeset
   333
and rem_thm = remove Thm.eq_thm_prop;
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   334
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   335
(*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
   336
  is still allowed.*)
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   337
fun warn_dup th (CS{safeIs, safeEs, hazIs, hazEs, ...}) =
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   338
       if mem_thm safeIs th then
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26497
diff changeset
   339
         warning ("Rule already declared as safe introduction (intro!)\n" ^ Display.string_of_thm th)
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   340
  else if mem_thm safeEs th then
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26497
diff changeset
   341
         warning ("Rule already declared as safe elimination (elim!)\n" ^ Display.string_of_thm th)
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   342
  else if mem_thm hazIs th then
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26497
diff changeset
   343
         warning ("Rule already declared as introduction (intro)\n" ^ Display.string_of_thm th)
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   344
  else if mem_thm hazEs th then
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26497
diff changeset
   345
         warning ("Rule already declared as elimination (elim)\n" ^ Display.string_of_thm th)
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   346
  else ();
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   347
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   348
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   349
(*** Safe rules ***)
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   350
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   351
fun addSI w th
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   352
  (cs as CS {safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers,
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   353
             safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) =
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   354
  if mem_thm safeIs th then
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26497
diff changeset
   355
         (warning ("Ignoring duplicate safe introduction (intro!)\n" ^ Display.string_of_thm th);
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   356
          cs)
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   357
  else
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   358
  let val th' = flat_rule th
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   359
      val (safe0_rls, safep_rls) = (*0 subgoals vs 1 or more*)
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   360
          List.partition Thm.no_prems [th']
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   361
      val nI = length safeIs + 1
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   362
      and nE = length safeEs
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   363
  in warn_dup th cs;
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   364
     CS{safeIs  = th::safeIs,
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   365
        safe0_netpair = insert (nI,nE) (safe0_rls, []) safe0_netpair,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   366
        safep_netpair = insert (nI,nE) (safep_rls, []) safep_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   367
        safeEs  = safeEs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   368
        hazIs   = hazIs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   369
        hazEs   = hazEs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   370
        swrappers    = swrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   371
        uwrappers    = uwrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   372
        haz_netpair  = haz_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   373
        dup_netpair  = dup_netpair,
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   374
        xtra_netpair = insert' (the_default 0 w) (nI,nE) ([th], []) xtra_netpair}
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   375
  end;
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   376
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   377
fun addSE w th
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   378
  (cs as CS {safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers,
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   379
             safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) =
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   380
  if mem_thm safeEs th then
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26497
diff changeset
   381
         (warning ("Ignoring duplicate safe elimination (elim!)\n" ^ Display.string_of_thm th);
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   382
          cs)
18557
60a0f9caa0a2 Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents: 18534
diff changeset
   383
  else if has_fewer_prems 1 th then
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26497
diff changeset
   384
    	error("Ill-formed elimination rule\n" ^ Display.string_of_thm th)
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   385
  else
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   386
  let
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   387
      val th' = classical_rule (flat_rule th)
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   388
      val (safe0_rls, safep_rls) = (*0 subgoals vs 1 or more*)
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   389
          List.partition (fn rl => nprems_of rl=1) [th']
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   390
      val nI = length safeIs
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   391
      and nE = length safeEs + 1
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   392
  in warn_dup th cs;
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   393
     CS{safeEs  = th::safeEs,
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   394
        safe0_netpair = insert (nI,nE) ([], safe0_rls) safe0_netpair,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   395
        safep_netpair = insert (nI,nE) ([], safep_rls) safep_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   396
        safeIs  = safeIs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   397
        hazIs   = hazIs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   398
        hazEs   = hazEs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   399
        swrappers    = swrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   400
        uwrappers    = uwrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   401
        haz_netpair  = haz_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   402
        dup_netpair  = dup_netpair,
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   403
        xtra_netpair = insert' (the_default 0 w) (nI,nE) ([], [th]) xtra_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
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   406
fun cs addSIs ths = fold_rev (addSI NONE) ths cs;
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   407
fun cs addSEs ths = fold_rev (addSE NONE) ths cs;
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   408
21689
58abd6d8abd1 Removal of theorem tagging, which the ATP linkup no longer requires,
paulson
parents: 21687
diff changeset
   409
fun make_elim th =
18557
60a0f9caa0a2 Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents: 18534
diff changeset
   410
    if has_fewer_prems 1 th then
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26497
diff changeset
   411
    	error("Ill-formed destruction rule\n" ^ Display.string_of_thm th)
21689
58abd6d8abd1 Removal of theorem tagging, which the ATP linkup no longer requires,
paulson
parents: 21687
diff changeset
   412
    else Tactic.make_elim th;
17084
fb0a80aef0be classical rules must have names for ATP integration
paulson
parents: 17057
diff changeset
   413
21689
58abd6d8abd1 Removal of theorem tagging, which the ATP linkup no longer requires,
paulson
parents: 21687
diff changeset
   414
fun cs addSDs ths = cs addSEs (map make_elim ths);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   415
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   416
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   417
(*** Hazardous (unsafe) rules ***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   418
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   419
fun addI w th
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   420
  (cs as CS {safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers,
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   421
             safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) =
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   422
  if mem_thm hazIs th then
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26497
diff changeset
   423
         (warning ("Ignoring duplicate introduction (intro)\n" ^ Display.string_of_thm th);
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   424
          cs)
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   425
  else
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   426
  let val th' = flat_rule th
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   427
      val nI = length hazIs + 1
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   428
      and nE = length hazEs
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   429
  in warn_dup th cs;
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   430
     CS{hazIs   = th::hazIs,
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   431
        haz_netpair = insert (nI,nE) ([th'], []) haz_netpair,
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   432
        dup_netpair = insert (nI,nE) (map dup_intr [th'], []) dup_netpair,
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   433
        safeIs  = safeIs,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   434
        safeEs  = safeEs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   435
        hazEs   = hazEs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   436
        swrappers     = swrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   437
        uwrappers     = uwrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   438
        safe0_netpair = safe0_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   439
        safep_netpair = safep_netpair,
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   440
        xtra_netpair = insert' (the_default 1 w) (nI,nE) ([th], []) xtra_netpair}
18557
60a0f9caa0a2 Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents: 18534
diff changeset
   441
  end
60a0f9caa0a2 Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents: 18534
diff changeset
   442
  handle THM("RSN: no unifiers",_,_) => (*from dup_intr*)
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26497
diff changeset
   443
         error ("Ill-formed introduction rule\n" ^ Display.string_of_thm th);
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   444
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   445
fun addE w th
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   446
  (cs as CS {safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers,
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   447
            safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) =
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   448
  if mem_thm hazEs th then
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26497
diff changeset
   449
         (warning ("Ignoring duplicate elimination (elim)\n" ^ Display.string_of_thm th);
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   450
          cs)
18557
60a0f9caa0a2 Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents: 18534
diff changeset
   451
  else if has_fewer_prems 1 th then
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26497
diff changeset
   452
    	error("Ill-formed elimination rule\n" ^ Display.string_of_thm th)
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   453
  else
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   454
  let
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   455
      val th' = classical_rule (flat_rule th)
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   456
      val nI = length hazIs
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   457
      and nE = length hazEs + 1
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   458
  in warn_dup th cs;
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   459
     CS{hazEs   = th::hazEs,
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   460
        haz_netpair = insert (nI,nE) ([], [th']) haz_netpair,
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   461
        dup_netpair = insert (nI,nE) ([], map dup_elim [th']) dup_netpair,
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   462
        safeIs  = safeIs,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   463
        safeEs  = safeEs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   464
        hazIs   = hazIs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   465
        swrappers     = swrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   466
        uwrappers     = uwrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   467
        safe0_netpair = safe0_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   468
        safep_netpair = safep_netpair,
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   469
        xtra_netpair = insert' (the_default 1 w) (nI,nE) ([], [th]) xtra_netpair}
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   470
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   471
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   472
fun cs addIs ths = fold_rev (addI NONE) ths cs;
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   473
fun cs addEs ths = fold_rev (addE NONE) ths cs;
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   474
21689
58abd6d8abd1 Removal of theorem tagging, which the ATP linkup no longer requires,
paulson
parents: 21687
diff changeset
   475
fun cs addDs ths = cs addEs (map make_elim ths);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   476
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   477
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   478
(*** Deletion of rules
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   479
     Working out what to delete, requires repeating much of the code used
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   480
        to insert.
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   481
***)
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   482
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   483
fun delSI th
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   484
          (cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   485
                    safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) =
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   486
 if mem_thm safeIs th then
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   487
   let val th' = flat_rule th
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   488
       val (safe0_rls, safep_rls) = List.partition Thm.no_prems [th']
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   489
   in CS{safe0_netpair = delete (safe0_rls, []) safe0_netpair,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   490
         safep_netpair = delete (safep_rls, []) safep_netpair,
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   491
         safeIs = rem_thm th safeIs,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   492
         safeEs = safeEs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   493
         hazIs  = hazIs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   494
         hazEs  = hazEs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   495
         swrappers    = swrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   496
         uwrappers    = uwrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   497
         haz_netpair  = haz_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   498
         dup_netpair  = dup_netpair,
12401
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   499
         xtra_netpair = delete' ([th], []) xtra_netpair}
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   500
   end
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   501
 else cs;
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   502
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   503
fun delSE th
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   504
          (cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   505
                    safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) =
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   506
  if mem_thm safeEs th then
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   507
    let
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   508
      val th' = classical_rule (flat_rule th)
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   509
      val (safe0_rls, safep_rls) = List.partition (fn rl => nprems_of rl=1) [th']
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   510
    in CS{safe0_netpair = delete ([], safe0_rls) safe0_netpair,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   511
         safep_netpair = delete ([], safep_rls) safep_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   512
         safeIs = safeIs,
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   513
         safeEs = rem_thm th safeEs,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   514
         hazIs  = hazIs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   515
         hazEs  = hazEs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   516
         swrappers    = swrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   517
         uwrappers    = uwrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   518
         haz_netpair  = haz_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   519
         dup_netpair  = dup_netpair,
12401
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   520
         xtra_netpair = delete' ([], [th]) xtra_netpair}
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   521
    end
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   522
  else cs;
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   523
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   524
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   525
fun delI th
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   526
         (cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   527
                   safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) =
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   528
 if mem_thm hazIs th then
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   529
    let val th' = flat_rule th
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   530
    in CS{haz_netpair = delete ([th'], []) haz_netpair,
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   531
        dup_netpair = delete ([dup_intr th'], []) dup_netpair,
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   532
        safeIs  = safeIs,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   533
        safeEs  = safeEs,
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   534
        hazIs   = rem_thm th hazIs,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   535
        hazEs   = hazEs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   536
        swrappers     = swrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   537
        uwrappers     = uwrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   538
        safe0_netpair = safe0_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   539
        safep_netpair = safep_netpair,
12401
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   540
        xtra_netpair = delete' ([th], []) xtra_netpair}
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   541
    end
18557
60a0f9caa0a2 Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents: 18534
diff changeset
   542
 else cs
60a0f9caa0a2 Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents: 18534
diff changeset
   543
 handle THM("RSN: no unifiers",_,_) => (*from dup_intr*)
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26497
diff changeset
   544
        error ("Ill-formed introduction rule\n" ^ Display.string_of_thm th);
18557
60a0f9caa0a2 Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents: 18534
diff changeset
   545
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   546
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   547
fun delE th
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   548
         (cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   549
                   safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) =
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   550
 if mem_thm hazEs th then
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   551
   let val th' = classical_rule (flat_rule th)
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   552
   in CS{haz_netpair = delete ([], [th']) haz_netpair,
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   553
        dup_netpair = delete ([], [dup_elim th']) dup_netpair,
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   554
        safeIs  = safeIs,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   555
        safeEs  = safeEs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   556
        hazIs   = hazIs,
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   557
        hazEs   = rem_thm th hazEs,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   558
        swrappers     = swrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   559
        uwrappers     = uwrappers,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   560
        safe0_netpair = safe0_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   561
        safep_netpair = safep_netpair,
12401
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   562
        xtra_netpair = delete' ([], [th]) xtra_netpair}
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   563
   end
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   564
 else cs;
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   565
2813
cc4c816dafdc delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents: 2689
diff changeset
   566
(*Delete ALL occurrences of "th" in the claset (perhaps from several lists)*)
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   567
fun delrule th (cs as CS {safeIs, safeEs, hazIs, hazEs, ...}) =
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   568
  let val th' = Tactic.make_elim th in
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   569
    if mem_thm safeIs th orelse mem_thm safeEs th orelse
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   570
      mem_thm hazIs th orelse mem_thm hazEs th orelse
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   571
      mem_thm safeEs th' orelse mem_thm hazEs th'
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   572
    then delSI th (delSE th (delI th (delE th (delSE th' (delE th' cs)))))
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26497
diff changeset
   573
    else (warning ("Undeclared classical rule\n" ^ Display.string_of_thm th); cs)
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   574
  end;
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   575
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   576
fun cs delrules ths = fold delrule ths cs;
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   577
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   578
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   579
(*** Modifying the wrapper tacticals ***)
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   580
fun map_swrappers f
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   581
  (CS {safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers,
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   582
    safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) =
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   583
  CS {safeIs = safeIs, safeEs = safeEs, hazIs = hazIs, hazEs = hazEs,
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   584
    swrappers = f swrappers, uwrappers = uwrappers,
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   585
    safe0_netpair = safe0_netpair, safep_netpair = safep_netpair,
6955
9e2d97ef55d2 type claset: added extra I/E rules;
wenzelm
parents: 6556
diff changeset
   586
    haz_netpair = haz_netpair, dup_netpair = dup_netpair, xtra_netpair = xtra_netpair};
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   587
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   588
fun map_uwrappers f
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   589
  (CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers,
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   590
    safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) =
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   591
  CS {safeIs = safeIs, safeEs = safeEs, hazIs = hazIs, hazEs = hazEs,
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   592
    swrappers = swrappers, uwrappers = f uwrappers,
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   593
    safe0_netpair = safe0_netpair, safep_netpair = safep_netpair,
6955
9e2d97ef55d2 type claset: added extra I/E rules;
wenzelm
parents: 6556
diff changeset
   594
    haz_netpair = haz_netpair, dup_netpair = dup_netpair, xtra_netpair = xtra_netpair};
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   595
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   596
fun update_warn msg (p as (key : string, _)) xs =
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   597
  (if AList.defined (op =) xs key then warning msg else ();
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   598
    AList.update (op =) p xs);
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   599
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   600
fun delete_warn msg (key : string) xs =
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   601
  if AList.defined (op =) xs key then AList.delete (op =) key xs
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   602
    else (warning msg; xs);
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   603
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   604
(*Add/replace a safe wrapper*)
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   605
fun cs addSWrapper new_swrapper = map_swrappers
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   606
  (update_warn ("Overwriting safe wrapper " ^ fst new_swrapper) new_swrapper) cs;
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   607
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   608
(*Add/replace an unsafe wrapper*)
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   609
fun cs addWrapper new_uwrapper = map_uwrappers
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   610
  (update_warn ("Overwriting unsafe wrapper " ^ fst new_uwrapper) new_uwrapper) cs;
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   611
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   612
(*Remove a safe wrapper*)
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   613
fun cs delSWrapper name = map_swrappers
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   614
  (delete_warn ("No such safe wrapper in claset: " ^ name) name) cs;
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   615
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   616
(*Remove an unsafe wrapper*)
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   617
fun cs delWrapper name = map_uwrappers
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   618
  (delete_warn ("No such unsafe wrapper in claset: " ^ name) name) cs;
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   619
11168
b964accc9307 corrected comments on addbefore and addSbefore
oheimb
parents: 10821
diff changeset
   620
(* compose a safe tactic alternatively before/after safe_step_tac *)
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   621
fun cs addSbefore  (name,    tac1) =
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   622
    cs addSWrapper (name, fn tac2 => tac1 ORELSE' tac2);
11181
d04f57b91166 renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents: 11168
diff changeset
   623
fun cs addSafter   (name,    tac2) =
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   624
    cs addSWrapper (name, fn tac1 => tac1 ORELSE' tac2);
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   625
11168
b964accc9307 corrected comments on addbefore and addSbefore
oheimb
parents: 10821
diff changeset
   626
(*compose a tactic alternatively before/after the step tactic *)
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   627
fun cs addbefore   (name,    tac1) =
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   628
    cs addWrapper  (name, fn tac2 => tac1 APPEND' tac2);
11181
d04f57b91166 renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents: 11168
diff changeset
   629
fun cs addafter    (name,    tac2) =
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   630
    cs addWrapper  (name, fn tac1 => tac1 APPEND' tac2);
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   631
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   632
fun cs addD2     (name, thm) =
11181
d04f57b91166 renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents: 11168
diff changeset
   633
    cs addafter  (name, datac thm 1);
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   634
fun cs addE2     (name, thm) =
11181
d04f57b91166 renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents: 11168
diff changeset
   635
    cs addafter  (name, eatac thm 1);
d04f57b91166 renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents: 11168
diff changeset
   636
fun cs addSD2    (name, thm) =
d04f57b91166 renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents: 11168
diff changeset
   637
    cs addSafter (name, dmatch_tac [thm] THEN' eq_assume_tac);
d04f57b91166 renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents: 11168
diff changeset
   638
fun cs addSE2    (name, thm) =
d04f57b91166 renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents: 11168
diff changeset
   639
    cs addSafter (name, ematch_tac [thm] THEN' eq_assume_tac);
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   640
1711
c06d01f75764 Provides merge_cs to support default clasets
paulson
parents: 1587
diff changeset
   641
(*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
   642
  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
   643
  treatment of priority might get muddled up.*)
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   644
fun merge_cs (cs as CS {safeIs, safeEs, hazIs, hazEs, ...},
24358
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   645
    cs' as CS {safeIs = safeIs2, safeEs = safeEs2, hazIs = hazIs2, hazEs = hazEs2,
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   646
      swrappers, uwrappers, ...}) =
24358
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   647
  if pointer_eq (cs, cs') then cs
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   648
  else
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   649
    let
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   650
      val safeIs' = fold rem_thm safeIs safeIs2;
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   651
      val safeEs' = fold rem_thm safeEs safeEs2;
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   652
      val hazIs' = fold rem_thm hazIs hazIs2;
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   653
      val hazEs' = fold rem_thm hazEs hazEs2;
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   654
      val cs1   = cs addSIs safeIs'
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   655
                     addSEs safeEs'
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   656
                     addIs  hazIs'
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   657
                     addEs  hazEs';
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   658
      val cs2 = map_swrappers
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   659
        (fn ws => AList.merge (op =) (K true) (ws, swrappers)) cs1;
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   660
      val cs3 = map_uwrappers
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   661
        (fn ws => AList.merge (op =) (K true) (ws, uwrappers)) cs2;
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   662
    in cs3 end;
1711
c06d01f75764 Provides merge_cs to support default clasets
paulson
parents: 1587
diff changeset
   663
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   664
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   665
(**** Simple tactics for theorem proving ****)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   666
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   667
(*Attack subgoals using safe inferences -- matching, not resolution*)
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   668
fun safe_step_tac (cs as CS{safe0_netpair,safep_netpair,...}) =
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   669
  appSWrappers cs (FIRST' [
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   670
        eq_assume_tac,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   671
        eq_mp_tac,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   672
        bimatch_from_nets_tac safe0_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   673
        FIRST' hyp_subst_tacs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   674
        bimatch_from_nets_tac safep_netpair]);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   675
5757
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   676
(*Repeatedly attack a subgoal using safe inferences -- it's deterministic!*)
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   677
fun safe_steps_tac cs = REPEAT_DETERM1 o
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   678
        (fn i => COND (has_fewer_prems i) no_tac (safe_step_tac cs i));
5757
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   679
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   680
(*Repeatedly attack subgoals using safe inferences -- it's deterministic!*)
5757
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   681
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
   682
3705
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
(*** 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
   685
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   686
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
   687
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   688
(*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
   689
  create precisely n subgoals.*)
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   690
fun n_bimatch_from_nets_tac n =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   691
    biresolution_from_nets_tac (Tactic.orderlist o List.filter (nsubgoalsP n)) true;
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   692
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   693
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
   694
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
   695
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   696
(*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
   697
fun bimatch2_tac netpair i =
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   698
    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
   699
    (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
   700
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   701
(*Attack subgoals using safe inferences -- matching, not resolution*)
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   702
fun clarify_step_tac (cs as CS{safe0_netpair,safep_netpair,...}) =
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4646
diff changeset
   703
  appSWrappers cs (FIRST' [
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   704
        eq_assume_contr_tac,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   705
        bimatch_from_nets_tac safe0_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   706
        FIRST' hyp_subst_tacs,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   707
        n_bimatch_from_nets_tac 1 safep_netpair,
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   708
        bimatch2_tac safep_netpair]);
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   709
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   710
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
   711
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   712
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   713
(*** 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
   714
4066
7b508ac609f7 Fixed comments
paulson
parents: 3727
diff changeset
   715
(*Backtracking is allowed among the various these unsafe ways of
7b508ac609f7 Fixed comments
paulson
parents: 3727
diff changeset
   716
  proving a subgoal.  *)
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   717
fun inst0_step_tac (CS{safe0_netpair,safep_netpair,...}) =
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   718
  assume_tac                      APPEND'
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   719
  contr_tac                       APPEND'
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   720
  biresolve_from_nets_tac safe0_netpair;
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   721
4066
7b508ac609f7 Fixed comments
paulson
parents: 3727
diff changeset
   722
(*These unsafe steps could generate more subgoals.*)
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   723
fun instp_step_tac (CS{safep_netpair,...}) =
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   724
  biresolve_from_nets_tac safep_netpair;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   725
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   726
(*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
   727
fun inst_step_tac cs = inst0_step_tac cs APPEND' instp_step_tac cs;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   728
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   729
fun haz_step_tac (CS{haz_netpair,...}) =
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   730
  biresolve_from_nets_tac haz_netpair;
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   731
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   732
(*Single step for the prover.  FAILS unless it makes progress. *)
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   733
fun step_tac cs i = safe_tac cs ORELSE appWrappers cs
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   734
        (inst_step_tac cs ORELSE' haz_step_tac cs) i;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   735
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   736
(*Using a "safe" rule to instantiate variables is unsafe.  This tactic
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   737
  allows backtracking from "safe" rules to "unsafe" rules here.*)
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   738
fun slow_step_tac cs i = safe_tac cs ORELSE appWrappers cs
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   739
        (inst_step_tac cs APPEND' haz_step_tac cs) i;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   740
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   741
(**** The following tactics all fail unless they solve one goal ****)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   742
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   743
(*Dumb but fast*)
10382
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   744
fun fast_tac cs =
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   745
  ObjectLogic.atomize_prems_tac THEN' SELECT_GOAL (DEPTH_SOLVE (step_tac cs 1));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   746
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   747
(*Slower but smarter than fast_tac*)
10382
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   748
fun best_tac cs =
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   749
  ObjectLogic.atomize_prems_tac THEN'
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   750
  SELECT_GOAL (BEST_FIRST (has_fewer_prems 1, sizef) (step_tac cs 1));
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   751
9402
480a1b40fdd6 strengthened force_tac by using new first_best_tac
oheimb
parents: 9184
diff changeset
   752
(*even a bit smarter than best_tac*)
10382
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   753
fun first_best_tac cs =
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   754
  ObjectLogic.atomize_prems_tac THEN'
9402
480a1b40fdd6 strengthened force_tac by using new first_best_tac
oheimb
parents: 9184
diff changeset
   755
  SELECT_GOAL (BEST_FIRST (has_fewer_prems 1, sizef) (FIRSTGOAL (step_tac cs)));
480a1b40fdd6 strengthened force_tac by using new first_best_tac
oheimb
parents: 9184
diff changeset
   756
10382
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   757
fun slow_tac cs =
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   758
  ObjectLogic.atomize_prems_tac THEN'
10382
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   759
  SELECT_GOAL (DEPTH_SOLVE (slow_step_tac cs 1));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   760
10382
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   761
fun slow_best_tac cs =
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   762
  ObjectLogic.atomize_prems_tac THEN'
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   763
  SELECT_GOAL (BEST_FIRST (has_fewer_prems 1, sizef) (slow_step_tac cs 1));
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   764
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   765
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   766
(***ASTAR with weight weight_ASTAR, by Norbert Voelker*)
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   767
val weight_ASTAR = ref 5;
1587
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   768
10382
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   769
fun astar_tac cs =
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   770
  ObjectLogic.atomize_prems_tac THEN'
10382
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   771
  SELECT_GOAL
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   772
    (ASTAR (has_fewer_prems 1, fn lev => fn thm => size_of_thm thm + !weight_ASTAR * lev)
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   773
      (step_tac cs 1));
1587
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   774
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   775
fun slow_astar_tac cs =
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   776
  ObjectLogic.atomize_prems_tac THEN'
10382
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   777
  SELECT_GOAL
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   778
    (ASTAR (has_fewer_prems 1, fn lev => fn thm => size_of_thm thm + !weight_ASTAR * lev)
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   779
      (slow_step_tac cs 1));
1587
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   780
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   781
(**** 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
   782
  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
   783
  easy theorems faster, but loses completeness -- and many of the harder
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   784
  theorems such as 43. ****)
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   785
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   786
(*Non-deterministic!  Could always expand the first unsafe connective.
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   787
  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
   788
  greater search depth required.*)
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   789
fun dup_step_tac (cs as (CS{dup_netpair,...})) =
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   790
  biresolve_from_nets_tac dup_netpair;
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   791
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   792
(*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
   793
local
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   794
fun slow_step_tac' cs = appWrappers cs
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   795
        (instp_step_tac cs APPEND' dup_step_tac cs);
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   796
in fun depth_tac cs m i state = SELECT_GOAL
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   797
   (safe_steps_tac cs 1 THEN_ELSE
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   798
        (DEPTH_SOLVE (depth_tac cs m 1),
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   799
         inst0_step_tac cs 1 APPEND COND (K (m=0)) no_tac
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   800
                (slow_step_tac' cs 1 THEN DEPTH_SOLVE (depth_tac cs (m-1) 1))
5757
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   801
        )) i state;
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   802
end;
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   803
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   804
(*Search, with depth bound m.
2173
08c68550460b Added a comment
paulson
parents: 2066
diff changeset
   805
  This is the "entry point", which does safe inferences first.*)
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   806
fun safe_depth_tac cs m =
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   807
  SUBGOAL
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   808
    (fn (prem,i) =>
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   809
      let val deti =
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   810
          (*No Vars in the goal?  No need to backtrack between goals.*)
29267
8615b4f54047 use exists_subterm directly;
wenzelm
parents: 26938
diff changeset
   811
          if exists_subterm (fn Var _ => true | _ => false) prem then DETERM else I
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   812
      in  SELECT_GOAL (TRY (safe_tac cs) THEN
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   813
                       DEPTH_SOLVE (deti (depth_tac cs m 1))) i
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   814
      end);
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   815
2868
17a23a62f82a New DEEPEN allows giving an upper bound for deepen_tac
paulson
parents: 2813
diff changeset
   816
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
   817
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   818
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   819
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   820
(** context dependent claset components **)
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   821
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   822
datatype context_cs = ContextCS of
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   823
 {swrappers: (string * (Proof.context -> wrapper)) list,
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   824
  uwrappers: (string * (Proof.context -> wrapper)) list};
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   825
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   826
fun context_cs ctxt cs (ContextCS {swrappers, uwrappers}) =
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   827
  let
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   828
    fun add_wrapper add (name, f) claset = add (claset, (name, f ctxt));
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   829
  in
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   830
    cs
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   831
    |> fold_rev (add_wrapper (op addSWrapper)) swrappers
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   832
    |> fold_rev (add_wrapper (op addWrapper)) uwrappers
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   833
  end;
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   834
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   835
fun make_context_cs (swrappers, uwrappers) =
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   836
  ContextCS {swrappers = swrappers, uwrappers = uwrappers};
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   837
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   838
val empty_context_cs = make_context_cs ([], []);
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   839
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   840
fun merge_context_cs (ctxt_cs1, ctxt_cs2) =
24358
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   841
  if pointer_eq (ctxt_cs1, ctxt_cs2) then ctxt_cs1
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   842
  else
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   843
    let
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   844
      val ContextCS {swrappers = swrappers1, uwrappers = uwrappers1} = ctxt_cs1;
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   845
      val ContextCS {swrappers = swrappers2, uwrappers = uwrappers2} = ctxt_cs2;
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   846
      val swrappers' = AList.merge (op =) (K true) (swrappers1, swrappers2);
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   847
      val uwrappers' = AList.merge (op =) (K true) (uwrappers1, uwrappers2);
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   848
    in make_context_cs (swrappers', uwrappers') end;
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   849
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   850
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   851
17880
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
   852
(** claset data **)
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   853
24021
491c68f40bc4 added get_cs/map_cs;
wenzelm
parents: 23594
diff changeset
   854
(* global clasets *)
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   855
16424
18a07ad8fea8 accomodate change of TheoryDataFun;
wenzelm
parents: 15735
diff changeset
   856
structure GlobalClaset = TheoryDataFun
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22674
diff changeset
   857
(
26497
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   858
  type T = claset * context_cs;
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   859
  val empty = (empty_cs, empty_context_cs);
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   860
  val copy = I;
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   861
  val extend = I;
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   862
  fun merge _ ((cs1, ctxt_cs1), (cs2, ctxt_cs2)) =
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   863
    (merge_cs (cs1, cs2), merge_context_cs (ctxt_cs1, ctxt_cs2));
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22674
diff changeset
   864
);
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   865
26497
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   866
val get_claset = #1 o GlobalClaset.get;
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   867
val map_claset = GlobalClaset.map o apfst;
17880
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
   868
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   869
val get_context_cs = #2 o GlobalClaset.get o ProofContext.theory_of;
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   870
fun map_context_cs f = GlobalClaset.map (apsnd
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   871
  (fn ContextCS {swrappers, uwrappers} => make_context_cs (f (swrappers, uwrappers))));
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   872
26497
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   873
fun change_claset f = Context.>> (Context.map_theory (map_claset f));
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   874
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   875
fun claset_of thy =
26497
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   876
  let val (cs, ctxt_cs) = GlobalClaset.get thy
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   877
  in context_cs (ProofContext.init thy) cs (ctxt_cs) end;
26425
6561665c5cb1 renamed ML_Context.the_context to ML_Context.the_global_context;
wenzelm
parents: 26412
diff changeset
   878
val claset = claset_of o ML_Context.the_global_context;
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   879
17880
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
   880
fun CLASET tacf st = tacf (claset_of (Thm.theory_of_thm st)) st;
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
   881
fun CLASET' tacf i st = tacf (claset_of (Thm.theory_of_thm st)) i st;
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
   882
17880
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
   883
fun AddDs args = change_claset (fn cs => cs addDs args);
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
   884
fun AddEs args = change_claset (fn cs => cs addEs args);
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
   885
fun AddIs args = change_claset (fn cs => cs addIs args);
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
   886
fun AddSDs args = change_claset (fn cs => cs addSDs args);
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
   887
fun AddSEs args = change_claset (fn cs => cs addSEs args);
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
   888
fun AddSIs args = change_claset (fn cs => cs addSIs args);
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
   889
fun Delrules args = change_claset (fn cs => cs delrules args);
3727
ed63c05d7992 Added Safe_tac; all other default claset tactics now dereference "claset"
paulson
parents: 3705
diff changeset
   890
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   891
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   892
(* context dependent components *)
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   893
26497
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   894
fun add_context_safe_wrapper wrapper = map_context_cs (apfst ((AList.update (op =) wrapper)));
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   895
fun del_context_safe_wrapper name = map_context_cs (apfst ((AList.delete (op =) name)));
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   896
26497
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   897
fun add_context_unsafe_wrapper wrapper = map_context_cs (apsnd ((AList.update (op =) wrapper)));
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   898
fun del_context_unsafe_wrapper name = map_context_cs (apsnd ((AList.delete (op =) name)));
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   899
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   900
24021
491c68f40bc4 added get_cs/map_cs;
wenzelm
parents: 23594
diff changeset
   901
(* local clasets *)
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   902
16424
18a07ad8fea8 accomodate change of TheoryDataFun;
wenzelm
parents: 15735
diff changeset
   903
structure LocalClaset = ProofDataFun
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22674
diff changeset
   904
(
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   905
  type T = claset;
17880
4494c023bf2a change_claset(_of): more abtract interface;
wenzelm
parents: 17795
diff changeset
   906
  val init = get_claset;
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22674
diff changeset
   907
);
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   908
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   909
fun local_claset_of ctxt =
26497
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   910
  context_cs ctxt (LocalClaset.get ctxt) (get_context_cs ctxt);
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22674
diff changeset
   911
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   912
24021
491c68f40bc4 added get_cs/map_cs;
wenzelm
parents: 23594
diff changeset
   913
(* generic clasets *)
491c68f40bc4 added get_cs/map_cs;
wenzelm
parents: 23594
diff changeset
   914
26497
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   915
val get_cs = Context.cases claset_of local_claset_of;
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   916
fun map_cs f = Context.mapping (map_claset f) (LocalClaset.map f);
24021
491c68f40bc4 added get_cs/map_cs;
wenzelm
parents: 23594
diff changeset
   917
491c68f40bc4 added get_cs/map_cs;
wenzelm
parents: 23594
diff changeset
   918
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   919
(* attributes *)
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   920
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   921
fun attrib f = Thm.declaration_attribute (fn th =>
26497
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
   922
  Context.mapping (map_claset (f th)) (LocalClaset.map (f th)));
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   923
21689
58abd6d8abd1 Removal of theorem tagging, which the ATP linkup no longer requires,
paulson
parents: 21687
diff changeset
   924
fun safe_dest w = attrib (addSE w o make_elim);
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   925
val safe_elim = attrib o addSE;
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   926
val safe_intro = attrib o addSI;
21689
58abd6d8abd1 Removal of theorem tagging, which the ATP linkup no longer requires,
paulson
parents: 21687
diff changeset
   927
fun haz_dest w = attrib (addE w o make_elim);
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   928
val haz_elim = attrib o addE;
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   929
val haz_intro = attrib o addI;
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   930
val rule_del = attrib delrule o ContextRules.rule_del;
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   931
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   932
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   933
(* tactics referring to the implicit claset *)
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   934
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   935
(*the abstraction over the proof state delays the dereferencing*)
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   936
fun Safe_tac st           = safe_tac (claset()) st;
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   937
fun Safe_step_tac i st    = safe_step_tac (claset()) i st;
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   938
fun Clarify_step_tac i st = clarify_step_tac (claset()) i st;
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   939
fun Clarify_tac i st      = clarify_tac (claset()) i st;
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   940
fun Step_tac i st         = step_tac (claset()) i st;
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   941
fun Fast_tac i st         = fast_tac (claset()) i st;
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   942
fun Best_tac i st         = best_tac (claset()) i st;
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   943
fun Slow_tac i st         = slow_tac (claset()) i st;
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   944
fun Slow_best_tac i st    = slow_best_tac (claset()) i st;
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   945
fun Deepen_tac m          = deepen_tac (claset()) m;
2066
b9063086ef56 Introduction of Slow_tac and Slow_best_tac
paulson
parents: 1938
diff changeset
   946
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   947
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   948
end;
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   949
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   950
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   951
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   952
(** concrete syntax of attributes **)
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   953
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   954
val introN = "intro";
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   955
val elimN = "elim";
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   956
val destN = "dest";
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   957
val ruleN = "rule";
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   958
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   959
val setup_attrs = Attrib.add_attributes
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   960
 [("swapped", swapped, "classical swap of introduction rule"),
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   961
  (destN, ContextRules.add_args safe_dest haz_dest ContextRules.dest_query,
18688
abf0f018b5ec generic attributes;
wenzelm
parents: 18643
diff changeset
   962
    "declaration of Classical destruction rule"),
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   963
  (elimN, ContextRules.add_args safe_elim haz_elim ContextRules.elim_query,
18688
abf0f018b5ec generic attributes;
wenzelm
parents: 18643
diff changeset
   964
    "declaration of Classical elimination rule"),
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   965
  (introN, ContextRules.add_args safe_intro haz_intro ContextRules.intro_query,
18688
abf0f018b5ec generic attributes;
wenzelm
parents: 18643
diff changeset
   966
    "declaration of Classical introduction rule"),
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   967
  (ruleN, Attrib.syntax (Scan.lift Args.del >> K rule_del),
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   968
    "remove declaration of intro/elim/dest rule")];
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   969
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   970
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   971
7230
4ca0d7839ff1 renamed 'single' to 'some_rule';
wenzelm
parents: 7154
diff changeset
   972
(** proof methods **)
4ca0d7839ff1 renamed 'single' to 'some_rule';
wenzelm
parents: 7154
diff changeset
   973
14605
9de4d64eee3b 'instance' and intro_classes now handle general sorts;
wenzelm
parents: 13525
diff changeset
   974
fun METHOD_CLASET tac ctxt =
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   975
  Method.METHOD (tac ctxt (local_claset_of ctxt));
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   976
8098
a7ee88ef2fa5 METHOD_CLASET': refer to *local* claset;
wenzelm
parents: 7559
diff changeset
   977
fun METHOD_CLASET' tac ctxt =
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
   978
  Method.METHOD (HEADGOAL o tac ctxt (local_claset_of ctxt));
7230
4ca0d7839ff1 renamed 'single' to 'some_rule';
wenzelm
parents: 7154
diff changeset
   979
4ca0d7839ff1 renamed 'single' to 'some_rule';
wenzelm
parents: 7154
diff changeset
   980
4ca0d7839ff1 renamed 'single' to 'some_rule';
wenzelm
parents: 7154
diff changeset
   981
local
4ca0d7839ff1 renamed 'single' to 'some_rule';
wenzelm
parents: 7154
diff changeset
   982
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   983
fun some_rule_tac ctxt (CS {xtra_netpair, ...}) facts = SUBGOAL (fn (goal, i) =>
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   984
  let
12401
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   985
    val [rules1, rules2, rules4] = ContextRules.find_rules false facts goal ctxt;
4363432ef0cd added 'swapped' attribute;
wenzelm
parents: 12376
diff changeset
   986
    val rules3 = ContextRules.find_rules_netpair true facts goal xtra_netpair;
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   987
    val rules = rules1 @ rules2 @ rules3 @ rules4;
18223
20830cb4428c Drule.multi_resolves;
wenzelm
parents: 18015
diff changeset
   988
    val ruleq = Drule.multi_resolves facts rules;
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   989
  in
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   990
    Method.trace ctxt rules;
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   991
    fn st => Seq.flat (Seq.map (fn rule => Tactic.rtac rule i st) ruleq)
18834
7e94af77cfce default rule step: norm_hhf_tac;
wenzelm
parents: 18728
diff changeset
   992
  end)
21687
f689f729afab reorganized structure Goal vs. Tactic;
wenzelm
parents: 21646
diff changeset
   993
  THEN_ALL_NEW Goal.norm_hhf_tac;
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   994
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   995
fun rule_tac [] ctxt cs facts = some_rule_tac ctxt cs facts
10394
eef9e422929a tuned method "rule" and "default";
wenzelm
parents: 10382
diff changeset
   996
  | rule_tac rules _ _ facts = Method.rule_tac rules facts;
7281
2f454e1fd372 renamed 'some_rule' to 'rule';
wenzelm
parents: 7272
diff changeset
   997
10382
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   998
fun default_tac rules ctxt cs facts =
14605
9de4d64eee3b 'instance' and intro_classes now handle general sorts;
wenzelm
parents: 13525
diff changeset
   999
  HEADGOAL (rule_tac rules ctxt cs facts) ORELSE
26470
e44d24620515 unfold_locales now part of default tactic
haftmann
parents: 26425
diff changeset
  1000
  Class.default_intro_tac ctxt facts;
10309
a7f961fb62c6 intro_classes by default;
wenzelm
parents: 10185
diff changeset
  1001
7230
4ca0d7839ff1 renamed 'single' to 'some_rule';
wenzelm
parents: 7154
diff changeset
  1002
in
7281
2f454e1fd372 renamed 'some_rule' to 'rule';
wenzelm
parents: 7272
diff changeset
  1003
  val rule = METHOD_CLASET' o rule_tac;
14605
9de4d64eee3b 'instance' and intro_classes now handle general sorts;
wenzelm
parents: 13525
diff changeset
  1004
  val default = METHOD_CLASET o default_tac;
7230
4ca0d7839ff1 renamed 'single' to 'some_rule';
wenzelm
parents: 7154
diff changeset
  1005
end;
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1006
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1007
7230
4ca0d7839ff1 renamed 'single' to 'some_rule';
wenzelm
parents: 7154
diff changeset
  1008
(* contradiction method *)
6502
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
  1009
7425
2089c70f2c6d Method.insert_tac;
wenzelm
parents: 7354
diff changeset
  1010
val contradiction = Method.rule [Data.not_elim, Data.not_elim COMP Drule.swap_prems_rl];
6502
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
  1011
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
  1012
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
  1013
(* automatic methods *)
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1014
5927
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
  1015
val cla_modifiers =
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
  1016
 [Args.$$$ destN -- Args.bang_colon >> K ((I, safe_dest NONE): Method.modifier),
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
  1017
  Args.$$$ destN -- Args.colon >> K (I, haz_dest NONE),
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
  1018
  Args.$$$ elimN -- Args.bang_colon >> K (I, safe_elim NONE),
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
  1019
  Args.$$$ elimN -- Args.colon >> K (I, haz_elim NONE),
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
  1020
  Args.$$$ introN -- Args.bang_colon >> K (I, safe_intro NONE),
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
  1021
  Args.$$$ introN -- Args.colon >> K (I, haz_intro NONE),
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
  1022
  Args.del -- Args.colon >> K (I, rule_del)];
5927
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
  1023
7559
1d2c099e98f7 setup for refined facts handling;
wenzelm
parents: 7425
diff changeset
  1024
fun cla_meth tac prems ctxt = Method.METHOD (fn facts =>
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
  1025
  ALLGOALS (Method.insert_tac (prems @ facts)) THEN tac (local_claset_of ctxt));
7132
5c31d06ead04 eliminated METHOD0 in favour of same_tac;
wenzelm
parents: 7106
diff changeset
  1026
7559
1d2c099e98f7 setup for refined facts handling;
wenzelm
parents: 7425
diff changeset
  1027
fun cla_meth' tac prems ctxt = Method.METHOD (fn facts =>
15036
cab1c1fc1851 context dependent components;
wenzelm
parents: 14605
diff changeset
  1028
  HEADGOAL (Method.insert_tac (prems @ facts) THEN' tac (local_claset_of ctxt)));
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1029
7559
1d2c099e98f7 setup for refined facts handling;
wenzelm
parents: 7425
diff changeset
  1030
val cla_method = Method.bang_sectioned_args cla_modifiers o cla_meth;
1d2c099e98f7 setup for refined facts handling;
wenzelm
parents: 7425
diff changeset
  1031
val cla_method' = Method.bang_sectioned_args cla_modifiers o cla_meth';
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1032
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1033
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1034
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1035
(** setup_methods **)
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1036
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1037
val setup_methods = Method.add_methods
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
  1038
 [("default", Method.thms_ctxt_args default, "apply some intro/elim rule (potentially classical)"),
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
  1039
  ("rule", Method.thms_ctxt_args rule, "apply some intro/elim rule (potentially classical)"),
6502
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
  1040
  ("contradiction", Method.no_args contradiction, "proof by contradiction"),
10821
dcb75538f542 CHANGED_PROP;
wenzelm
parents: 10736
diff changeset
  1041
  ("clarify", cla_method' (CHANGED_PROP oo clarify_tac), "repeatedly apply safe steps"),
7004
c799d0859638 tuned contradiction method;
wenzelm
parents: 6967
diff changeset
  1042
  ("fast", cla_method' fast_tac, "classical prover (depth-first)"),
9806
98bb27b84363 added "slow";
wenzelm
parents: 9773
diff changeset
  1043
  ("slow", cla_method' slow_tac, "classical prover (slow depth-first)"),
9773
c5024f705d24 added "safe" method;
wenzelm
parents: 9760
diff changeset
  1044
  ("best", cla_method' best_tac, "classical prover (best-first)"),
18015
1cd8174b7df0 Added "deepen" method.
berghofe
parents: 17880
diff changeset
  1045
  ("deepen", cla_method' (fn cs => deepen_tac cs 4), "classical prover (iterative deepening)"),
10821
dcb75538f542 CHANGED_PROP;
wenzelm
parents: 10736
diff changeset
  1046
  ("safe", cla_method (CHANGED_PROP o safe_tac), "classical prover (apply safe rules)")];
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1047
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1048
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1049
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1050
(** theory setup **)
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1051
26497
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
  1052
val setup = setup_attrs #> setup_methods;
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1053
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1054
8667
4230d17073ea print_simpset / print_claset command;
wenzelm
parents: 8519
diff changeset
  1055
4230d17073ea print_simpset / print_claset command;
wenzelm
parents: 8519
diff changeset
  1056
(** outer syntax **)
4230d17073ea print_simpset / print_claset command;
wenzelm
parents: 8519
diff changeset
  1057
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24358
diff changeset
  1058
val _ =
8667
4230d17073ea print_simpset / print_claset command;
wenzelm
parents: 8519
diff changeset
  1059
  OuterSyntax.improper_command "print_claset" "print context of Classical Reasoner"
17057
0934ac31985f OuterKeyword;
wenzelm
parents: 16806
diff changeset
  1060
    OuterKeyword.diag
26497
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
  1061
    (Scan.succeed (Toplevel.no_timing o Toplevel.unknown_context o
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26470
diff changeset
  1062
      Toplevel.keep (print_cs o local_claset_of o Toplevel.context_of)));
8667
4230d17073ea print_simpset / print_claset command;
wenzelm
parents: 8519
diff changeset
  1063
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
  1064
end;