src/Provers/classical.ML
author wenzelm
Wed, 09 Jul 2025 11:28:56 +0200
changeset 82831 30c746b4dbeb
parent 82830 3c60d0a340cb
child 82832 bf1bc2932343
permissions -rw-r--r--
tuned;
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
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
     7
Rules must be classified as intro, elim, safe, 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
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    21
signature CLASSICAL_DATA =
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    22
sig
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
    23
  val imp_elim: thm  (* P --> Q ==> (~ R ==> P) ==> (Q ==> R) ==> R *)
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
    24
  val not_elim: thm  (* ~P ==> P ==> R *)
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
    25
  val swap: thm  (* ~ P ==> (~ R ==> P) ==> R *)
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
    26
  val classical: thm  (* (~ P ==> P) ==> P *)
50062
e038198f7d08 more concise/precise documentation;
wenzelm
parents: 48126
diff changeset
    27
  val sizef: thm -> int  (* size function for BEST_FIRST, typically size_of_thm *)
51798
ad3a241def73 uniform Proof.context for hyp_subst_tac;
wenzelm
parents: 51718
diff changeset
    28
  val hyp_subst_tacs: (Proof.context -> int -> tactic) list (* optional tactics for
ad3a241def73 uniform Proof.context for hyp_subst_tac;
wenzelm
parents: 51718
diff changeset
    29
    substitution in the hypotheses; assumed to be safe! *)
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    30
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    31
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
    32
signature BASIC_CLASSICAL =
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    33
sig
42812
dda4aef7cba4 tuned signature;
wenzelm
parents: 42810
diff changeset
    34
  type wrapper = (int -> tactic) -> int -> tactic
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    35
  type claset
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    36
  val print_claset: Proof.context -> unit
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    37
  val addDs: Proof.context * thm list -> Proof.context
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    38
  val addEs: Proof.context * thm list -> Proof.context
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    39
  val addIs: Proof.context * thm list -> Proof.context
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    40
  val addSDs: Proof.context * thm list -> Proof.context
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    41
  val addSEs: Proof.context * thm list -> Proof.context
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    42
  val addSIs: Proof.context * thm list -> Proof.context
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    43
  val delrules: Proof.context * thm list -> Proof.context
51703
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
    44
  val addSWrapper: Proof.context * (string * (Proof.context -> wrapper)) -> Proof.context
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
    45
  val delSWrapper: Proof.context * string -> Proof.context
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
    46
  val addWrapper: Proof.context * (string * (Proof.context -> wrapper)) -> Proof.context
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
    47
  val delWrapper: Proof.context * string -> Proof.context
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51703
diff changeset
    48
  val addSbefore: Proof.context * (string * (Proof.context -> int -> tactic)) -> Proof.context
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51703
diff changeset
    49
  val addSafter: Proof.context * (string * (Proof.context -> int -> tactic)) -> Proof.context
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51703
diff changeset
    50
  val addbefore: Proof.context * (string * (Proof.context -> int -> tactic)) -> Proof.context
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51703
diff changeset
    51
  val addafter: Proof.context * (string * (Proof.context -> int -> tactic)) -> Proof.context
51703
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
    52
  val addD2: Proof.context * (string * thm) -> Proof.context
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
    53
  val addE2: Proof.context * (string * thm) -> Proof.context
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
    54
  val addSD2: Proof.context * (string * thm) -> Proof.context
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
    55
  val addSE2: Proof.context * (string * thm) -> Proof.context
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    56
  val appSWrappers: Proof.context -> wrapper
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    57
  val appWrappers: Proof.context -> wrapper
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
    58
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
    59
  val claset_of: Proof.context -> claset
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    60
  val put_claset: claset -> Proof.context -> Proof.context
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    61
51703
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
    62
  val map_theory_claset: (Proof.context -> Proof.context) -> theory -> theory
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
    63
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    64
  val fast_tac: Proof.context -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    65
  val slow_tac: Proof.context -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    66
  val astar_tac: Proof.context -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    67
  val slow_astar_tac: Proof.context -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    68
  val best_tac: Proof.context -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    69
  val first_best_tac: Proof.context -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    70
  val slow_best_tac: Proof.context -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    71
  val depth_tac: Proof.context -> int -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    72
  val deepen_tac: Proof.context -> int -> int -> tactic
1587
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
    73
58963
26bf09b95dda proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents: 58958
diff changeset
    74
  val contr_tac: Proof.context -> int -> tactic
59970
e9f73d87d904 proper context for Object_Logic operations;
wenzelm
parents: 59936
diff changeset
    75
  val dup_elim: Proof.context -> thm -> thm
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
    76
  val dup_intr: thm -> thm
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    77
  val dup_step_tac: Proof.context -> int -> tactic
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
    78
  val eq_mp_tac: Proof.context -> int -> tactic
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
    79
  val unsafe_step_tac: Proof.context -> int -> tactic
58963
26bf09b95dda proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents: 58958
diff changeset
    80
  val mp_tac: Proof.context -> int -> tactic
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    81
  val safe_tac: Proof.context -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    82
  val safe_steps_tac: Proof.context -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    83
  val safe_step_tac: Proof.context -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    84
  val clarify_tac: Proof.context -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    85
  val clarify_step_tac: Proof.context -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    86
  val step_tac: Proof.context -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    87
  val slow_step_tac: Proof.context -> int -> tactic
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
    88
  val swapify: thm list -> thm list
58963
26bf09b95dda proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents: 58958
diff changeset
    89
  val swap_res_tac: Proof.context -> thm list -> int -> tactic
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    90
  val inst_step_tac: Proof.context -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    91
  val inst0_step_tac: Proof.context -> int -> tactic
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
    92
  val instp_step_tac: Proof.context -> int -> tactic
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
    93
end;
1724
bb02e6976258 Added functions for default claset.
berghofe
parents: 1711
diff changeset
    94
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
    95
signature CLASSICAL =
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
    96
sig
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
    97
  include BASIC_CLASSICAL
59970
e9f73d87d904 proper context for Object_Logic operations;
wenzelm
parents: 59936
diff changeset
    98
  val classical_rule: Proof.context -> thm -> thm
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
    99
  type rule = thm * (thm * thm list) * (thm * thm list)
42812
dda4aef7cba4 tuned signature;
wenzelm
parents: 42810
diff changeset
   100
  val rep_cs: claset ->
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   101
   {safeIs: rule Item_Net.T,
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   102
    safeEs: rule Item_Net.T,
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   103
    unsafeIs: rule Item_Net.T,
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   104
    unsafeEs: rule Item_Net.T,
42812
dda4aef7cba4 tuned signature;
wenzelm
parents: 42810
diff changeset
   105
    swrappers: (string * (Proof.context -> wrapper)) list,
dda4aef7cba4 tuned signature;
wenzelm
parents: 42810
diff changeset
   106
    uwrappers: (string * (Proof.context -> wrapper)) list,
82812
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   107
    safe0_netpair: Bires.netpair,
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   108
    safep_netpair: Bires.netpair,
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   109
    unsafe_netpair: Bires.netpair,
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   110
    dup_netpair: Bires.netpair,
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   111
    extra_netpair: Bires.netpair}
24021
491c68f40bc4 added get_cs/map_cs;
wenzelm
parents: 23594
diff changeset
   112
  val get_cs: Context.generic -> claset
491c68f40bc4 added get_cs/map_cs;
wenzelm
parents: 23594
diff changeset
   113
  val map_cs: (claset -> claset) -> Context.generic -> Context.generic
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   114
  val safe_dest: int option -> attribute
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   115
  val safe_elim: int option -> attribute
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   116
  val safe_intro: int option -> attribute
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   117
  val unsafe_dest: int option -> attribute
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   118
  val unsafe_elim: int option -> attribute
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   119
  val unsafe_intro: int option -> attribute
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   120
  val rule_del: attribute
61327
0a4c364df431 tuned signature;
wenzelm
parents: 61268
diff changeset
   121
  val rule_tac: Proof.context -> thm list -> thm list -> int -> tactic
0a4c364df431 tuned signature;
wenzelm
parents: 61268
diff changeset
   122
  val standard_tac: Proof.context -> thm list -> tactic
30513
1796b8ea88aa eliminated type Args.T;
wenzelm
parents: 30510
diff changeset
   123
  val cla_modifiers: Method.modifier parser list
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   124
  val cla_method:
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   125
    (Proof.context -> tactic) -> (Proof.context -> Proof.method) context_parser
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   126
  val cla_method':
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   127
    (Proof.context -> int -> tactic) -> (Proof.context -> Proof.method) context_parser
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   128
end;
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   129
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   130
42799
4e33894aec6d modernized functor names;
wenzelm
parents: 42798
diff changeset
   131
functor Classical(Data: CLASSICAL_DATA): CLASSICAL =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   132
struct
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   133
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   134
(** classical elimination rules **)
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   135
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   136
(*
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   137
Classical reasoning requires stronger elimination rules.  For
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   138
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
   139
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   140
    [| 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
   141
26938
64e850c3da9e tuned comments;
wenzelm
parents: 26928
diff changeset
   142
Such rules can cause fast_tac to fail and blast_tac to report "PROOF
59119
c90c02940964 tuned spelling;
wenzelm
parents: 58963
diff changeset
   143
FAILED"; classical_rule will strengthen this to
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   144
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   145
    [| 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
   146
*)
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   147
59970
e9f73d87d904 proper context for Object_Logic operations;
wenzelm
parents: 59936
diff changeset
   148
fun classical_rule ctxt rule =
e9f73d87d904 proper context for Object_Logic operations;
wenzelm
parents: 59936
diff changeset
   149
  if is_some (Object_Logic.elim_concl ctxt rule) then
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   150
    let
60817
3f38ed5a02c1 clarified context;
wenzelm
parents: 60757
diff changeset
   151
      val thy = Proof_Context.theory_of ctxt;
42792
85fb70b0c5e8 do not open ML structures;
wenzelm
parents: 42791
diff changeset
   152
      val rule' = rule RS Data.classical;
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   153
      val concl' = Thm.concl_of rule';
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   154
      fun redundant_hyp goal =
19257
4463aee061bc ObjectLogic.is_elim;
wenzelm
parents: 19110
diff changeset
   155
        concl' aconv Logic.strip_assums_concl goal orelse
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   156
          (case Logic.strip_assums_hyp goal of
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   157
            hyp :: hyps => exists (fn t => t aconv hyp) hyps
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   158
          | _ => false);
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   159
      val rule'' =
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   160
        rule' |> ALLGOALS (SUBGOAL (fn (goal, i) =>
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   161
          if i = 1 orelse redundant_hyp goal
60757
c09598a97436 prefer tactics with explicit context;
wenzelm
parents: 60650
diff changeset
   162
          then eresolve_tac ctxt [thin_rl] i
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   163
          else all_tac))
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   164
        |> Seq.hd
21963
416a5338d2bb removed obsolete name_hint handling;
wenzelm
parents: 21689
diff changeset
   165
        |> Drule.zero_var_indexes;
60817
3f38ed5a02c1 clarified context;
wenzelm
parents: 60757
diff changeset
   166
    in if Thm.equiv_thm thy (rule, rule'') then rule else rule'' end
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   167
  else rule;
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   168
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   169
(*flatten nested meta connectives in prems*)
59970
e9f73d87d904 proper context for Object_Logic operations;
wenzelm
parents: 59936
diff changeset
   170
fun flat_rule ctxt =
e9f73d87d904 proper context for Object_Logic operations;
wenzelm
parents: 59936
diff changeset
   171
  Conv.fconv_rule (Conv.prems_conv ~1 (Object_Logic.atomize_prems ctxt));
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   172
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   173
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   174
(*** Useful tactics for classical reasoning ***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   175
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   176
(*Prove goal that assumes both P and ~P.
4392
ea41d9c1b0ef More deterministic (?) contr_tac
paulson
parents: 4380
diff changeset
   177
  No backtracking if it finds an equal assumption.  Perhaps should call
ea41d9c1b0ef More deterministic (?) contr_tac
paulson
parents: 4380
diff changeset
   178
  ematch_tac instead of eresolve_tac, but then cannot prove ZF/cantor.*)
58963
26bf09b95dda proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents: 58958
diff changeset
   179
fun contr_tac ctxt =
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59164
diff changeset
   180
  eresolve_tac ctxt [Data.not_elim] THEN' (eq_assume_tac ORELSE' assume_tac ctxt);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   181
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   182
(*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
   183
  Could do the same thing for P<->Q and P... *)
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59164
diff changeset
   184
fun mp_tac ctxt i =
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59164
diff changeset
   185
  eresolve_tac ctxt [Data.not_elim, Data.imp_elim] i THEN assume_tac ctxt i;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   186
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   187
(*Like mp_tac but instantiates no variables*)
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
   188
fun eq_mp_tac ctxt i = ematch_tac ctxt [Data.not_elim, Data.imp_elim] i THEN eq_assume_tac i;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   189
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   190
(*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
   191
fun swapify intrs = intrs RLN (2, [Data.swap]);
82831
wenzelm
parents: 82830
diff changeset
   192
fun swap_rule intr = intr RSN (2, Data.swap);
wenzelm
parents: 82830
diff changeset
   193
val swapped = Thm.rule_attribute [] (K swap_rule);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   194
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   195
(*Uses introduction rules in the normal way, or on negated assumptions,
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   196
  trying rules in order. *)
58963
26bf09b95dda proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents: 58958
diff changeset
   197
fun swap_res_tac ctxt rls =
61056
e9d08b88d2cc trim context for persistent storage;
wenzelm
parents: 61055
diff changeset
   198
  let
82831
wenzelm
parents: 82830
diff changeset
   199
    fun addrl rl brls = (false, rl) :: (true, swap_rule rl) :: brls;
61056
e9d08b88d2cc trim context for persistent storage;
wenzelm
parents: 61055
diff changeset
   200
  in
58963
26bf09b95dda proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents: 58958
diff changeset
   201
    assume_tac ctxt ORELSE'
26bf09b95dda proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents: 58958
diff changeset
   202
    contr_tac ctxt ORELSE'
82830
wenzelm
parents: 82818
diff changeset
   203
    biresolve_tac ctxt (fold_rev (addrl o Thm.transfer' ctxt) rls [])
42792
85fb70b0c5e8 do not open ML structures;
wenzelm
parents: 42791
diff changeset
   204
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   205
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   206
(*Duplication of unsafe rules, for complete provers*)
42792
85fb70b0c5e8 do not open ML structures;
wenzelm
parents: 42791
diff changeset
   207
fun dup_intr th = zero_var_indexes (th RS Data.classical);
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   208
59970
e9f73d87d904 proper context for Object_Logic operations;
wenzelm
parents: 59936
diff changeset
   209
fun dup_elim ctxt th =
e9f73d87d904 proper context for Object_Logic operations;
wenzelm
parents: 59936
diff changeset
   210
  let val rl = (th RSN (2, revcut_rl)) |> Thm.assumption (SOME ctxt) 2 |> Seq.hd;
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59164
diff changeset
   211
  in rule_by_tactic ctxt (TRYALL (eresolve_tac ctxt [revcut_rl])) rl end;
36546
a9873318fe30 proper context for rule_by_tactic;
wenzelm
parents: 35625
diff changeset
   212
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   213
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   214
(**** Classical rule sets ****)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   215
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   216
type rule = thm * (thm * thm list) * (thm * thm list);
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   217
  (*external form, internal form (possibly swapped), dup form (possibly swapped)*)
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   218
42812
dda4aef7cba4 tuned signature;
wenzelm
parents: 42810
diff changeset
   219
type wrapper = (int -> tactic) -> int -> tactic;
dda4aef7cba4 tuned signature;
wenzelm
parents: 42810
diff changeset
   220
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   221
datatype claset =
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   222
  CS of
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   223
   {safeIs: rule Item_Net.T,  (*safe introduction rules*)
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   224
    safeEs: rule Item_Net.T,  (*safe elimination rules*)
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   225
    unsafeIs: rule Item_Net.T,  (*unsafe introduction rules*)
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   226
    unsafeEs: rule Item_Net.T,  (*unsafe elimination rules*)
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   227
    swrappers: (string * (Proof.context -> wrapper)) list,  (*for transforming safe_step_tac*)
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   228
    uwrappers: (string * (Proof.context -> wrapper)) list,  (*for transforming step_tac*)
82812
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   229
    safe0_netpair: Bires.netpair,  (*nets for trivial cases*)
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   230
    safep_netpair: Bires.netpair,  (*nets for >0 subgoals*)
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   231
    unsafe_netpair: Bires.netpair,  (*nets for unsafe rules*)
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   232
    dup_netpair: Bires.netpair,  (*nets for duplication*)
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   233
    extra_netpair: Bires.netpair};  (*nets for extra rules*)
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   234
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   235
val empty_rules: rule Item_Net.T =
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   236
  Item_Net.init (Thm.eq_thm_prop o apply2 #1) (single o Thm.full_prop_of o #1);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   237
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   238
val empty_cs =
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   239
  CS
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   240
   {safeIs = empty_rules,
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   241
    safeEs = empty_rules,
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   242
    unsafeIs = empty_rules,
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   243
    unsafeEs = empty_rules,
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   244
    swrappers = [],
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   245
    uwrappers = [],
82812
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   246
    safe0_netpair = Bires.empty_netpair,
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   247
    safep_netpair = Bires.empty_netpair,
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   248
    unsafe_netpair = Bires.empty_netpair,
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   249
    dup_netpair = Bires.empty_netpair,
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   250
    extra_netpair = Bires.empty_netpair};
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   251
4653
d60f76680bf4 renamed rep_claset to rep_cs
oheimb
parents: 4651
diff changeset
   252
fun rep_cs (CS args) = args;
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   253
4079
9df5e4f22d96 new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents: 4066
diff changeset
   254
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   255
(*** Adding (un)safe introduction or elimination rules.
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   256
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   257
    In case of overlap, new rules are tried BEFORE old ones!!
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   258
***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   259
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   260
fun joinrules (intrs, elims) = map (pair true) elims @ map (pair false) intrs;
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   261
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   262
(*Priority: prefer rules with fewest subgoals,
1231
91d2c1bb5803 clarified comment
paulson
parents: 1073
diff changeset
   263
  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
   264
fun tag_brls k [] = []
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   265
  | tag_brls k (brl::brls) =
82814
de15cf3e6325 tuned signature;
wenzelm
parents: 82813
diff changeset
   266
      ({weight = Bires.subgoals_of brl, index = k}, brl) :: tag_brls (k + 1) brls;
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   267
82814
de15cf3e6325 tuned signature;
wenzelm
parents: 82813
diff changeset
   268
fun tag_weight_brls _ _ [] = []
de15cf3e6325 tuned signature;
wenzelm
parents: 82813
diff changeset
   269
  | tag_weight_brls w k (brl::brls) =
de15cf3e6325 tuned signature;
wenzelm
parents: 82813
diff changeset
   270
      ({weight = w, index = k}, brl) :: tag_weight_brls w (k + 1) brls;
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   271
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   272
(*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
   273
  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
   274
  new insertions the lowest priority.*)
82807
be34513a58a1 clarified signature;
wenzelm
parents: 82806
diff changeset
   275
fun insert (nI, nE) = Bires.insert_tagged_rules o (tag_brls (~(2*nI+nE))) o joinrules;
82814
de15cf3e6325 tuned signature;
wenzelm
parents: 82813
diff changeset
   276
de15cf3e6325 tuned signature;
wenzelm
parents: 82813
diff changeset
   277
fun insert_default_weight w0 w (nI, nE) =
82815
wenzelm
parents: 82814
diff changeset
   278
  Bires.insert_tagged_rules o tag_weight_brls (the_default w0 w) (~(nI + nE)) o single;
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   279
82807
be34513a58a1 clarified signature;
wenzelm
parents: 82806
diff changeset
   280
fun delete x = Bires.delete_tagged_rules (joinrules x);
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   281
61268
abe08fb15a12 moved remaining display.ML to more_thm.ML;
wenzelm
parents: 61056
diff changeset
   282
fun bad_thm ctxt msg th = error (msg ^ "\n" ^ Thm.string_of_thm ctxt th);
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   283
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   284
fun make_elim ctxt th =
82804
070585eb5d54 minor performance tuning;
wenzelm
parents: 82587
diff changeset
   285
  if Thm.no_prems th then bad_thm ctxt "Ill-formed destruction rule" th
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   286
  else Tactic.make_elim th;
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   287
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   288
fun warn_thm ctxt msg th =
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   289
  if Context_Position.is_really_visible ctxt
61268
abe08fb15a12 moved remaining display.ML to more_thm.ML;
wenzelm
parents: 61056
diff changeset
   290
  then warning (msg ^ Thm.string_of_thm ctxt th) else ();
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   291
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   292
fun warn_rules ctxt msg rules (r: rule) =
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   293
  Item_Net.member rules r andalso (warn_thm ctxt msg (#1 r); true);
42807
e639d91d9073 more precise warnings: observe context visibility;
wenzelm
parents: 42799
diff changeset
   294
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   295
fun warn_claset ctxt r (CS {safeIs, safeEs, unsafeIs, unsafeEs, ...}) =
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   296
  warn_rules ctxt "Rule already declared as safe introduction (intro!)\n" safeIs r orelse
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   297
  warn_rules ctxt "Rule already declared as safe elimination (elim!)\n" safeEs r orelse
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   298
  warn_rules ctxt "Rule already declared as introduction (intro)\n" unsafeIs r orelse
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   299
  warn_rules ctxt "Rule already declared as elimination (elim)\n" unsafeEs r;
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   300
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   301
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   302
(*** add rules ***)
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   303
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   304
fun add_safe_intro w r
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   305
    (cs as CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers,
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   306
      safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) =
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   307
  if Item_Net.member safeIs r then cs
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   308
  else
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   309
    let
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   310
      val (th, rl, _) = r;
23594
e65e466dda01 renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents: 23178
diff changeset
   311
      val (safe0_rls, safep_rls) = (*0 subgoals vs 1 or more*)
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   312
        List.partition (Thm.no_prems o fst) [rl];
42810
2425068fe13a slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents: 42807
diff changeset
   313
      val nI = Item_Net.length safeIs + 1;
2425068fe13a slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents: 42807
diff changeset
   314
      val nE = Item_Net.length safeEs;
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   315
    in
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   316
      CS
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   317
       {safeIs = Item_Net.update r safeIs,
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   318
        safe0_netpair = insert (nI, nE) (map fst safe0_rls, maps snd safe0_rls) safe0_netpair,
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   319
        safep_netpair = insert (nI, nE) (map fst safep_rls, maps snd safep_rls) safep_netpair,
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   320
        safeEs = safeEs,
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   321
        unsafeIs = unsafeIs,
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   322
        unsafeEs = unsafeEs,
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   323
        swrappers = swrappers,
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   324
        uwrappers = uwrappers,
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   325
        unsafe_netpair = unsafe_netpair,
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   326
        dup_netpair = dup_netpair,
82815
wenzelm
parents: 82814
diff changeset
   327
        extra_netpair = insert_default_weight 0 w (nI, nE) (false, th) extra_netpair}
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   328
    end;
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   329
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   330
fun add_safe_elim w r
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   331
    (cs as CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers,
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   332
      safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) =
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   333
  if Item_Net.member safeEs r then cs
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   334
  else
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   335
    let
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   336
      val (th, rl, _) = r;
18534
6799b38ed872 added classical_rule, which replaces Data.make_elim;
wenzelm
parents: 18374
diff changeset
   337
      val (safe0_rls, safep_rls) = (*0 subgoals vs 1 or more*)
82809
b908d50f42d4 minor performance tuning;
wenzelm
parents: 82808
diff changeset
   338
        List.partition (Thm.one_prem o #1) [rl];
42810
2425068fe13a slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents: 42807
diff changeset
   339
      val nI = Item_Net.length safeIs;
2425068fe13a slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents: 42807
diff changeset
   340
      val nE = Item_Net.length safeEs + 1;
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   341
    in
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   342
      CS
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   343
       {safeEs = Item_Net.update r safeEs,
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   344
        safe0_netpair = insert (nI, nE) ([], map fst safe0_rls) safe0_netpair,
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   345
        safep_netpair = insert (nI, nE) ([], map fst safep_rls) safep_netpair,
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   346
        safeIs = safeIs,
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   347
        unsafeIs = unsafeIs,
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   348
        unsafeEs = unsafeEs,
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   349
        swrappers = swrappers,
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   350
        uwrappers = uwrappers,
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   351
        unsafe_netpair = unsafe_netpair,
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   352
        dup_netpair = dup_netpair,
82815
wenzelm
parents: 82814
diff changeset
   353
        extra_netpair = insert_default_weight 0 w (nI, nE) (true, th) extra_netpair}
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   354
    end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   355
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   356
fun add_unsafe_intro w r
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   357
    (cs as CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers,
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   358
      safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) =
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   359
  if Item_Net.member unsafeIs r then cs
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   360
  else
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   361
    let
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   362
      val (th, rl, dup_rl) = r;
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   363
      val nI = Item_Net.length unsafeIs + 1;
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   364
      val nE = Item_Net.length unsafeEs;
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   365
    in
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   366
      CS
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   367
       {unsafeIs = Item_Net.update r unsafeIs,
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   368
        unsafe_netpair = insert (nI, nE) ([fst rl], snd rl) unsafe_netpair,
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   369
        dup_netpair = insert (nI, nE) ([fst dup_rl], snd dup_rl) dup_netpair,
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   370
        safeIs = safeIs,
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   371
        safeEs = safeEs,
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   372
        unsafeEs = unsafeEs,
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   373
        swrappers = swrappers,
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   374
        uwrappers = uwrappers,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   375
        safe0_netpair = safe0_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   376
        safep_netpair = safep_netpair,
82815
wenzelm
parents: 82814
diff changeset
   377
        extra_netpair = insert_default_weight 1 w (nI, nE) (false, th) extra_netpair}
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   378
    end;
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   379
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   380
fun add_unsafe_elim w r
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   381
    (cs as CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers,
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   382
      safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) =
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   383
  if Item_Net.member unsafeEs r then cs
1927
6f97cb16e453 New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents: 1814
diff changeset
   384
  else
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   385
    let
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   386
      val (th, rl, dup_rl) = r;
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   387
      val nI = Item_Net.length unsafeIs;
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   388
      val nE = Item_Net.length unsafeEs + 1;
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   389
    in
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   390
      CS
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   391
       {unsafeEs = Item_Net.update r unsafeEs,
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   392
        unsafe_netpair = insert (nI, nE) ([], [fst rl]) unsafe_netpair,
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   393
        dup_netpair = insert (nI, nE) ([], [fst dup_rl]) dup_netpair,
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   394
        safeIs = safeIs,
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   395
        safeEs = safeEs,
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   396
        unsafeIs = unsafeIs,
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   397
        swrappers = swrappers,
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   398
        uwrappers = uwrappers,
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   399
        safe0_netpair = safe0_netpair,
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   400
        safep_netpair = safep_netpair,
82815
wenzelm
parents: 82814
diff changeset
   401
        extra_netpair = insert_default_weight 1 w (nI, nE) (true, th) extra_netpair}
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   402
    end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   403
61056
e9d08b88d2cc trim context for persistent storage;
wenzelm
parents: 61055
diff changeset
   404
fun trim_context (th, (th1, ths1), (th2, ths2)) =
e9d08b88d2cc trim context for persistent storage;
wenzelm
parents: 61055
diff changeset
   405
  (Thm.trim_context th,
e9d08b88d2cc trim context for persistent storage;
wenzelm
parents: 61055
diff changeset
   406
    (Thm.trim_context th1, map Thm.trim_context ths1),
e9d08b88d2cc trim context for persistent storage;
wenzelm
parents: 61055
diff changeset
   407
    (Thm.trim_context th2, map Thm.trim_context ths2));
e9d08b88d2cc trim context for persistent storage;
wenzelm
parents: 61055
diff changeset
   408
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   409
fun addSI w ctxt th (cs as CS {safeIs, ...}) =
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   410
  let
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   411
    val th' = flat_rule ctxt th;
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   412
    val rl = (th', swapify [th']);
61056
e9d08b88d2cc trim context for persistent storage;
wenzelm
parents: 61055
diff changeset
   413
    val r = trim_context (th, rl, rl);
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   414
    val _ =
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   415
      warn_rules ctxt "Ignoring duplicate safe introduction (intro!)\n" safeIs r orelse
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   416
      warn_claset ctxt r cs;
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   417
  in add_safe_intro w r cs end;
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   418
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   419
fun addSE w ctxt th (cs as CS {safeEs, ...}) =
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   420
  let
82804
070585eb5d54 minor performance tuning;
wenzelm
parents: 82587
diff changeset
   421
    val _ = Thm.no_prems th andalso bad_thm ctxt "Ill-formed elimination rule" th;
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   422
    val th' = classical_rule ctxt (flat_rule ctxt th);
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   423
    val rl = (th', []);
61056
e9d08b88d2cc trim context for persistent storage;
wenzelm
parents: 61055
diff changeset
   424
    val r = trim_context (th, rl, rl);
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   425
    val _ =
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   426
      warn_rules ctxt "Ignoring duplicate safe elimination (elim!)\n" safeEs r orelse
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   427
      warn_claset ctxt r cs;
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   428
  in add_safe_elim w r cs end;
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   429
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   430
fun addSD w ctxt th = addSE w ctxt (make_elim ctxt th);
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   431
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   432
fun addI w ctxt th (cs as CS {unsafeIs, ...}) =
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   433
  let
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   434
    val th' = flat_rule ctxt th;
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   435
    val dup_th' = dup_intr th' handle THM _ => bad_thm ctxt "Ill-formed introduction rule" th;
61056
e9d08b88d2cc trim context for persistent storage;
wenzelm
parents: 61055
diff changeset
   436
    val r = trim_context (th, (th', swapify [th']), (dup_th', swapify [dup_th']));
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   437
    val _ =
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   438
      warn_rules ctxt "Ignoring duplicate introduction (intro)\n" unsafeIs r orelse
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   439
      warn_claset ctxt r cs;
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   440
  in add_unsafe_intro w r cs end;
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   441
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   442
fun addE w ctxt th (cs as CS {unsafeEs, ...}) =
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   443
  let
82804
070585eb5d54 minor performance tuning;
wenzelm
parents: 82587
diff changeset
   444
    val _ = Thm.no_prems th andalso bad_thm ctxt "Ill-formed elimination rule" th;
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   445
    val th' = classical_rule ctxt (flat_rule ctxt th);
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   446
    val dup_th' = dup_elim ctxt th' handle THM _ => bad_thm ctxt "Ill-formed elimination rule" th;
61056
e9d08b88d2cc trim context for persistent storage;
wenzelm
parents: 61055
diff changeset
   447
    val r = trim_context (th, (th', []), (dup_th', []));
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   448
    val _ =
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   449
      warn_rules ctxt "Ignoring duplicate elimination (elim)\n" unsafeEs r orelse
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   450
      warn_claset ctxt r cs;
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   451
  in add_unsafe_elim w r cs end;
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   452
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   453
fun addD w ctxt th = addE w ctxt (make_elim ctxt th);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   454
1073
b3f190995bc9 Recoded addSIs, etc., so that nets are built incrementally
lcp
parents: 1010
diff changeset
   455
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   456
(*** delete rules ***)
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   457
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   458
local
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   459
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   460
fun del_safe_intro (r: rule)
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   461
  (CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   462
    safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) =
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   463
  let
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   464
    val (th, rl, _) = r;
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   465
    val (safe0_rls, safep_rls) = List.partition (Thm.no_prems o fst) [rl];
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   466
  in
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   467
    CS
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   468
     {safe0_netpair = delete (map fst safe0_rls, maps snd safe0_rls) safe0_netpair,
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   469
      safep_netpair = delete (map fst safep_rls, maps snd safep_rls) safep_netpair,
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   470
      safeIs = Item_Net.remove r safeIs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   471
      safeEs = safeEs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   472
      unsafeIs = unsafeIs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   473
      unsafeEs = unsafeEs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   474
      swrappers = swrappers,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   475
      uwrappers = uwrappers,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   476
      unsafe_netpair = unsafe_netpair,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   477
      dup_netpair = dup_netpair,
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   478
      extra_netpair = delete ([th], []) extra_netpair}
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   479
  end;
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   480
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   481
fun del_safe_elim (r: rule)
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   482
  (CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   483
    safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) =
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   484
  let
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   485
    val (th, rl, _) = r;
82809
b908d50f42d4 minor performance tuning;
wenzelm
parents: 82808
diff changeset
   486
    val (safe0_rls, safep_rls) = List.partition (Thm.one_prem o #1) [rl];
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   487
  in
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   488
    CS
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   489
     {safe0_netpair = delete ([], map fst safe0_rls) safe0_netpair,
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   490
      safep_netpair = delete ([], map fst safep_rls) safep_netpair,
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   491
      safeIs = safeIs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   492
      safeEs = Item_Net.remove r safeEs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   493
      unsafeIs = unsafeIs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   494
      unsafeEs = unsafeEs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   495
      swrappers = swrappers,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   496
      uwrappers = uwrappers,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   497
      unsafe_netpair = unsafe_netpair,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   498
      dup_netpair = dup_netpair,
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   499
      extra_netpair = delete ([], [th]) extra_netpair}
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   500
  end;
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   501
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   502
fun del_unsafe_intro (r as (th, (th', swapped_th'), (dup_th', swapped_dup_th')))
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   503
  (CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   504
    safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) =
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   505
  CS
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   506
   {unsafe_netpair = delete ([th'], swapped_th') unsafe_netpair,
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   507
    dup_netpair = delete ([dup_th'], swapped_dup_th') dup_netpair,
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   508
    safeIs = safeIs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   509
    safeEs = safeEs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   510
    unsafeIs = Item_Net.remove r unsafeIs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   511
    unsafeEs = unsafeEs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   512
    swrappers = swrappers,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   513
    uwrappers = uwrappers,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   514
    safe0_netpair = safe0_netpair,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   515
    safep_netpair = safep_netpair,
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   516
    extra_netpair = delete ([th], []) extra_netpair};
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   517
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   518
fun del_unsafe_elim (r as (th, (th', _), (dup_th', _)))
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   519
  (CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   520
    safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) =
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   521
  CS
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   522
   {unsafe_netpair = delete ([], [th']) unsafe_netpair,
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   523
    dup_netpair = delete ([], [dup_th']) dup_netpair,
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   524
    safeIs = safeIs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   525
    safeEs = safeEs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   526
    unsafeIs = unsafeIs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   527
    unsafeEs = Item_Net.remove r unsafeEs,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   528
    swrappers = swrappers,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   529
    uwrappers = uwrappers,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   530
    safe0_netpair = safe0_netpair,
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   531
    safep_netpair = safep_netpair,
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   532
    extra_netpair = delete ([], [th]) extra_netpair};
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   533
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   534
fun del f rules th cs =
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   535
  fold f (Item_Net.lookup rules (th, (th, []), (th, []))) cs;
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   536
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   537
in
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   538
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   539
fun delrule ctxt th (cs as CS {safeIs, safeEs, unsafeIs, unsafeEs, ...}) =
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   540
  let
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   541
    val th' = Tactic.make_elim th;
61055
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   542
    val r = (th, (th, []), (th, []));
6fc78876f9be store result of swapify, to avoid later access to implicit context;
wenzelm
parents: 61049
diff changeset
   543
    val r' = (th', (th', []), (th', []));
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   544
  in
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   545
    if Item_Net.member safeIs r orelse Item_Net.member safeEs r orelse
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   546
      Item_Net.member unsafeIs r orelse Item_Net.member unsafeEs r orelse
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   547
      Item_Net.member safeEs r' orelse Item_Net.member unsafeEs r'
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 52732
diff changeset
   548
    then
60942
wenzelm
parents: 60817
diff changeset
   549
      cs
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   550
      |> del del_safe_intro safeIs th
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   551
      |> del del_safe_elim safeEs th
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   552
      |> del del_safe_elim safeEs th'
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   553
      |> del del_unsafe_intro unsafeIs th
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   554
      |> del del_unsafe_elim unsafeEs th
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   555
      |> del del_unsafe_elim unsafeEs th'
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   556
    else (warn_thm ctxt "Undeclared classical rule\n" th; cs)
9938
cb6a7572d0a1 delrule: handle dest rules as well;
wenzelm
parents: 9899
diff changeset
   557
  end;
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   558
60946
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   559
end;
46ec72073dc1 delete precisely the added rules;
wenzelm
parents: 60945
diff changeset
   560
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   561
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   562
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   563
(** claset data **)
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   564
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   565
(* wrappers *)
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   566
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   567
fun map_swrappers f
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   568
  (CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers,
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   569
    safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) =
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   570
  CS {safeIs = safeIs, safeEs = safeEs, unsafeIs = unsafeIs, unsafeEs = unsafeEs,
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   571
    swrappers = f swrappers, uwrappers = uwrappers,
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   572
    safe0_netpair = safe0_netpair, safep_netpair = safep_netpair,
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   573
    unsafe_netpair = unsafe_netpair, dup_netpair = dup_netpair, extra_netpair = extra_netpair};
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   574
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   575
fun map_uwrappers f
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   576
  (CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers,
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   577
    safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) =
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   578
  CS {safeIs = safeIs, safeEs = safeEs, unsafeIs = unsafeIs, unsafeEs = unsafeEs,
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   579
    swrappers = swrappers, uwrappers = f uwrappers,
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   580
    safe0_netpair = safe0_netpair, safep_netpair = safep_netpair,
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   581
    unsafe_netpair = unsafe_netpair, dup_netpair = dup_netpair, extra_netpair = extra_netpair};
4767
b9f3468c6ee2 introduced functions for updating the wrapper lists
oheimb
parents: 4765
diff changeset
   582
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   583
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   584
(* merge_cs *)
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   585
42810
2425068fe13a slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents: 42807
diff changeset
   586
(*Merge works by adding all new rules of the 2nd claset into the 1st claset,
2425068fe13a slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents: 42807
diff changeset
   587
  in order to preserve priorities reliably.*)
2425068fe13a slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents: 42807
diff changeset
   588
2425068fe13a slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents: 42807
diff changeset
   589
fun merge_thms add thms1 thms2 =
2425068fe13a slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents: 42807
diff changeset
   590
  fold_rev (fn thm => if Item_Net.member thms1 thm then I else add thm) (Item_Net.content thms2);
2425068fe13a slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents: 42807
diff changeset
   591
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   592
fun merge_cs (cs as CS {safeIs, safeEs, unsafeIs, unsafeEs, ...},
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   593
    cs' as CS {safeIs = safeIs2, safeEs = safeEs2, unsafeIs = unsafeIs2, unsafeEs = unsafeEs2,
22674
1a610904bbca canonical merge operations
haftmann
parents: 22474
diff changeset
   594
      swrappers, uwrappers, ...}) =
24358
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   595
  if pointer_eq (cs, cs') then cs
d75af3e90e82 tuned merge operations via pointer_eq;
wenzelm
parents: 24218
diff changeset
   596
  else
42810
2425068fe13a slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents: 42807
diff changeset
   597
    cs
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   598
    |> merge_thms (add_safe_intro NONE) safeIs safeIs2
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   599
    |> merge_thms (add_safe_elim NONE) safeEs safeEs2
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   600
    |> merge_thms (add_unsafe_intro NONE) unsafeIs unsafeIs2
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   601
    |> merge_thms (add_unsafe_elim NONE) unsafeEs unsafeEs2
42810
2425068fe13a slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents: 42807
diff changeset
   602
    |> map_swrappers (fn ws => AList.merge (op =) (K true) (ws, swrappers))
2425068fe13a slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents: 42807
diff changeset
   603
    |> map_uwrappers (fn ws => AList.merge (op =) (K true) (ws, uwrappers));
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   604
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   605
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   606
(* data *)
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   607
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   608
structure Claset = Generic_Data
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   609
(
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   610
  type T = claset;
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   611
  val empty = empty_cs;
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   612
  val merge = merge_cs;
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   613
);
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   614
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   615
val claset_of = Claset.get o Context.Proof;
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   616
val rep_claset_of = rep_cs o claset_of;
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   617
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   618
val get_cs = Claset.get;
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   619
val map_cs = Claset.map;
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   620
51703
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
   621
fun map_theory_claset f thy =
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
   622
  let
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
   623
    val ctxt' = f (Proof_Context.init_global thy);
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
   624
    val thy' = Proof_Context.theory_of ctxt';
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
   625
  in Context.theory_map (Claset.map (K (claset_of ctxt'))) thy' end;
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
   626
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   627
fun map_claset f = Context.proof_map (map_cs f);
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   628
fun put_claset cs = map_claset (K cs);
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   629
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   630
fun print_claset ctxt =
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   631
  let
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   632
    val {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers, ...} = rep_claset_of ctxt;
61268
abe08fb15a12 moved remaining display.ML to more_thm.ML;
wenzelm
parents: 61056
diff changeset
   633
    val pretty_thms = map (Thm.pretty_thm_item ctxt o #1) o Item_Net.content;
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   634
  in
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   635
    [Pretty.big_list "safe introduction rules (intro!):" (pretty_thms safeIs),
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   636
      Pretty.big_list "introduction rules (intro):" (pretty_thms unsafeIs),
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   637
      Pretty.big_list "safe elimination rules (elim!):" (pretty_thms safeEs),
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   638
      Pretty.big_list "elimination rules (elim):" (pretty_thms unsafeEs),
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   639
      Pretty.strs ("safe wrappers:" :: map #1 swrappers),
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   640
      Pretty.strs ("unsafe wrappers:" :: map #1 uwrappers)]
82587
7415414bd9d8 more scalable: discontinue odd shortcuts from 6b3739fee456, which produce bulky strings internally;
wenzelm
parents: 74561
diff changeset
   641
    |> Pretty.chunks |> Pretty.writeln
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   642
  end;
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   643
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   644
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   645
(* old-style declarations *)
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   646
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   647
fun decl f (ctxt, ths) = map_claset (fold_rev (f ctxt) ths) ctxt;
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   648
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   649
val op addSIs = decl (addSI NONE);
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   650
val op addSEs = decl (addSE NONE);
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   651
val op addSDs = decl (addSD NONE);
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   652
val op addIs = decl (addI NONE);
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   653
val op addEs = decl (addE NONE);
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   654
val op addDs = decl (addD NONE);
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   655
val op delrules = decl delrule;
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   656
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   657
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   658
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   659
(*** Modifying the wrapper tacticals ***)
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   660
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   661
fun appSWrappers ctxt = fold (fn (_, w) => w ctxt) (#swrappers (rep_claset_of ctxt));
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   662
fun appWrappers ctxt = fold (fn (_, w) => w ctxt) (#uwrappers (rep_claset_of ctxt));
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   663
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   664
fun update_warn msg (p as (key : string, _)) xs =
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   665
  (if AList.defined (op =) xs key then warning msg else (); AList.update (op =) p xs);
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   666
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   667
fun delete_warn msg (key : string) xs =
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   668
  if AList.defined (op =) xs key then AList.delete (op =) key xs
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   669
  else (warning msg; xs);
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   670
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   671
(*Add/replace a safe wrapper*)
51703
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
   672
fun ctxt addSWrapper new_swrapper = ctxt |> map_claset
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
   673
  (map_swrappers (update_warn ("Overwriting safe wrapper " ^ fst new_swrapper) new_swrapper));
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   674
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   675
(*Add/replace an unsafe wrapper*)
51703
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
   676
fun ctxt addWrapper new_uwrapper = ctxt |> map_claset
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
   677
  (map_uwrappers (update_warn ("Overwriting unsafe wrapper " ^ fst new_uwrapper) new_uwrapper));
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   678
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   679
(*Remove a safe wrapper*)
51703
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
   680
fun ctxt delSWrapper name = ctxt |> map_claset
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
   681
  (map_swrappers (delete_warn ("No such safe wrapper in claset: " ^ name) name));
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   682
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   683
(*Remove an unsafe wrapper*)
51703
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
   684
fun ctxt delWrapper name = ctxt |> map_claset
f2e92fc0c8aa modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents: 51688
diff changeset
   685
  (map_uwrappers (delete_warn ("No such unsafe wrapper in claset: " ^ name) name));
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   686
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   687
(* compose a safe tactic alternatively before/after safe_step_tac *)
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51703
diff changeset
   688
fun ctxt addSbefore (name, tac1) =
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51703
diff changeset
   689
  ctxt addSWrapper (name, fn ctxt => fn tac2 => tac1 ctxt ORELSE' tac2);
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51703
diff changeset
   690
fun ctxt addSafter (name, tac2) =
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51703
diff changeset
   691
  ctxt addSWrapper (name, fn ctxt => fn tac1 => tac1 ORELSE' tac2 ctxt);
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   692
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   693
(*compose a tactic alternatively before/after the step tactic *)
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51703
diff changeset
   694
fun ctxt addbefore (name, tac1) =
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51703
diff changeset
   695
  ctxt addWrapper (name, fn ctxt => fn tac2 => tac1 ctxt APPEND' tac2);
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51703
diff changeset
   696
fun ctxt addafter (name, tac2) =
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51703
diff changeset
   697
  ctxt addWrapper (name, fn ctxt => fn tac1 => tac1 APPEND' tac2 ctxt);
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   698
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
   699
fun ctxt addD2 (name, thm) =
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59164
diff changeset
   700
  ctxt addafter (name, fn ctxt' => dresolve_tac ctxt' [thm] THEN' assume_tac ctxt');
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
   701
fun ctxt addE2 (name, thm) =
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59164
diff changeset
   702
  ctxt addafter (name, fn ctxt' => eresolve_tac ctxt' [thm] THEN' assume_tac ctxt');
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
   703
fun ctxt addSD2 (name, thm) =
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
   704
  ctxt addSafter (name, fn ctxt' => dmatch_tac ctxt' [thm] THEN' eq_assume_tac);
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
   705
fun ctxt addSE2 (name, thm) =
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
   706
  ctxt addSafter (name, fn ctxt' => ematch_tac ctxt' [thm] THEN' eq_assume_tac);
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   707
1711
c06d01f75764 Provides merge_cs to support default clasets
paulson
parents: 1587
diff changeset
   708
982
4fe0b642b7d5 Addition of wrappers for integration with the simplifier.
lcp
parents: 747
diff changeset
   709
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   710
(**** Simple tactics for theorem proving ****)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   711
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   712
(*Attack subgoals using safe inferences -- matching, not resolution*)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   713
fun safe_step_tac ctxt =
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   714
  let val {safe0_netpair, safep_netpair, ...} = rep_claset_of ctxt in
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   715
    appSWrappers ctxt
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   716
      (FIRST'
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   717
       [eq_assume_tac,
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
   718
        eq_mp_tac ctxt,
82805
61aae966dd95 clarified modules: explicit structure Bires;
wenzelm
parents: 82804
diff changeset
   719
        Bires.bimatch_from_nets_tac ctxt safe0_netpair,
51798
ad3a241def73 uniform Proof.context for hyp_subst_tac;
wenzelm
parents: 51718
diff changeset
   720
        FIRST' (map (fn tac => tac ctxt) Data.hyp_subst_tacs),
82805
61aae966dd95 clarified modules: explicit structure Bires;
wenzelm
parents: 82804
diff changeset
   721
        Bires.bimatch_from_nets_tac ctxt safep_netpair])
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   722
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   723
5757
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   724
(*Repeatedly attack a subgoal using safe inferences -- it's deterministic!*)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   725
fun safe_steps_tac ctxt =
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   726
  REPEAT_DETERM1 o (fn i => COND (has_fewer_prems i) no_tac (safe_step_tac ctxt i));
5757
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   727
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   728
(*Repeatedly attack subgoals using safe inferences -- it's deterministic!*)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   729
fun safe_tac ctxt = REPEAT_DETERM1 (FIRSTGOAL (safe_steps_tac ctxt));
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   730
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   731
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   732
(*** 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
   733
82805
61aae966dd95 clarified modules: explicit structure Bires;
wenzelm
parents: 82804
diff changeset
   734
(*version of Bires.bimatch_from_nets_tac that only applies rules that
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   735
  create precisely n subgoals.*)
59164
ff40c53d1af9 proper context for "net" tactics;
wenzelm
parents: 59119
diff changeset
   736
fun n_bimatch_from_nets_tac ctxt n =
82812
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   737
  Bires.biresolution_from_nets_tac ctxt Bires.tag_ord
ea8d633fd4a8 just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents: 82809
diff changeset
   738
    (SOME (fn rl => Bires.subgoals_of rl = n)) true;
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   739
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
   740
fun eq_contr_tac ctxt i = ematch_tac ctxt [Data.not_elim] i THEN eq_assume_tac i;
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
   741
fun eq_assume_contr_tac ctxt = eq_assume_tac ORELSE' eq_contr_tac ctxt;
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   742
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   743
(*Two-way branching is allowed only if one of the branches immediately closes*)
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
   744
fun bimatch2_tac ctxt netpair i =
59164
ff40c53d1af9 proper context for "net" tactics;
wenzelm
parents: 59119
diff changeset
   745
  n_bimatch_from_nets_tac ctxt 2 netpair i THEN
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
   746
  (eq_assume_contr_tac ctxt i ORELSE eq_assume_contr_tac ctxt (i + 1));
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   747
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   748
(*Attack subgoals using safe inferences -- matching, not resolution*)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   749
fun clarify_step_tac ctxt =
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   750
  let val {safe0_netpair, safep_netpair, ...} = rep_claset_of ctxt in
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   751
    appSWrappers ctxt
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   752
     (FIRST'
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
   753
       [eq_assume_contr_tac ctxt,
82805
61aae966dd95 clarified modules: explicit structure Bires;
wenzelm
parents: 82804
diff changeset
   754
        Bires.bimatch_from_nets_tac ctxt safe0_netpair,
51798
ad3a241def73 uniform Proof.context for hyp_subst_tac;
wenzelm
parents: 51718
diff changeset
   755
        FIRST' (map (fn tac => tac ctxt) Data.hyp_subst_tacs),
59164
ff40c53d1af9 proper context for "net" tactics;
wenzelm
parents: 59119
diff changeset
   756
        n_bimatch_from_nets_tac ctxt 1 safep_netpair,
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58950
diff changeset
   757
        bimatch2_tac ctxt safep_netpair])
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   758
  end;
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   759
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   760
fun clarify_tac ctxt = SELECT_GOAL (REPEAT_DETERM (clarify_step_tac ctxt 1));
3705
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   761
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   762
76f3b2803982 Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents: 3546
diff changeset
   763
(*** 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
   764
4066
7b508ac609f7 Fixed comments
paulson
parents: 3727
diff changeset
   765
(*Backtracking is allowed among the various these unsafe ways of
7b508ac609f7 Fixed comments
paulson
parents: 3727
diff changeset
   766
  proving a subgoal.  *)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   767
fun inst0_step_tac ctxt =
58963
26bf09b95dda proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents: 58958
diff changeset
   768
  assume_tac ctxt APPEND'
26bf09b95dda proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents: 58958
diff changeset
   769
  contr_tac ctxt APPEND'
82805
61aae966dd95 clarified modules: explicit structure Bires;
wenzelm
parents: 82804
diff changeset
   770
  Bires.biresolve_from_nets_tac ctxt (#safe0_netpair (rep_claset_of ctxt));
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   771
4066
7b508ac609f7 Fixed comments
paulson
parents: 3727
diff changeset
   772
(*These unsafe steps could generate more subgoals.*)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   773
fun instp_step_tac ctxt =
82805
61aae966dd95 clarified modules: explicit structure Bires;
wenzelm
parents: 82804
diff changeset
   774
  Bires.biresolve_from_nets_tac ctxt (#safep_netpair (rep_claset_of ctxt));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   775
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   776
(*These steps could instantiate variables and are therefore unsafe.*)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   777
fun inst_step_tac ctxt = inst0_step_tac ctxt APPEND' instp_step_tac ctxt;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   778
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   779
fun unsafe_step_tac ctxt =
82805
61aae966dd95 clarified modules: explicit structure Bires;
wenzelm
parents: 82804
diff changeset
   780
  Bires.biresolve_from_nets_tac ctxt (#unsafe_netpair (rep_claset_of ctxt));
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   781
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   782
(*Single step for the prover.  FAILS unless it makes progress. *)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   783
fun step_tac ctxt i =
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   784
  safe_tac ctxt ORELSE appWrappers ctxt (inst_step_tac ctxt ORELSE' unsafe_step_tac ctxt) i;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   785
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   786
(*Using a "safe" rule to instantiate variables is unsafe.  This tactic
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   787
  allows backtracking from "safe" rules to "unsafe" rules here.*)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   788
fun slow_step_tac ctxt i =
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   789
  safe_tac ctxt ORELSE appWrappers ctxt (inst_step_tac ctxt APPEND' unsafe_step_tac ctxt) i;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   790
42791
36f787ae5f70 eliminated weight_ASTAR: int Unsynchronized.ref (astar_tac appears to be obsolete anyway);
wenzelm
parents: 42790
diff changeset
   791
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   792
(**** The following tactics all fail unless they solve one goal ****)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   793
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   794
(*Dumb but fast*)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   795
fun fast_tac ctxt =
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 52732
diff changeset
   796
  Object_Logic.atomize_prems_tac ctxt THEN' SELECT_GOAL (DEPTH_SOLVE (step_tac ctxt 1));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   797
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   798
(*Slower but smarter than fast_tac*)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   799
fun best_tac ctxt =
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 52732
diff changeset
   800
  Object_Logic.atomize_prems_tac ctxt THEN'
82804
070585eb5d54 minor performance tuning;
wenzelm
parents: 82587
diff changeset
   801
  SELECT_GOAL (BEST_FIRST (Thm.no_prems, Data.sizef) (step_tac ctxt 1));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   802
9402
480a1b40fdd6 strengthened force_tac by using new first_best_tac
oheimb
parents: 9184
diff changeset
   803
(*even a bit smarter than best_tac*)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   804
fun first_best_tac ctxt =
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 52732
diff changeset
   805
  Object_Logic.atomize_prems_tac ctxt THEN'
82804
070585eb5d54 minor performance tuning;
wenzelm
parents: 82587
diff changeset
   806
  SELECT_GOAL (BEST_FIRST (Thm.no_prems, Data.sizef) (FIRSTGOAL (step_tac ctxt)));
9402
480a1b40fdd6 strengthened force_tac by using new first_best_tac
oheimb
parents: 9184
diff changeset
   807
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   808
fun slow_tac ctxt =
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 52732
diff changeset
   809
  Object_Logic.atomize_prems_tac ctxt THEN'
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   810
  SELECT_GOAL (DEPTH_SOLVE (slow_step_tac ctxt 1));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   811
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   812
fun slow_best_tac ctxt =
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 52732
diff changeset
   813
  Object_Logic.atomize_prems_tac ctxt THEN'
82804
070585eb5d54 minor performance tuning;
wenzelm
parents: 82587
diff changeset
   814
  SELECT_GOAL (BEST_FIRST (Thm.no_prems, Data.sizef) (slow_step_tac ctxt 1));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   815
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   816
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   817
(***ASTAR with weight weight_ASTAR, by Norbert Voelker*)
42791
36f787ae5f70 eliminated weight_ASTAR: int Unsynchronized.ref (astar_tac appears to be obsolete anyway);
wenzelm
parents: 42790
diff changeset
   818
36f787ae5f70 eliminated weight_ASTAR: int Unsynchronized.ref (astar_tac appears to be obsolete anyway);
wenzelm
parents: 42790
diff changeset
   819
val weight_ASTAR = 5;
1587
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   820
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   821
fun astar_tac ctxt =
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 52732
diff changeset
   822
  Object_Logic.atomize_prems_tac ctxt THEN'
10382
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   823
  SELECT_GOAL
82804
070585eb5d54 minor performance tuning;
wenzelm
parents: 82587
diff changeset
   824
    (ASTAR (Thm.no_prems, fn lev => fn thm => Data.sizef thm + weight_ASTAR * lev)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   825
      (step_tac ctxt 1));
1587
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   826
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   827
fun slow_astar_tac ctxt =
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 52732
diff changeset
   828
  Object_Logic.atomize_prems_tac ctxt THEN'
10382
1fb807260ff1 atomize: all automated tactics that "solve" goals;
wenzelm
parents: 10309
diff changeset
   829
  SELECT_GOAL
82804
070585eb5d54 minor performance tuning;
wenzelm
parents: 82587
diff changeset
   830
    (ASTAR (Thm.no_prems, fn lev => fn thm => Data.sizef thm + weight_ASTAR * lev)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   831
      (slow_step_tac ctxt 1));
1587
e7d8a4957bac Now provides astar versions (thanks to Norbert Voelker)
paulson
parents: 1524
diff changeset
   832
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   833
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   834
(**** 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
   835
  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
   836
  easy theorems faster, but loses completeness -- and many of the harder
1800
3d9d2ef0cd3b Now implements delrules
paulson
parents: 1724
diff changeset
   837
  theorems such as 43. ****)
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   838
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   839
(*Non-deterministic!  Could always expand the first unsafe connective.
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   840
  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
   841
  greater search depth required.*)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   842
fun dup_step_tac ctxt =
82805
61aae966dd95 clarified modules: explicit structure Bires;
wenzelm
parents: 82804
diff changeset
   843
  Bires.biresolve_from_nets_tac ctxt (#dup_netpair (rep_claset_of ctxt));
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   844
5523
dc8cdc192cd0 added addD2, addE2, addSD2, and addSE2
oheimb
parents: 5028
diff changeset
   845
(*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
   846
local
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   847
  fun slow_step_tac' ctxt = appWrappers ctxt (instp_step_tac ctxt APPEND' dup_step_tac ctxt);
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   848
in
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   849
  fun depth_tac ctxt m i state = SELECT_GOAL
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   850
    (safe_steps_tac ctxt 1 THEN_ELSE
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   851
      (DEPTH_SOLVE (depth_tac ctxt m 1),
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   852
        inst0_step_tac ctxt 1 APPEND COND (K (m = 0)) no_tac
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   853
          (slow_step_tac' ctxt 1 THEN DEPTH_SOLVE (depth_tac ctxt (m - 1) 1)))) i state;
5757
0ad476dabbc6 corrected (and simplified) depth_tac
oheimb
parents: 5523
diff changeset
   854
end;
747
bdc066781063 deepen_tac: modified due to outcome of experiments. Its
lcp
parents: 681
diff changeset
   855
10736
7f94cb4517fa recover_order for single step tules;
wenzelm
parents: 10394
diff changeset
   856
(*Search, with depth bound m.
2173
08c68550460b Added a comment
paulson
parents: 2066
diff changeset
   857
  This is the "entry point", which does safe inferences first.*)
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   858
fun safe_depth_tac ctxt m = SUBGOAL (fn (prem, i) =>
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   859
  let
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   860
    val deti = (*No Vars in the goal?  No need to backtrack between goals.*)
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   861
      if exists_subterm (fn Var _ => true | _ => false) prem then DETERM else I;
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   862
  in
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   863
    SELECT_GOAL (TRY (safe_tac ctxt) THEN DEPTH_SOLVE (deti (depth_tac ctxt m 1))) i
42790
e07e56300faa misc tuning and simplification;
wenzelm
parents: 42439
diff changeset
   864
  end);
681
9b02474744ca Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents: 469
diff changeset
   865
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   866
fun deepen_tac ctxt = DEEPEN (2, 10) (safe_depth_tac ctxt);
24021
491c68f40bc4 added get_cs/map_cs;
wenzelm
parents: 23594
diff changeset
   867
491c68f40bc4 added get_cs/map_cs;
wenzelm
parents: 23594
diff changeset
   868
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   869
(* attributes *)
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   870
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   871
fun attrib f =
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   872
  Thm.declaration_attribute (fn th => fn context =>
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   873
    map_cs (f (Context.proof_of context) th) context);
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   874
18691
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   875
val safe_elim = attrib o addSE;
a2dc15d9d6c8 attributes: optional weight;
wenzelm
parents: 18688
diff changeset
   876
val safe_intro = attrib o addSI;
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   877
val safe_dest = attrib o addSD;
60943
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   878
val unsafe_elim = attrib o addE;
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   879
val unsafe_intro = attrib o addI;
7cf1ea00a020 tuned signature;
wenzelm
parents: 60942
diff changeset
   880
val unsafe_dest = attrib o addD;
45375
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 42817
diff changeset
   881
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 42817
diff changeset
   882
val rule_del =
60945
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   883
  Thm.declaration_attribute (fn th => fn context =>
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   884
    context
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   885
    |> map_cs (delrule (Context.proof_of context) th)
88aaecbaf61e clarified context;
wenzelm
parents: 60944
diff changeset
   886
    |> Thm.attribute_declaration Context_Rules.rule_del th);
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   887
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   888
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   889
5885
6c920d876098 tuned attribute names;
wenzelm
parents: 5841
diff changeset
   890
(** concrete syntax of attributes **)
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   891
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   892
val introN = "intro";
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   893
val elimN = "elim";
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   894
val destN = "dest";
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   895
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   896
val _ =
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   897
  Theory.setup
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   898
   (Attrib.setup \<^binding>\<open>swapped\<close> (Scan.succeed swapped)
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   899
      "classical swap of introduction rule" #>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   900
    Attrib.setup \<^binding>\<open>dest\<close> (Context_Rules.add safe_dest unsafe_dest Context_Rules.dest_query)
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   901
      "declaration of Classical destruction rule" #>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   902
    Attrib.setup \<^binding>\<open>elim\<close> (Context_Rules.add safe_elim unsafe_elim Context_Rules.elim_query)
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   903
      "declaration of Classical elimination rule" #>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   904
    Attrib.setup \<^binding>\<open>intro\<close> (Context_Rules.add safe_intro unsafe_intro Context_Rules.intro_query)
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   905
      "declaration of Classical introduction rule" #>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   906
    Attrib.setup \<^binding>\<open>rule\<close> (Scan.lift Args.del >> K rule_del)
82818
c6b3f0ee0a69 tuned messages;
wenzelm
parents: 82815
diff changeset
   907
      "remove declaration of Classical intro/elim/dest rule");
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   908
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   909
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   910
7230
4ca0d7839ff1 renamed 'single' to 'some_rule';
wenzelm
parents: 7154
diff changeset
   911
(** proof methods **)
4ca0d7839ff1 renamed 'single' to 'some_rule';
wenzelm
parents: 7154
diff changeset
   912
4ca0d7839ff1 renamed 'single' to 'some_rule';
wenzelm
parents: 7154
diff changeset
   913
local
4ca0d7839ff1 renamed 'single' to 'some_rule';
wenzelm
parents: 7154
diff changeset
   914
30609
983e8b6e4e69 Disposed old declarations, tactics, tactic combinators that refer to the simpset or claset of an implicit theory;
wenzelm
parents: 30558
diff changeset
   915
fun some_rule_tac ctxt facts = SUBGOAL (fn (goal, i) =>
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   916
  let
61049
0d401f874942 trim context for persistent storage;
wenzelm
parents: 60946
diff changeset
   917
    val [rules1, rules2, rules4] = Context_Rules.find_rules ctxt false facts goal;
60942
wenzelm
parents: 60817
diff changeset
   918
    val {extra_netpair, ...} = rep_claset_of ctxt;
61049
0d401f874942 trim context for persistent storage;
wenzelm
parents: 60946
diff changeset
   919
    val rules3 = Context_Rules.find_rules_netpair ctxt true facts goal extra_netpair;
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   920
    val rules = rules1 @ rules2 @ rules3 @ rules4;
58950
d07464875dd4 optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents: 58893
diff changeset
   921
    val ruleq = Drule.multi_resolves (SOME ctxt) facts rules;
52732
b4da1f2ec73f standardized aliases;
wenzelm
parents: 52699
diff changeset
   922
    val _ = Method.trace ctxt rules;
12376
480303e3fa08 simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents: 12362
diff changeset
   923
  in
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59164
diff changeset
   924
    fn st => Seq.maps (fn rule => resolve_tac ctxt [rule] i st) ruleq
18834
7e94af77cfce default rule step: norm_hhf_tac;
wenzelm
parents: 18728
diff changeset
   925
  end)
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 52732
diff changeset
   926
  THEN_ALL_NEW Goal.norm_hhf_tac ctxt;
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   927
30609
983e8b6e4e69 Disposed old declarations, tactics, tactic combinators that refer to the simpset or claset of an implicit theory;
wenzelm
parents: 30558
diff changeset
   928
in
7281
2f454e1fd372 renamed 'some_rule' to 'rule';
wenzelm
parents: 7272
diff changeset
   929
30609
983e8b6e4e69 Disposed old declarations, tactics, tactic combinators that refer to the simpset or claset of an implicit theory;
wenzelm
parents: 30558
diff changeset
   930
fun rule_tac ctxt [] facts = some_rule_tac ctxt facts
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 52732
diff changeset
   931
  | rule_tac ctxt rules facts = Method.rule_tac ctxt rules facts;
30609
983e8b6e4e69 Disposed old declarations, tactics, tactic combinators that refer to the simpset or claset of an implicit theory;
wenzelm
parents: 30558
diff changeset
   932
60619
7512716f03db no arguments for "standard" (or old "default") methods;
wenzelm
parents: 60618
diff changeset
   933
fun standard_tac ctxt facts =
7512716f03db no arguments for "standard" (or old "default") methods;
wenzelm
parents: 60618
diff changeset
   934
  HEADGOAL (some_rule_tac ctxt facts) ORELSE
60618
4c79543cc376 renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents: 60097
diff changeset
   935
  Class.standard_intro_classes_tac ctxt facts;
4c79543cc376 renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents: 60097
diff changeset
   936
7230
4ca0d7839ff1 renamed 'single' to 'some_rule';
wenzelm
parents: 7154
diff changeset
   937
end;
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   938
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   939
6502
bc30e13b36a8 improved 'single' method;
wenzelm
parents: 6492
diff changeset
   940
(* automatic methods *)
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   941
5927
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
   942
val cla_modifiers =
64556
851ae0e7b09c more symbols;
wenzelm
parents: 62939
diff changeset
   943
 [Args.$$$ destN -- Args.bang_colon >> K (Method.modifier (safe_dest NONE) \<^here>),
851ae0e7b09c more symbols;
wenzelm
parents: 62939
diff changeset
   944
  Args.$$$ destN -- Args.colon >> K (Method.modifier (unsafe_dest NONE) \<^here>),
851ae0e7b09c more symbols;
wenzelm
parents: 62939
diff changeset
   945
  Args.$$$ elimN -- Args.bang_colon >> K (Method.modifier (safe_elim NONE) \<^here>),
851ae0e7b09c more symbols;
wenzelm
parents: 62939
diff changeset
   946
  Args.$$$ elimN -- Args.colon >> K (Method.modifier (unsafe_elim NONE) \<^here>),
851ae0e7b09c more symbols;
wenzelm
parents: 62939
diff changeset
   947
  Args.$$$ introN -- Args.bang_colon >> K (Method.modifier (safe_intro NONE) \<^here>),
851ae0e7b09c more symbols;
wenzelm
parents: 62939
diff changeset
   948
  Args.$$$ introN -- Args.colon >> K (Method.modifier (unsafe_intro NONE) \<^here>),
851ae0e7b09c more symbols;
wenzelm
parents: 62939
diff changeset
   949
  Args.del -- Args.colon >> K (Method.modifier rule_del \<^here>)];
5927
991483daa1a4 expoer cla_method('), cla_modifiers;
wenzelm
parents: 5885
diff changeset
   950
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   951
fun cla_method tac = Method.sections cla_modifiers >> K (SIMPLE_METHOD o tac);
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 42792
diff changeset
   952
fun cla_method' tac = Method.sections cla_modifiers >> K (SIMPLE_METHOD' o tac);
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   953
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   954
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   955
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   956
(** method setup **)
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   957
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   958
val _ =
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   959
  Theory.setup
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   960
   (Method.setup \<^binding>\<open>standard\<close> (Scan.succeed (METHOD o standard_tac))
60618
4c79543cc376 renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents: 60097
diff changeset
   961
      "standard proof step: classical intro/elim rule or class introduction" #>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   962
    Method.setup \<^binding>\<open>rule\<close>
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   963
      (Attrib.thms >> (fn rules => fn ctxt => METHOD (HEADGOAL o rule_tac ctxt rules)))
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   964
      "apply some intro/elim rule (potentially classical)" #>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   965
    Method.setup \<^binding>\<open>contradiction\<close>
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   966
      (Scan.succeed (fn ctxt => Method.rule ctxt [Data.not_elim, Drule.rotate_prems 1 Data.not_elim]))
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   967
      "proof by contradiction" #>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   968
    Method.setup \<^binding>\<open>clarify\<close> (cla_method' (CHANGED_PROP oo clarify_tac))
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   969
      "repeatedly apply safe steps" #>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   970
    Method.setup \<^binding>\<open>fast\<close> (cla_method' fast_tac) "classical prover (depth-first)" #>
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   971
    Method.setup \<^binding>\<open>slow\<close> (cla_method' slow_tac) "classical prover (slow depth-first)" #>
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   972
    Method.setup \<^binding>\<open>best\<close> (cla_method' best_tac) "classical prover (best-first)" #>
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   973
    Method.setup \<^binding>\<open>deepen\<close>
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   974
      (Scan.lift (Scan.optional Parse.nat 4) --| Method.sections cla_modifiers
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   975
        >> (fn n => fn ctxt => SIMPLE_METHOD' (deepen_tac ctxt n)))
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   976
      "classical prover (iterative deepening)" #>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   977
    Method.setup \<^binding>\<open>safe\<close> (cla_method (CHANGED_PROP o safe_tac))
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   978
      "classical prover (apply safe rules)" #>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   979
    Method.setup \<^binding>\<open>safe_step\<close> (cla_method' safe_step_tac)
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   980
      "single classical step (safe rules)" #>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   981
    Method.setup \<^binding>\<open>inst_step\<close> (cla_method' inst_step_tac)
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   982
      "single classical step (safe rules, allow instantiations)" #>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   983
    Method.setup \<^binding>\<open>step\<close> (cla_method' step_tac)
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   984
      "single classical step (safe and unsafe rules)" #>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   985
    Method.setup \<^binding>\<open>slow_step\<close> (cla_method' slow_step_tac)
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   986
      "single classical step (safe and unsafe rules, allow backtracking)" #>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   987
    Method.setup \<^binding>\<open>clarify_step\<close> (cla_method' clarify_step_tac)
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58048
diff changeset
   988
      "single classical step (safe rules, without splitting)");
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   989
8667
4230d17073ea print_simpset / print_claset command;
wenzelm
parents: 8519
diff changeset
   990
4230d17073ea print_simpset / print_claset command;
wenzelm
parents: 8519
diff changeset
   991
(** outer syntax **)
4230d17073ea print_simpset / print_claset command;
wenzelm
parents: 8519
diff changeset
   992
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24358
diff changeset
   993
val _ =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 67649
diff changeset
   994
  Outer_Syntax.command \<^command_keyword>\<open>print_claset\<close> "print context of Classical Reasoner"
60097
d20ca79d50e4 discontinued pointless warnings: commands are only defined inside a theory context;
wenzelm
parents: 59970
diff changeset
   995
    (Scan.succeed (Toplevel.keep (print_claset o Toplevel.context_of)));
8667
4230d17073ea print_simpset / print_claset command;
wenzelm
parents: 8519
diff changeset
   996
5841
d05df8752a8a local claset theory data;
wenzelm
parents: 5757
diff changeset
   997
end;