src/Pure/simplifier.ML
author wenzelm
Wed, 14 Aug 2024 18:59:49 +0200
changeset 80708 3f2c371a3de9
parent 80706 29734511c661
child 80709 e6f026505c5b
permissions -rw-r--r--
tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/simplifier.ML
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
     2
    Author:     Tobias Nipkow and Markus Wenzel, TU Muenchen
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
     3
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
     4
Generic simplifier, suitable for most logics (see also
41386
9400026a82f5 tuned comment
haftmann
parents: 41253
diff changeset
     5
raw_simplifier.ML for the actual meta-level rewriting engine).
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
     6
*)
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
     7
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
     8
signature BASIC_SIMPLIFIER =
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
     9
sig
41228
e1fce873b814 renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents: 41226
diff changeset
    10
  include BASIC_RAW_SIMPLIFIER
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    11
  val simp_tac: Proof.context -> int -> tactic
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    12
  val asm_simp_tac: Proof.context -> int -> tactic
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    13
  val full_simp_tac: Proof.context -> int -> tactic
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    14
  val asm_lr_simp_tac: Proof.context -> int -> tactic
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    15
  val asm_full_simp_tac: Proof.context -> int -> tactic
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    16
  val safe_simp_tac: Proof.context -> int -> tactic
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    17
  val safe_asm_simp_tac: Proof.context -> int -> tactic
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    18
  val safe_full_simp_tac: Proof.context -> int -> tactic
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    19
  val safe_asm_lr_simp_tac: Proof.context -> int -> tactic
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    20
  val safe_asm_full_simp_tac: Proof.context -> int -> tactic
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    21
  val simplify: Proof.context -> thm -> thm
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    22
  val asm_simplify: Proof.context -> thm -> thm
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    23
  val full_simplify: Proof.context -> thm -> thm
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    24
  val asm_lr_simplify: Proof.context -> thm -> thm
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    25
  val asm_full_simplify: Proof.context -> thm -> thm
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
    26
end;
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
    27
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
    28
signature SIMPLIFIER =
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
    29
sig
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
    30
  include BASIC_SIMPLIFIER
80706
29734511c661 clarified signature;
wenzelm
parents: 80700
diff changeset
    31
  val dest_simps: simpset -> (Thm_Name.T * thm) list
29734511c661 clarified signature;
wenzelm
parents: 80700
diff changeset
    32
  val dest_congs: simpset -> (cong_name * thm) list
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    33
  val map_ss: (Proof.context -> Proof.context) -> Context.generic -> Context.generic
56510
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
    34
  val attrib: (thm -> Proof.context -> Proof.context) -> attribute
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
    35
  val simp_add: attribute
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
    36
  val simp_del: attribute
68403
223172b97d0b reorient -> split; documented split
nipkow
parents: 68046
diff changeset
    37
  val simp_flip: attribute
56510
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
    38
  val cong_add: attribute
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
    39
  val cong_del: attribute
78115
f360ee6ce670 tuned signature;
wenzelm
parents: 78114
diff changeset
    40
  val check_simproc: Proof.context -> xstring * Position.T -> string * simproc
56510
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
    41
  val the_simproc: Proof.context -> string -> simproc
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
    42
  val make_simproc: Proof.context ->
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
    43
    {name: string, lhss: term list, proc: morphism -> proc, identifier: thm list} -> simproc
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
    44
  type ('a, 'b, 'c) simproc_spec =
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
    45
    {passive: bool, name: binding, lhss: 'a list, proc: 'b, identifier: 'c}
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
    46
  val read_simproc_spec: Proof.context ->
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
    47
    (string, 'b, 'c) simproc_spec -> (term, 'b, 'c) simproc_spec
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
    48
  val define_simproc: (term, morphism -> proc, thm list) simproc_spec -> local_theory ->
78810
9473dd79e9c3 more robust read_simproc_spec: proper error positions;
wenzelm
parents: 78809
diff changeset
    49
    simproc * local_theory
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
    50
  val simproc_setup: (term, morphism -> proc, thm list) simproc_spec -> simproc
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
    51
  val simproc_setup_cmd: (string, morphism -> proc, thm list) simproc_spec -> simproc
78803
577835250124 clarified signature;
wenzelm
parents: 78802
diff changeset
    52
  val simproc_setup_command: (local_theory -> local_theory) parser
80700
f6c6d0988fba clarified signature: less redundant types;
wenzelm
parents: 80699
diff changeset
    53
  val add_proc: simproc -> Proof.context -> Proof.context
f6c6d0988fba clarified signature: less redundant types;
wenzelm
parents: 80699
diff changeset
    54
  val del_proc: simproc -> Proof.context -> Proof.context
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59621
diff changeset
    55
  val pretty_simpset: bool -> Proof.context -> Pretty.T
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    56
  val default_mk_sym: Proof.context -> thm -> thm option
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    57
  val prems_of: Proof.context -> thm list
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    58
  val add_simp: thm -> Proof.context -> Proof.context
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    59
  val del_simp: thm -> Proof.context -> Proof.context
63221
7d43fbbaba28 avoid warnings on duplicate rules in the given list;
wenzelm
parents: 62913
diff changeset
    60
  val init_simpset: thm list -> Proof.context -> Proof.context
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    61
  val add_eqcong: thm -> Proof.context -> Proof.context
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    62
  val del_eqcong: thm -> Proof.context -> Proof.context
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    63
  val add_cong: thm -> Proof.context -> Proof.context
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    64
  val del_cong: thm -> Proof.context -> Proof.context
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    65
  val add_prems: thm list -> Proof.context -> Proof.context
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    66
  val mksimps: Proof.context -> thm -> thm list
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    67
  val set_mksimps: (Proof.context -> thm -> thm list) -> Proof.context -> Proof.context
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    68
  val set_mkcong: (Proof.context -> thm -> thm) -> Proof.context -> Proof.context
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    69
  val set_mksym: (Proof.context -> thm -> thm option) -> Proof.context -> Proof.context
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    70
  val set_mkeqTrue: (Proof.context -> thm -> thm option) -> Proof.context -> Proof.context
70586
57df8a85317a clarified signature;
wenzelm
parents: 70308
diff changeset
    71
  val set_term_ord: term ord -> Proof.context -> Proof.context
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    72
  val set_subgoaler: (Proof.context -> int -> tactic) -> Proof.context -> Proof.context
54729
c5cd7a58cf2d generic trace operations for main steps of Simplifier;
wenzelm
parents: 54728
diff changeset
    73
  type trace_ops
54731
384ac33802b0 clarified Trace_Ops: global theory data avoids init of simpset in Pure.thy, which is important to act as neutral element in merge;
wenzelm
parents: 54729
diff changeset
    74
  val set_trace_ops: trace_ops -> theory -> theory
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    75
  val rewrite: Proof.context -> conv
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    76
  val asm_rewrite: Proof.context -> conv
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    77
  val full_rewrite: Proof.context -> conv
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    78
  val asm_lr_rewrite: Proof.context -> conv
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    79
  val asm_full_rewrite: Proof.context -> conv
30513
1796b8ea88aa eliminated type Args.T;
wenzelm
parents: 30510
diff changeset
    80
  val cong_modifiers: Method.modifier parser list
1796b8ea88aa eliminated type Args.T;
wenzelm
parents: 30510
diff changeset
    81
  val simp_modifiers': Method.modifier parser list
1796b8ea88aa eliminated type Args.T;
wenzelm
parents: 30510
diff changeset
    82
  val simp_modifiers: Method.modifier parser list
1796b8ea88aa eliminated type Args.T;
wenzelm
parents: 30510
diff changeset
    83
  val method_setup: Method.modifier parser list -> theory -> theory
63532
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
    84
  val unsafe_solver_tac: Proof.context -> int -> tactic
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
    85
  val unsafe_solver: solver
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
    86
  val safe_solver_tac: Proof.context -> int -> tactic
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
    87
  val safe_solver: solver
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
    88
end;
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
    89
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
    90
structure Simplifier: SIMPLIFIER =
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
    91
struct
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
    92
41228
e1fce873b814 renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents: 41226
diff changeset
    93
open Raw_Simplifier;
21708
45e7491bea47 reorganized structure Tactic vs. MetaSimplifier;
wenzelm
parents: 21687
diff changeset
    94
45e7491bea47 reorganized structure Tactic vs. MetaSimplifier;
wenzelm
parents: 21687
diff changeset
    95
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
    96
(** declarations **)
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
    97
26497
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26463
diff changeset
    98
(* attributes *)
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26463
diff changeset
    99
45620
f2a587696afb modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 45375
diff changeset
   100
fun attrib f = Thm.declaration_attribute (map_ss o f);
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   101
45620
f2a587696afb modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 45375
diff changeset
   102
val simp_add = attrib add_simp;
f2a587696afb modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 45375
diff changeset
   103
val simp_del = attrib del_simp;
68403
223172b97d0b reorient -> split; documented split
nipkow
parents: 68046
diff changeset
   104
val simp_flip = attrib flip_simp;
45620
f2a587696afb modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 45375
diff changeset
   105
val cong_add = attrib add_cong;
f2a587696afb modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 45375
diff changeset
   106
val cong_del = attrib del_cong;
26497
1873915c64a9 purely functional setup of claset/simpset/clasimpset;
wenzelm
parents: 26463
diff changeset
   107
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   108
22201
6fe46a7259ec added def_simproc(_i) -- define named simprocs;
wenzelm
parents: 22132
diff changeset
   109
(** named simprocs **)
6fe46a7259ec added def_simproc(_i) -- define named simprocs;
wenzelm
parents: 22132
diff changeset
   110
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   111
structure Simprocs = Generic_Data
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   112
(
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   113
  type T = simproc Name_Space.table;
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   114
  val empty : T = Name_Space.empty_table "simproc";
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   115
  fun merge data : T = Name_Space.merge_tables data;
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   116
);
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   117
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   118
22204
33da3a55c00e added get_simproc, @{simproc};
wenzelm
parents: 22201
diff changeset
   119
(* get simprocs *)
33da3a55c00e added get_simproc, @{simproc};
wenzelm
parents: 22201
diff changeset
   120
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   121
val get_simprocs = Simprocs.get o Context.Proof;
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   122
42466
bbce02fcba60 added Name_Space.check/get convenience;
wenzelm
parents: 42465
diff changeset
   123
val the_simproc = Name_Space.get o get_simprocs;
78115
f360ee6ce670 tuned signature;
wenzelm
parents: 78114
diff changeset
   124
fun check_simproc ctxt = Name_Space.check (Context.Proof ctxt) (get_simprocs ctxt);
42465
1ba52683512a clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents: 42464
diff changeset
   125
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 52458
diff changeset
   126
val _ = Theory.setup
69592
a80d8ec6c998 support for isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   127
  (ML_Antiquotation.value_embedded \<^binding>\<open>simproc\<close>
78115
f360ee6ce670 tuned signature;
wenzelm
parents: 78114
diff changeset
   128
    (Args.context -- Scan.lift Parse.embedded_position >> (fn (ctxt, name) =>
f360ee6ce670 tuned signature;
wenzelm
parents: 78114
diff changeset
   129
      "Simplifier.the_simproc ML_context " ^ ML_Syntax.print_string (#1 (check_simproc ctxt name)))));
22204
33da3a55c00e added get_simproc, @{simproc};
wenzelm
parents: 22201
diff changeset
   130
33da3a55c00e added get_simproc, @{simproc};
wenzelm
parents: 22201
diff changeset
   131
33da3a55c00e added get_simproc, @{simproc};
wenzelm
parents: 22201
diff changeset
   132
(* define simprocs *)
22201
6fe46a7259ec added def_simproc(_i) -- define named simprocs;
wenzelm
parents: 22132
diff changeset
   133
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   134
fun make_simproc ctxt {name, lhss, proc, identifier} =
61144
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61098
diff changeset
   135
  let
70308
7f568724d67e clarified signature;
wenzelm
parents: 69592
diff changeset
   136
    val ctxt' = fold Proof_Context.augment lhss ctxt;
61144
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61098
diff changeset
   137
    val lhss' = Variable.export_terms ctxt' ctxt lhss;
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61098
diff changeset
   138
  in
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   139
    cert_simproc (Proof_Context.theory_of ctxt)
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   140
      {name = name, lhss = lhss', proc = Morphism.entity proc, identifier = identifier}
61144
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61098
diff changeset
   141
  end;
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61098
diff changeset
   142
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   143
type ('a, 'b, 'c) simproc_spec =
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   144
  {passive: bool, name: binding, lhss: 'a list, proc: 'b, identifier: 'c};
78810
9473dd79e9c3 more robust read_simproc_spec: proper error positions;
wenzelm
parents: 78809
diff changeset
   145
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   146
fun read_simproc_spec ctxt {passive, name, lhss, proc, identifier} =
78810
9473dd79e9c3 more robust read_simproc_spec: proper error positions;
wenzelm
parents: 78809
diff changeset
   147
  let
9473dd79e9c3 more robust read_simproc_spec: proper error positions;
wenzelm
parents: 78809
diff changeset
   148
    val lhss' =
9473dd79e9c3 more robust read_simproc_spec: proper error positions;
wenzelm
parents: 78809
diff changeset
   149
      Syntax.read_terms ctxt lhss handle ERROR msg =>
9473dd79e9c3 more robust read_simproc_spec: proper error positions;
wenzelm
parents: 78809
diff changeset
   150
        error (msg ^ Position.here_list (map Syntax.read_input_pos lhss));
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   151
  in {passive = passive, name = name, lhss = lhss', proc = proc, identifier = identifier} end;
78809
76ab04bca48c tuned signature;
wenzelm
parents: 78805
diff changeset
   152
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   153
fun define_simproc {passive, name, lhss, proc, identifier} lthy =
22201
6fe46a7259ec added def_simproc(_i) -- define named simprocs;
wenzelm
parents: 22132
diff changeset
   154
  let
78114
43154a48da69 clarified treatment of context;
wenzelm
parents: 78095
diff changeset
   155
    val simproc0 =
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   156
      make_simproc lthy
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   157
        {name = Local_Theory.full_name lthy name, lhss = lhss, proc = proc, identifier = identifier};
22201
6fe46a7259ec added def_simproc(_i) -- define named simprocs;
wenzelm
parents: 22132
diff changeset
   158
  in
78802
88593174aef5 tuned signature;
wenzelm
parents: 78800
diff changeset
   159
    lthy |> Local_Theory.declaration {syntax = false, pervasive = false, pos = Binding.pos_of name}
78095
bc42c074e58f tuned signature: more position information;
wenzelm
parents: 78077
diff changeset
   160
      (fn phi => fn context =>
bc42c074e58f tuned signature: more position information;
wenzelm
parents: 78077
diff changeset
   161
        let
78802
88593174aef5 tuned signature;
wenzelm
parents: 78800
diff changeset
   162
          val name' = Morphism.binding phi name;
78114
43154a48da69 clarified treatment of context;
wenzelm
parents: 78095
diff changeset
   163
          val simproc' = simproc0 |> transform_simproc phi |> trim_context_simproc;
78095
bc42c074e58f tuned signature: more position information;
wenzelm
parents: 78077
diff changeset
   164
        in
bc42c074e58f tuned signature: more position information;
wenzelm
parents: 78077
diff changeset
   165
          context
78802
88593174aef5 tuned signature;
wenzelm
parents: 78800
diff changeset
   166
          |> Simprocs.map (#2 o Name_Space.define context true (name', simproc'))
80700
f6c6d0988fba clarified signature: less redundant types;
wenzelm
parents: 80699
diff changeset
   167
          |> not passive ? map_ss (add_proc simproc')
78095
bc42c074e58f tuned signature: more position information;
wenzelm
parents: 78077
diff changeset
   168
        end)
78796
f34926a91fea clarified signature: more concise simproc setup in ML;
wenzelm
parents: 78792
diff changeset
   169
    |> pair simproc0
22201
6fe46a7259ec added def_simproc(_i) -- define named simprocs;
wenzelm
parents: 22132
diff changeset
   170
  end;
6fe46a7259ec added def_simproc(_i) -- define named simprocs;
wenzelm
parents: 22132
diff changeset
   171
6fe46a7259ec added def_simproc(_i) -- define named simprocs;
wenzelm
parents: 22132
diff changeset
   172
78805
62616d8422c5 added ML antiquotation "simproc_setup";
wenzelm
parents: 78803
diff changeset
   173
(* simproc_setup with concrete syntax *)
22201
6fe46a7259ec added def_simproc(_i) -- define named simprocs;
wenzelm
parents: 22132
diff changeset
   174
78805
62616d8422c5 added ML antiquotation "simproc_setup";
wenzelm
parents: 78803
diff changeset
   175
val simproc_setup =
62616d8422c5 added ML antiquotation "simproc_setup";
wenzelm
parents: 78803
diff changeset
   176
  Named_Target.setup_result Raw_Simplifier.transform_simproc o define_simproc;
22201
6fe46a7259ec added def_simproc(_i) -- define named simprocs;
wenzelm
parents: 22132
diff changeset
   177
78810
9473dd79e9c3 more robust read_simproc_spec: proper error positions;
wenzelm
parents: 78809
diff changeset
   178
fun simproc_setup_cmd args =
9473dd79e9c3 more robust read_simproc_spec: proper error positions;
wenzelm
parents: 78809
diff changeset
   179
  Named_Target.setup_result Raw_Simplifier.transform_simproc
9473dd79e9c3 more robust read_simproc_spec: proper error positions;
wenzelm
parents: 78809
diff changeset
   180
    (fn lthy => lthy |> define_simproc (read_simproc_spec lthy args));
78796
f34926a91fea clarified signature: more concise simproc setup in ML;
wenzelm
parents: 78792
diff changeset
   181
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   182
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   183
val parse_simproc_spec =
78799
807b249f1061 clarified syntax and order of parameters;
wenzelm
parents: 78798
diff changeset
   184
  Scan.optional (Parse.$$$ "passive" >> K true) false --
807b249f1061 clarified syntax and order of parameters;
wenzelm
parents: 78798
diff changeset
   185
  Parse.binding --
807b249f1061 clarified syntax and order of parameters;
wenzelm
parents: 78798
diff changeset
   186
    (Parse.$$$ "(" |-- Parse.enum1 "|" Parse.term --| Parse.$$$ ")") --
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   187
    (Parse.$$$ "=" |-- Parse.ML_source) --
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   188
    Scan.option ((Parse.position (Parse.$$$ "identifier") >> #2) -- Parse.thms1)
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   189
  >> (fn ((((a, b), c), d), e) => {passive = a, name = b, lhss = c, proc = d, identifier = e});
78796
f34926a91fea clarified signature: more concise simproc setup in ML;
wenzelm
parents: 78792
diff changeset
   190
78805
62616d8422c5 added ML antiquotation "simproc_setup";
wenzelm
parents: 78803
diff changeset
   191
val _ = Theory.setup
62616d8422c5 added ML antiquotation "simproc_setup";
wenzelm
parents: 78803
diff changeset
   192
  (ML_Context.add_antiquotation_embedded \<^binding>\<open>simproc_setup\<close>
62616d8422c5 added ML antiquotation "simproc_setup";
wenzelm
parents: 78803
diff changeset
   193
    (fn _ => fn input => fn ctxt =>
62616d8422c5 added ML antiquotation "simproc_setup";
wenzelm
parents: 78803
diff changeset
   194
      let
62616d8422c5 added ML antiquotation "simproc_setup";
wenzelm
parents: 78803
diff changeset
   195
        val ml = ML_Lex.tokenize_no_range;
62616d8422c5 added ML antiquotation "simproc_setup";
wenzelm
parents: 78803
diff changeset
   196
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   197
        val {passive, name, lhss, proc, identifier} = input
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   198
          |> Parse.read_embedded ctxt (Thy_Header.get_keywords' ctxt) parse_simproc_spec
78810
9473dd79e9c3 more robust read_simproc_spec: proper error positions;
wenzelm
parents: 78809
diff changeset
   199
          |> read_simproc_spec ctxt;
78796
f34926a91fea clarified signature: more concise simproc setup in ML;
wenzelm
parents: 78792
diff changeset
   200
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   201
        val (decl1, ctxt1) = ML_Context.read_antiquotes proc ctxt;
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   202
        val (decl2, ctxt2) =
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   203
          (case identifier of
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   204
            NONE => (K ("", "[]"), ctxt1)
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   205
          | SOME (_, thms) => ML_Thms.thm_binding "thms" false (Attrib.eval_thms ctxt1 thms) ctxt1);
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   206
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   207
        fun decl' ctxt' =
78805
62616d8422c5 added ML antiquotation "simproc_setup";
wenzelm
parents: 78803
diff changeset
   208
          let
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   209
            val (ml_env1, ml_body1) = decl1 ctxt';
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   210
            val (ml_env2, ml_body2) = decl2 ctxt' |> apply2 ml;
78805
62616d8422c5 added ML antiquotation "simproc_setup";
wenzelm
parents: 78803
diff changeset
   211
            val ml_body' =
62616d8422c5 added ML antiquotation "simproc_setup";
wenzelm
parents: 78803
diff changeset
   212
              ml "Simplifier.simproc_setup {passive = " @ ml (Bool.toString passive) @
62616d8422c5 added ML antiquotation "simproc_setup";
wenzelm
parents: 78803
diff changeset
   213
              ml ", name = " @ ml (ML_Syntax.make_binding (Binding.name_of name, Binding.pos_of name)) @
78810
9473dd79e9c3 more robust read_simproc_spec: proper error positions;
wenzelm
parents: 78809
diff changeset
   214
              ml ", lhss = " @ ml (ML_Syntax.print_list ML_Syntax.print_term lhss) @
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   215
              ml ", proc = (" @ ml_body1 @ ml ")" @
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   216
              ml ", identifier = (" @ ml_body2 @ ml ")}";
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   217
          in (ml_env1 @ ml_env2, ml_body') end;
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   218
      in (decl', ctxt2) end));
78797
fc598652fb8a clarified signature;
wenzelm
parents: 78796
diff changeset
   219
78803
577835250124 clarified signature;
wenzelm
parents: 78802
diff changeset
   220
val simproc_setup_command =
78812
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   221
  parse_simproc_spec >> (fn {passive, name, lhss, proc, identifier} =>
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   222
    (case identifier of
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   223
      NONE =>
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   224
        Context.proof_map
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   225
          (ML_Context.expression (Input.pos_of proc)
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   226
            (ML_Lex.read
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   227
              ("Simplifier.simproc_setup_cmd {passive = " ^ Bool.toString passive ^
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   228
               ", name = " ^ ML_Syntax.make_binding (Binding.name_of name, Binding.pos_of name) ^
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   229
               ", lhss = " ^ ML_Syntax.print_strings lhss ^
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   230
               ", proc = (") @ ML_Lex.read_source proc @ ML_Lex.read "), identifier = []}"))
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   231
    | SOME (pos, _) =>
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   232
        error ("Bad command " ^ Markup.markup Markup.keyword1 "simproc_setup" ^
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   233
          " with " ^ Markup.markup Markup.keyword2 "identifier" ^
d769a183d51d simprocs may be distinguished via 'identifier': only works for ML antiquotation (see also 13252110a6fe);
wenzelm
parents: 78810
diff changeset
   234
          ": this is only supported in\nML antiquotation \<^simproc_setup>\<open>...\<close>" ^ Position.here pos)));
78803
577835250124 clarified signature;
wenzelm
parents: 78802
diff changeset
   235
78796
f34926a91fea clarified signature: more concise simproc setup in ML;
wenzelm
parents: 78792
diff changeset
   236
f34926a91fea clarified signature: more concise simproc setup in ML;
wenzelm
parents: 78792
diff changeset
   237
71788
ca3ac5238c41 hooks for foundational terms: protection of foundational terms during simplification
haftmann
parents: 71235
diff changeset
   238
(** congruence rule to protect foundational terms of local definitions **)
ca3ac5238c41 hooks for foundational terms: protection of foundational terms during simplification
haftmann
parents: 71235
diff changeset
   239
ca3ac5238c41 hooks for foundational terms: protection of foundational terms during simplification
haftmann
parents: 71235
diff changeset
   240
local
ca3ac5238c41 hooks for foundational terms: protection of foundational terms during simplification
haftmann
parents: 71235
diff changeset
   241
78043
wenzelm
parents: 78039
diff changeset
   242
fun add_foundation_cong (binding, (const, target_params)) gthy =
wenzelm
parents: 78039
diff changeset
   243
  if null target_params then gthy
71788
ca3ac5238c41 hooks for foundational terms: protection of foundational terms during simplification
haftmann
parents: 71235
diff changeset
   244
  else
ca3ac5238c41 hooks for foundational terms: protection of foundational terms during simplification
haftmann
parents: 71235
diff changeset
   245
    let
78043
wenzelm
parents: 78039
diff changeset
   246
      val thy = Context.theory_of gthy;
wenzelm
parents: 78039
diff changeset
   247
      val cong =
wenzelm
parents: 78039
diff changeset
   248
        list_comb (const, target_params)
wenzelm
parents: 78039
diff changeset
   249
        |> Logic.varify_global
wenzelm
parents: 78039
diff changeset
   250
        |> Thm.global_cterm_of thy
wenzelm
parents: 78039
diff changeset
   251
        |> Thm.reflexive
wenzelm
parents: 78039
diff changeset
   252
        |> Thm.close_derivation \<^here>;
wenzelm
parents: 78039
diff changeset
   253
      val cong_binding = Binding.qualify_name true binding "cong";
71788
ca3ac5238c41 hooks for foundational terms: protection of foundational terms during simplification
haftmann
parents: 71235
diff changeset
   254
    in
ca3ac5238c41 hooks for foundational terms: protection of foundational terms during simplification
haftmann
parents: 71235
diff changeset
   255
      gthy
78043
wenzelm
parents: 78039
diff changeset
   256
      |> Attrib.generic_notes Thm.theoremK [((cong_binding, []), [([cong], [])])]
wenzelm
parents: 78039
diff changeset
   257
      |> #2
71788
ca3ac5238c41 hooks for foundational terms: protection of foundational terms during simplification
haftmann
parents: 71235
diff changeset
   258
    end;
ca3ac5238c41 hooks for foundational terms: protection of foundational terms during simplification
haftmann
parents: 71235
diff changeset
   259
78043
wenzelm
parents: 78039
diff changeset
   260
val _ = Theory.setup (Generic_Target.add_foundation_interpretation add_foundation_cong);
71788
ca3ac5238c41 hooks for foundational terms: protection of foundational terms during simplification
haftmann
parents: 71235
diff changeset
   261
78043
wenzelm
parents: 78039
diff changeset
   262
in end;
71788
ca3ac5238c41 hooks for foundational terms: protection of foundational terms during simplification
haftmann
parents: 71235
diff changeset
   263
ca3ac5238c41 hooks for foundational terms: protection of foundational terms during simplification
haftmann
parents: 71235
diff changeset
   264
22201
6fe46a7259ec added def_simproc(_i) -- define named simprocs;
wenzelm
parents: 22132
diff changeset
   265
56510
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   266
(** pretty_simpset **)
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   267
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59621
diff changeset
   268
fun pretty_simpset verbose ctxt =
56510
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   269
  let
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   270
    val pretty_term = Syntax.pretty_term ctxt;
61268
abe08fb15a12 moved remaining display.ML to more_thm.ML;
wenzelm
parents: 61146
diff changeset
   271
    val pretty_thm = Thm.pretty_thm ctxt;
abe08fb15a12 moved remaining display.ML to more_thm.ML;
wenzelm
parents: 61146
diff changeset
   272
    val pretty_thm_item = Thm.pretty_thm_item ctxt;
56510
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   273
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   274
    fun pretty_simproc (name, lhss) =
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   275
      Pretty.block
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   276
        (Pretty.mark_str name :: Pretty.str ":" :: Pretty.fbrk ::
61098
e1b4b24f2ebd eliminated pointless cterms;
wenzelm
parents: 59917
diff changeset
   277
          Pretty.fbreaks (map (Pretty.item o single o pretty_term) lhss));
56510
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   278
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   279
    fun pretty_cong_name (const, name) =
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   280
      pretty_term ((if const then Const else Free) (name, dummyT));
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   281
    fun pretty_cong (name, thm) =
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   282
      Pretty.block [pretty_cong_name name, Pretty.str ":", Pretty.brk 1, pretty_thm thm];
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   283
80708
wenzelm
parents: 80706
diff changeset
   284
    val ss = dest_ss (simpset_of ctxt);
56510
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   285
    val simprocs =
80699
34db40261287 clarified signature;
wenzelm
parents: 78812
diff changeset
   286
      Name_Space.markup_entries verbose ctxt
80708
wenzelm
parents: 80706
diff changeset
   287
        (Name_Space.space_of_table (get_simprocs ctxt)) (#simprocs ss);
56510
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   288
  in
80708
wenzelm
parents: 80706
diff changeset
   289
    [Pretty.big_list "simplification rules:" (map (pretty_thm_item o #2) (#simps ss)),
56510
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   290
      Pretty.big_list "simplification procedures:" (map pretty_simproc simprocs),
80708
wenzelm
parents: 80706
diff changeset
   291
      Pretty.big_list "congruences:" (map pretty_cong (#congs ss)),
wenzelm
parents: 80706
diff changeset
   292
      Pretty.strs ("loopers:" :: map quote (#loopers ss)),
wenzelm
parents: 80706
diff changeset
   293
      Pretty.strs ("unsafe solvers:" :: map quote (#unsafe_solvers ss)),
wenzelm
parents: 80706
diff changeset
   294
      Pretty.strs ("safe solvers:" :: map quote (#safe_solvers ss))]
56510
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   295
    |> Pretty.chunks
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   296
  end;
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   297
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   298
aec722524c33 added simproc markup, which also indicates legacy simprocs outside the name space;
wenzelm
parents: 56204
diff changeset
   299
17967
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   300
(** simplification tactics and rules **)
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   301
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   302
fun solve_all_tac solvers ctxt =
17967
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   303
  let
71235
d12c58e12c51 more direct accessors for simpset
haftmann
parents: 70586
diff changeset
   304
    val subgoal_tac = Raw_Simplifier.subgoal_tac (Raw_Simplifier.set_solvers solvers ctxt);
d12c58e12c51 more direct accessors for simpset
haftmann
parents: 70586
diff changeset
   305
    val solve_tac = subgoal_tac THEN_ALL_NEW (K no_tac);
17967
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   306
  in DEPTH_SOLVE (solve_tac 1) end;
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   307
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   308
(*NOTE: may instantiate unknowns that appear also in other subgoals*)
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   309
fun generic_simp_tac safe mode ctxt =
17967
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   310
  let
71235
d12c58e12c51 more direct accessors for simpset
haftmann
parents: 70586
diff changeset
   311
    val loop_tac = Raw_Simplifier.loop_tac ctxt;
d12c58e12c51 more direct accessors for simpset
haftmann
parents: 70586
diff changeset
   312
    val (unsafe_solvers, solvers) = Raw_Simplifier.solvers ctxt;
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   313
    val solve_tac = FIRST' (map (Raw_Simplifier.solver ctxt)
22717
74dbc7696083 canonical merge operations
haftmann
parents: 22709
diff changeset
   314
      (rev (if safe then solvers else unsafe_solvers)));
17967
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   315
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   316
    fun simp_loop_tac i =
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   317
      Raw_Simplifier.generic_rewrite_goal_tac mode (solve_all_tac unsafe_solvers) ctxt i THEN
17967
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   318
      (solve_tac i ORELSE TRY ((loop_tac THEN_ALL_NEW simp_loop_tac) i));
52458
210bca64b894 less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents: 51717
diff changeset
   319
  in PREFER_GOAL (simp_loop_tac 1) end;
17967
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   320
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   321
local
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   322
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   323
fun simp rew mode ctxt thm =
17967
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   324
  let
71235
d12c58e12c51 more direct accessors for simpset
haftmann
parents: 70586
diff changeset
   325
    val (unsafe_solvers, _) = Raw_Simplifier.solvers ctxt;
22717
74dbc7696083 canonical merge operations
haftmann
parents: 22709
diff changeset
   326
    val tacf = solve_all_tac (rev unsafe_solvers);
17967
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   327
    fun prover s th = Option.map #1 (Seq.pull (tacf s th));
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   328
  in rew mode prover ctxt thm end;
17967
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   329
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   330
in
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   331
41228
e1fce873b814 renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents: 41226
diff changeset
   332
val simp_thm = simp Raw_Simplifier.rewrite_thm;
e1fce873b814 renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents: 41226
diff changeset
   333
val simp_cterm = simp Raw_Simplifier.rewrite_cterm;
17967
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   334
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   335
end;
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   336
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   337
16806
916387f7afd2 removed obsolete delta stuff;
wenzelm
parents: 16709
diff changeset
   338
(* tactics *)
916387f7afd2 removed obsolete delta stuff;
wenzelm
parents: 16709
diff changeset
   339
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   340
val simp_tac = generic_simp_tac false (false, false, false);
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   341
val asm_simp_tac = generic_simp_tac false (false, true, false);
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   342
val full_simp_tac = generic_simp_tac false (true, false, false);
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   343
val asm_lr_simp_tac = generic_simp_tac false (true, true, false);
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   344
val asm_full_simp_tac = generic_simp_tac false (true, true, true);
50107
289181e3e524 tuned signature;
wenzelm
parents: 48776
diff changeset
   345
289181e3e524 tuned signature;
wenzelm
parents: 48776
diff changeset
   346
(*not totally safe: may instantiate unknowns that appear also in other subgoals*)
289181e3e524 tuned signature;
wenzelm
parents: 48776
diff changeset
   347
val safe_simp_tac = generic_simp_tac true (false, false, false);
289181e3e524 tuned signature;
wenzelm
parents: 48776
diff changeset
   348
val safe_asm_simp_tac = generic_simp_tac true (false, true, false);
289181e3e524 tuned signature;
wenzelm
parents: 48776
diff changeset
   349
val safe_full_simp_tac = generic_simp_tac true (true, false, false);
289181e3e524 tuned signature;
wenzelm
parents: 48776
diff changeset
   350
val safe_asm_lr_simp_tac = generic_simp_tac true (true, true, false);
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   351
val safe_asm_full_simp_tac = generic_simp_tac true (true, true, true);
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   352
16806
916387f7afd2 removed obsolete delta stuff;
wenzelm
parents: 16709
diff changeset
   353
916387f7afd2 removed obsolete delta stuff;
wenzelm
parents: 16709
diff changeset
   354
(* conversions *)
916387f7afd2 removed obsolete delta stuff;
wenzelm
parents: 16709
diff changeset
   355
17967
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   356
val          simplify = simp_thm (false, false, false);
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   357
val      asm_simplify = simp_thm (false, true, false);
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   358
val     full_simplify = simp_thm (true, false, false);
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   359
val   asm_lr_simplify = simp_thm (true, true, false);
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   360
val asm_full_simplify = simp_thm (true, true, true);
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   361
17967
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   362
val          rewrite = simp_cterm (false, false, false);
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   363
val      asm_rewrite = simp_cterm (false, true, false);
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   364
val     full_rewrite = simp_cterm (true, false, false);
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   365
val   asm_lr_rewrite = simp_cterm (true, true, false);
7a733b7438e1 added simplification tactics and rules (from meta_simplifier.ML);
wenzelm
parents: 17898
diff changeset
   366
val asm_full_rewrite = simp_cterm (true, true, true);
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   367
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   368
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   369
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   370
(** concrete syntax of attributes **)
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   371
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   372
(* add / del *)
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   373
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   374
val simpN = "simp";
68403
223172b97d0b reorient -> split; documented split
nipkow
parents: 68046
diff changeset
   375
val flipN = "flip"
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   376
val congN = "cong";
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   377
val onlyN = "only";
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   378
val no_asmN = "no_asm";
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   379
val no_asm_useN = "no_asm_use";
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   380
val no_asm_simpN = "no_asm_simp";
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   381
val asm_lrN = "asm_lr";
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   382
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   383
24024
c46bd50df3f9 added attribute "simproc";
wenzelm
parents: 23655
diff changeset
   384
(* simprocs *)
c46bd50df3f9 added attribute "simproc";
wenzelm
parents: 23655
diff changeset
   385
c46bd50df3f9 added attribute "simproc";
wenzelm
parents: 23655
diff changeset
   386
local
c46bd50df3f9 added attribute "simproc";
wenzelm
parents: 23655
diff changeset
   387
c46bd50df3f9 added attribute "simproc";
wenzelm
parents: 23655
diff changeset
   388
val add_del =
80700
f6c6d0988fba clarified signature: less redundant types;
wenzelm
parents: 80699
diff changeset
   389
  (Args.del -- Args.colon >> K del_proc ||
f6c6d0988fba clarified signature: less redundant types;
wenzelm
parents: 80699
diff changeset
   390
    Scan.option (Args.add -- Args.colon) >> K add_proc)
78072
001739cb8d08 clarified signature: more explicit types;
wenzelm
parents: 78067
diff changeset
   391
  >> (fn f => fn simproc => Morphism.entity (fn phi => Thm.declaration_attribute
80700
f6c6d0988fba clarified signature: less redundant types;
wenzelm
parents: 80699
diff changeset
   392
      (K (Raw_Simplifier.map_ss (f (transform_simproc phi simproc))))));
24024
c46bd50df3f9 added attribute "simproc";
wenzelm
parents: 23655
diff changeset
   393
c46bd50df3f9 added attribute "simproc";
wenzelm
parents: 23655
diff changeset
   394
in
c46bd50df3f9 added attribute "simproc";
wenzelm
parents: 23655
diff changeset
   395
30528
7173bf123335 simplified attribute setup;
wenzelm
parents: 30513
diff changeset
   396
val simproc_att =
42465
1ba52683512a clarified check_simproc (with report) vs. the_simproc;
wenzelm
parents: 42464
diff changeset
   397
  (Args.context -- Scan.lift add_del) :|-- (fn (ctxt, decl) =>
78115
f360ee6ce670 tuned signature;
wenzelm
parents: 78114
diff changeset
   398
    Scan.repeat1 (Scan.lift (Args.named_attribute (decl o #2 o check_simproc ctxt))))
45375
7fe19930dfc9 more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents: 45326
diff changeset
   399
  >> (fn atts => Thm.declaration_attribute (fn th =>
46776
wenzelm
parents: 46465
diff changeset
   400
        fold (fn att => Thm.attribute_declaration (Morphism.form att) th) atts));
24024
c46bd50df3f9 added attribute "simproc";
wenzelm
parents: 23655
diff changeset
   401
c46bd50df3f9 added attribute "simproc";
wenzelm
parents: 23655
diff changeset
   402
end;
24124
4399175e3014 turned simp_depth_limit into configuration option;
wenzelm
parents: 24024
diff changeset
   403
24024
c46bd50df3f9 added attribute "simproc";
wenzelm
parents: 23655
diff changeset
   404
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   405
(* conversions *)
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   406
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   407
local
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   408
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   409
fun conv_mode x =
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   410
  ((Args.parens (Args.$$$ no_asmN) >> K simplify ||
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   411
    Args.parens (Args.$$$ no_asm_simpN) >> K asm_simplify ||
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   412
    Args.parens (Args.$$$ no_asm_useN) >> K full_simplify ||
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   413
    Scan.succeed asm_full_simplify) |> Scan.lift) x;
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   414
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   415
in
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   416
30528
7173bf123335 simplified attribute setup;
wenzelm
parents: 30513
diff changeset
   417
val simplified = conv_mode -- Attrib.thms >>
61853
fb7756087101 rule_attribute and declaration_attribute implicitly support abstract closure, but mixed_attribute implementations need to be aware of Thm.is_free_dummy;
wenzelm
parents: 61841
diff changeset
   418
  (fn (f, ths) => Thm.rule_attribute ths (fn context =>
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   419
    f ((if null ths then I else Raw_Simplifier.clear_simpset)
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   420
        (Context.proof_of context) addsimps ths)));
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   421
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   422
end;
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   423
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   424
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   425
(* setup attributes *)
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   426
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 52458
diff changeset
   427
val _ = Theory.setup
67147
dea94b1aabc3 prefer control symbol antiquotations;
wenzelm
parents: 67146
diff changeset
   428
 (Attrib.setup \<^binding>\<open>simp\<close> (Attrib.add_del simp_add simp_del)
30528
7173bf123335 simplified attribute setup;
wenzelm
parents: 30513
diff changeset
   429
    "declaration of Simplifier rewrite rule" #>
67147
dea94b1aabc3 prefer control symbol antiquotations;
wenzelm
parents: 67146
diff changeset
   430
  Attrib.setup \<^binding>\<open>cong\<close> (Attrib.add_del cong_add cong_del)
30528
7173bf123335 simplified attribute setup;
wenzelm
parents: 30513
diff changeset
   431
    "declaration of Simplifier congruence rule" #>
67147
dea94b1aabc3 prefer control symbol antiquotations;
wenzelm
parents: 67146
diff changeset
   432
  Attrib.setup \<^binding>\<open>simproc\<close> simproc_att
33671
4b0f2599ed48 modernized structure Local_Theory;
wenzelm
parents: 33551
diff changeset
   433
    "declaration of simplification procedures" #>
67147
dea94b1aabc3 prefer control symbol antiquotations;
wenzelm
parents: 67146
diff changeset
   434
  Attrib.setup \<^binding>\<open>simplified\<close> simplified "simplified rule");
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   435
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   436
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   437
31300
40fa39d9bce7 modernized method setup;
wenzelm
parents: 30609
diff changeset
   438
(** method syntax **)
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   439
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   440
val cong_modifiers =
64556
851ae0e7b09c more symbols;
wenzelm
parents: 63532
diff changeset
   441
 [Args.$$$ congN -- Args.colon >> K (Method.modifier cong_add \<^here>),
851ae0e7b09c more symbols;
wenzelm
parents: 63532
diff changeset
   442
  Args.$$$ congN -- Args.add -- Args.colon >> K (Method.modifier cong_add \<^here>),
851ae0e7b09c more symbols;
wenzelm
parents: 63532
diff changeset
   443
  Args.$$$ congN -- Args.del -- Args.colon >> K (Method.modifier cong_del \<^here>)];
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   444
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   445
val simp_modifiers =
64556
851ae0e7b09c more symbols;
wenzelm
parents: 63532
diff changeset
   446
 [Args.$$$ simpN -- Args.colon >> K (Method.modifier simp_add \<^here>),
851ae0e7b09c more symbols;
wenzelm
parents: 63532
diff changeset
   447
  Args.$$$ simpN -- Args.add -- Args.colon >> K (Method.modifier simp_add \<^here>),
851ae0e7b09c more symbols;
wenzelm
parents: 63532
diff changeset
   448
  Args.$$$ simpN -- Args.del -- Args.colon >> K (Method.modifier simp_del \<^here>),
68403
223172b97d0b reorient -> split; documented split
nipkow
parents: 68046
diff changeset
   449
  Args.$$$ simpN -- Args.$$$ flipN -- Args.colon >> K (Method.modifier simp_flip \<^here>),
58048
aa6296d09e0e more explicit Method.modifier with reported position;
wenzelm
parents: 58008
diff changeset
   450
  Args.$$$ simpN -- Args.$$$ onlyN -- Args.colon >>
64556
851ae0e7b09c more symbols;
wenzelm
parents: 63532
diff changeset
   451
    K {init = Raw_Simplifier.clear_simpset, attribute = simp_add, pos = \<^here>}]
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   452
   @ cong_modifiers;
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   453
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   454
val simp_modifiers' =
64556
851ae0e7b09c more symbols;
wenzelm
parents: 63532
diff changeset
   455
 [Args.add -- Args.colon >> K (Method.modifier simp_add \<^here>),
851ae0e7b09c more symbols;
wenzelm
parents: 63532
diff changeset
   456
  Args.del -- Args.colon >> K (Method.modifier simp_del \<^here>),
68403
223172b97d0b reorient -> split; documented split
nipkow
parents: 68046
diff changeset
   457
  Args.$$$ flipN -- Args.colon >> K (Method.modifier simp_flip \<^here>),
58048
aa6296d09e0e more explicit Method.modifier with reported position;
wenzelm
parents: 58008
diff changeset
   458
  Args.$$$ onlyN -- Args.colon >>
64556
851ae0e7b09c more symbols;
wenzelm
parents: 63532
diff changeset
   459
    K {init = Raw_Simplifier.clear_simpset, attribute = simp_add, pos = \<^here>}]
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   460
   @ cong_modifiers;
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   461
31300
40fa39d9bce7 modernized method setup;
wenzelm
parents: 30609
diff changeset
   462
val simp_options =
40fa39d9bce7 modernized method setup;
wenzelm
parents: 30609
diff changeset
   463
 (Args.parens (Args.$$$ no_asmN) >> K simp_tac ||
40fa39d9bce7 modernized method setup;
wenzelm
parents: 30609
diff changeset
   464
  Args.parens (Args.$$$ no_asm_simpN) >> K asm_simp_tac ||
40fa39d9bce7 modernized method setup;
wenzelm
parents: 30609
diff changeset
   465
  Args.parens (Args.$$$ no_asm_useN) >> K full_simp_tac ||
40fa39d9bce7 modernized method setup;
wenzelm
parents: 30609
diff changeset
   466
  Args.parens (Args.$$$ asm_lrN) >> K asm_lr_simp_tac ||
40fa39d9bce7 modernized method setup;
wenzelm
parents: 30609
diff changeset
   467
  Scan.succeed asm_full_simp_tac);
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   468
31300
40fa39d9bce7 modernized method setup;
wenzelm
parents: 30609
diff changeset
   469
fun simp_method more_mods meth =
35613
9d3ff36ad4e1 eliminated Args.bang_facts (legacy feature);
wenzelm
parents: 35232
diff changeset
   470
  Scan.lift simp_options --|
31300
40fa39d9bce7 modernized method setup;
wenzelm
parents: 30609
diff changeset
   471
    Method.sections (more_mods @ simp_modifiers') >>
35613
9d3ff36ad4e1 eliminated Args.bang_facts (legacy feature);
wenzelm
parents: 35232
diff changeset
   472
    (fn tac => fn ctxt => METHOD (fn facts => meth ctxt tac facts));
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   473
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   474
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   475
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18688
diff changeset
   476
(** setup **)
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18688
diff changeset
   477
31300
40fa39d9bce7 modernized method setup;
wenzelm
parents: 30609
diff changeset
   478
fun method_setup more_mods =
67147
dea94b1aabc3 prefer control symbol antiquotations;
wenzelm
parents: 67146
diff changeset
   479
  Method.setup \<^binding>\<open>simp\<close>
31300
40fa39d9bce7 modernized method setup;
wenzelm
parents: 30609
diff changeset
   480
    (simp_method more_mods (fn ctxt => fn tac => fn facts =>
61841
4d3527b94f2a more general types Proof.method / context_tactic;
wenzelm
parents: 61268
diff changeset
   481
      HEADGOAL (Method.insert_tac ctxt facts THEN'
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51688
diff changeset
   482
        (CHANGED_PROP oo tac) ctxt)))
31300
40fa39d9bce7 modernized method setup;
wenzelm
parents: 30609
diff changeset
   483
    "simplification" #>
67147
dea94b1aabc3 prefer control symbol antiquotations;
wenzelm
parents: 67146
diff changeset
   484
  Method.setup \<^binding>\<open>simp_all\<close>
31300
40fa39d9bce7 modernized method setup;
wenzelm
parents: 30609
diff changeset
   485
    (simp_method more_mods (fn ctxt => fn tac => fn facts =>
61841
4d3527b94f2a more general types Proof.method / context_tactic;
wenzelm
parents: 61268
diff changeset
   486
      ALLGOALS (Method.insert_tac ctxt facts) THEN
58008
aa72531f972f added PARALLEL_ALLGOALS convenience;
wenzelm
parents: 56510
diff changeset
   487
        (CHANGED_PROP o PARALLEL_ALLGOALS o tac) ctxt))
31300
40fa39d9bce7 modernized method setup;
wenzelm
parents: 30609
diff changeset
   488
    "simplification (all goals)";
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   489
63532
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
   490
fun unsafe_solver_tac ctxt =
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
   491
  FIRST' [resolve_tac ctxt (Drule.reflexive_thm :: Raw_Simplifier.prems_of ctxt), assume_tac ctxt];
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
   492
val unsafe_solver = mk_solver "Pure unsafe" unsafe_solver_tac;
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   493
63532
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
   494
(*no premature instantiation of variables during simplification*)
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
   495
fun safe_solver_tac ctxt =
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
   496
  FIRST' [match_tac ctxt (Drule.reflexive_thm :: Raw_Simplifier.prems_of ctxt), eq_assume_tac];
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
   497
val safe_solver = mk_solver "Pure safe" safe_solver_tac;
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   498
63532
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
   499
val _ =
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
   500
  Theory.setup
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
   501
    (method_setup [] #> Context.theory_map (map_ss (fn ctxt =>
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
   502
      empty_simpset ctxt
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
   503
      setSSolver safe_solver
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
   504
      setSolver unsafe_solver
b01154b74314 provide Pure.simp/simp_all, which only know about meta-equality;
wenzelm
parents: 63221
diff changeset
   505
      |> set_subgoaler asm_simp_tac)));
16014
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   506
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   507
end;
85f4b0f81f62 moved here from Provers;
wenzelm
parents:
diff changeset
   508
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32148
diff changeset
   509
structure Basic_Simplifier: BASIC_SIMPLIFIER = Simplifier;
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32148
diff changeset
   510
open Basic_Simplifier;