src/Pure/tactic.ML
author wenzelm
Sat, 12 Jan 2002 16:37:58 +0100
changeset 12725 7ede865e1fe5
parent 12498 3b0091bf06e8
child 12782 a4183c50ae5f
permissions -rw-r--r--
renamed forall_elim_vars_safe to gen_all;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
     1
(*  Title:      Pure/tactic.ML
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     4
    Copyright   1991  University of Cambridge
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
     6
Tactics.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
11774
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
     9
signature BASIC_TACTIC =
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
    10
sig
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    11
  val ares_tac          : thm list -> int -> tactic
11671
994dc2efff55 added full_rewrite_cterm;
wenzelm
parents: 10817
diff changeset
    12
  val asm_rewrite_goal_tac: bool*bool*bool ->
994dc2efff55 added full_rewrite_cterm;
wenzelm
parents: 10817
diff changeset
    13
    (MetaSimplifier.meta_simpset -> tactic) -> MetaSimplifier.meta_simpset -> int -> tactic
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    14
  val assume_tac        : int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    15
  val atac      : int ->tactic
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
    16
  val bimatch_from_nets_tac:
1501
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
    17
      (int*(bool*thm)) Net.net * (int*(bool*thm)) Net.net -> int -> tactic
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    18
  val bimatch_tac       : (bool*thm)list -> int -> tactic
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
    19
  val biresolution_from_nets_tac:
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    20
        ('a list -> (bool * thm) list) ->
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    21
        bool -> 'a Net.net * 'a Net.net -> int -> tactic
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
    22
  val biresolve_from_nets_tac:
1501
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
    23
      (int*(bool*thm)) Net.net * (int*(bool*thm)) Net.net -> int -> tactic
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    24
  val biresolve_tac     : (bool*thm)list -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    25
  val build_net : thm list -> (int*thm) Net.net
1501
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
    26
  val build_netpair:    (int*(bool*thm)) Net.net * (int*(bool*thm)) Net.net ->
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
    27
      (bool*thm)list -> (int*(bool*thm)) Net.net * (int*(bool*thm)) Net.net
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
    28
  val compose_inst_tac  : (string*string)list -> (bool*thm*int) ->
3409
c0466958df5d Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents: 2814
diff changeset
    29
                          int -> tactic
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
    30
  val compose_tac       : (bool * thm * int) -> int -> tactic
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    31
  val cut_facts_tac     : thm list -> int -> tactic
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
    32
  val cut_inst_tac      : (string*string)list -> thm -> int -> tactic
7491
95a4af0e10a7 added ftac, eatac, datac, fatac
oheimb
parents: 7248
diff changeset
    33
  val datac             : thm -> int -> int -> tactic
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    34
  val defer_tac         : int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    35
  val distinct_subgoals_tac     : tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    36
  val dmatch_tac        : thm list -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    37
  val dresolve_tac      : thm list -> int -> tactic
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
    38
  val dres_inst_tac     : (string*string)list -> thm -> int -> tactic
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    39
  val dtac              : thm -> int ->tactic
7491
95a4af0e10a7 added ftac, eatac, datac, fatac
oheimb
parents: 7248
diff changeset
    40
  val eatac             : thm -> int -> int -> tactic
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    41
  val etac              : thm -> int ->tactic
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
    42
  val eq_assume_tac     : int -> tactic
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    43
  val ematch_tac        : thm list -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    44
  val eresolve_tac      : thm list -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    45
  val eres_inst_tac     : (string*string)list -> thm -> int -> tactic
7491
95a4af0e10a7 added ftac, eatac, datac, fatac
oheimb
parents: 7248
diff changeset
    46
  val fatac             : thm -> int -> int -> tactic
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
    47
  val filter_prems_tac  : (term -> bool) -> int -> tactic
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    48
  val filter_thms       : (term*term->bool) -> int*term*thm list -> thm list
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    49
  val filt_resolve_tac  : thm list -> int -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    50
  val flexflex_tac      : tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    51
  val fold_goals_tac    : thm list -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    52
  val fold_rule         : thm list -> thm -> thm
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    53
  val fold_tac          : thm list -> tactic
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
    54
  val forward_tac       : thm list -> int -> tactic
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    55
  val forw_inst_tac     : (string*string)list -> thm -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    56
  val ftac              : thm -> int ->tactic
12320
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
    57
  val insert_tagged_brl : ('a * (bool * thm)) *
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
    58
    (('a * (bool * thm)) Net.net * ('a * (bool * thm)) Net.net) ->
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
    59
      ('a * (bool * thm)) Net.net * ('a * (bool * thm)) Net.net
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
    60
  val delete_tagged_brl : (bool * thm) *
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
    61
    (('a * (bool * thm)) Net.net * ('a * (bool * thm)) Net.net) ->
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
    62
      ('a * (bool * thm)) Net.net * ('a * (bool * thm)) Net.net
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    63
  val is_fact           : thm -> bool
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    64
  val lessb             : (bool * thm) * (bool * thm) -> bool
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    65
  val lift_inst_rule    : thm * int * (string*string)list * thm -> thm
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    66
  val make_elim         : thm -> thm
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    67
  val match_from_net_tac        : (int*thm) Net.net -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    68
  val match_tac : thm list -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    69
  val metacut_tac       : thm -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    70
  val net_bimatch_tac   : (bool*thm) list -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    71
  val net_biresolve_tac : (bool*thm) list -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    72
  val net_match_tac     : thm list -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    73
  val net_resolve_tac   : thm list -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    74
  val norm_hhf          : thm -> thm
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    75
  val norm_hhf_tac      : int -> tactic
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
    76
  val PRIMITIVE         : (thm -> thm) -> tactic
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
    77
  val PRIMSEQ           : (thm -> thm Seq.seq) -> tactic
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    78
  val prune_params_tac  : tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    79
  val rename_params_tac : string list -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    80
  val rename_tac        : string -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    81
  val rename_last_tac   : string -> string list -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    82
  val resolve_from_net_tac      : (int*thm) Net.net -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    83
  val resolve_tac       : thm list -> int -> tactic
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
    84
  val res_inst_tac      : (string*string)list -> thm -> int -> tactic
10444
2dfa19236768 added rewrite_goal_tac;
wenzelm
parents: 10415
diff changeset
    85
  val rewrite_goal_tac  : thm list -> int -> tactic
3575
4e9beacb5339 improved rewrite_thm / rewrite_goals to handle conditional eqns;
wenzelm
parents: 3554
diff changeset
    86
  val rewrite_goals_rule: thm list -> thm -> thm
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    87
  val rewrite_rule      : thm list -> thm -> thm
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    88
  val rewrite_goals_tac : thm list -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    89
  val rewrite_tac       : thm list -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    90
  val rewtac            : thm -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    91
  val rotate_tac        : int -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    92
  val rtac              : thm -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    93
  val rule_by_tactic    : tactic -> thm -> thm
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    94
  val solve_tac         : thm list -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    95
  val subgoal_tac       : string -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    96
  val subgoals_tac      : string list -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    97
  val subgoals_of_brl   : bool * thm -> int
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
    98
  val term_lift_inst_rule       :
1975
eec67972b1bf renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents: 1966
diff changeset
    99
      thm * int * (indexname*typ)list * ((indexname*typ)*term)list  * thm
eec67972b1bf renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents: 1966
diff changeset
   100
      -> thm
10347
c0cfc4ac12e2 added instantiate_tac
oheimb
parents: 9535
diff changeset
   101
  val instantiate_tac   : (string * string) list -> tactic
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   102
  val thin_tac          : string -> int -> tactic
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   103
  val trace_goalno_tac  : (int -> tactic) -> int -> tactic
11774
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
   104
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   105
11774
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
   106
signature TACTIC =
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
   107
sig
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
   108
  include BASIC_TACTIC
11929
a77ad6c86564 innermost_params;
wenzelm
parents: 11774
diff changeset
   109
  val innermost_params: int -> thm -> (string * typ) list
11774
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
   110
  val untaglist: (int * 'a) list -> 'a list
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
   111
  val orderlist: (int * 'a) list -> 'a list
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
   112
  val rewrite: bool -> thm list -> cterm -> thm
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
   113
  val rewrite_cterm: bool -> thm list -> cterm -> cterm
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
   114
  val simplify: bool -> thm list -> thm -> thm
12139
d51d50636332 added conjunction_tac;
wenzelm
parents: 11974
diff changeset
   115
  val conjunction_tac: tactic
11970
e7eedbd2c8ca tuned prove;
wenzelm
parents: 11961
diff changeset
   116
  val prove: Sign.sg -> string list -> term list -> term -> (thm list -> tactic) -> thm
e7eedbd2c8ca tuned prove;
wenzelm
parents: 11961
diff changeset
   117
  val prove_standard: Sign.sg -> string list -> term list -> term -> (thm list -> tactic) -> thm
11774
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
   118
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   119
11774
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
   120
structure Tactic: TACTIC =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   121
struct
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   122
1501
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   123
(*Discover which goal is chosen:  SOMEGOAL(trace_goalno_tac tac) *)
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   124
fun trace_goalno_tac tac i st =
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4213
diff changeset
   125
    case Seq.pull(tac i st) of
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   126
        None    => Seq.empty
12262
11ff5f47df6e use tracing function for trace output;
wenzelm
parents: 12212
diff changeset
   127
      | seqcell => (tracing ("Subgoal " ^ string_of_int i ^ " selected");
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   128
                         Seq.make(fn()=> seqcell));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   129
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   130
(*Makes a rule by applying a tactic to an existing rule*)
1501
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   131
fun rule_by_tactic tac rl =
2688
889a1cbd1aca rule_by_tactic no longer standardizes its result
paulson
parents: 2672
diff changeset
   132
  let val (st, thaw) = freeze_thaw (zero_var_indexes rl)
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4213
diff changeset
   133
  in case Seq.pull (tac st)  of
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   134
        None        => raise THM("rule_by_tactic", 0, [rl])
2688
889a1cbd1aca rule_by_tactic no longer standardizes its result
paulson
parents: 2672
diff changeset
   135
      | Some(st',_) => Thm.varifyT (thaw st')
889a1cbd1aca rule_by_tactic no longer standardizes its result
paulson
parents: 2672
diff changeset
   136
  end;
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   137
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   138
(*** Basic tactics ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   139
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   140
(*Makes a tactic whose effect on a state is given by thmfun: thm->thm seq.*)
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4213
diff changeset
   141
fun PRIMSEQ thmfun st =  thmfun st handle THM _ => Seq.empty;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   142
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   143
(*Makes a tactic whose effect on a state is given by thmfun: thm->thm.*)
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4213
diff changeset
   144
fun PRIMITIVE thmfun = PRIMSEQ (Seq.single o thmfun);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   145
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   146
(*** The following fail if the goal number is out of range:
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   147
     thus (REPEAT (resolve_tac rules i)) stops once subgoal i disappears. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   148
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   149
(*Solve subgoal i by assumption*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   150
fun assume_tac i = PRIMSEQ (assumption i);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   151
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   152
(*Solve subgoal i by assumption, using no unification*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   153
fun eq_assume_tac i = PRIMITIVE (eq_assumption i);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   154
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   155
(** Resolution/matching tactics **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   156
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   157
(*The composition rule/state: no lifting or var renaming.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   158
  The arg = (bires_flg, orule, m) ;  see bicompose for explanation.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   159
fun compose_tac arg i = PRIMSEQ (bicompose false arg i);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   160
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   161
(*Converts a "destruct" rule like P&Q==>P to an "elimination" rule
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   162
  like [| P&Q; P==>R |] ==> R *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   163
fun make_elim rl = zero_var_indexes (rl RS revcut_rl);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   164
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   165
(*Attack subgoal i by resolution, using flags to indicate elimination rules*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   166
fun biresolve_tac brules i = PRIMSEQ (biresolution false brules i);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   167
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   168
(*Resolution: the simple case, works for introduction rules*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   169
fun resolve_tac rules = biresolve_tac (map (pair false) rules);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   170
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   171
(*Resolution with elimination rules only*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   172
fun eresolve_tac rules = biresolve_tac (map (pair true) rules);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   173
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   174
(*Forward reasoning using destruction rules.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   175
fun forward_tac rls = resolve_tac (map make_elim rls) THEN' assume_tac;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   176
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   177
(*Like forward_tac, but deletes the assumption after use.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   178
fun dresolve_tac rls = eresolve_tac (map make_elim rls);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   179
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   180
(*Shorthand versions: for resolution with a single theorem*)
7491
95a4af0e10a7 added ftac, eatac, datac, fatac
oheimb
parents: 7248
diff changeset
   181
val atac    =   assume_tac;
95a4af0e10a7 added ftac, eatac, datac, fatac
oheimb
parents: 7248
diff changeset
   182
fun rtac rl =  resolve_tac [rl];
95a4af0e10a7 added ftac, eatac, datac, fatac
oheimb
parents: 7248
diff changeset
   183
fun dtac rl = dresolve_tac [rl];
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   184
fun etac rl = eresolve_tac [rl];
7491
95a4af0e10a7 added ftac, eatac, datac, fatac
oheimb
parents: 7248
diff changeset
   185
fun ftac rl =  forward_tac [rl];
95a4af0e10a7 added ftac, eatac, datac, fatac
oheimb
parents: 7248
diff changeset
   186
fun datac thm j = EVERY' (dtac thm::replicate j atac);
95a4af0e10a7 added ftac, eatac, datac, fatac
oheimb
parents: 7248
diff changeset
   187
fun eatac thm j = EVERY' (etac thm::replicate j atac);
95a4af0e10a7 added ftac, eatac, datac, fatac
oheimb
parents: 7248
diff changeset
   188
fun fatac thm j = EVERY' (ftac thm::replicate j atac);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   189
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   190
(*Use an assumption or some rules ... A popular combination!*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   191
fun ares_tac rules = assume_tac  ORELSE'  resolve_tac rules;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   192
5263
8862ed2db431 added solve_tac;
wenzelm
parents: 4713
diff changeset
   193
fun solve_tac rules = resolve_tac rules THEN_ALL_NEW assume_tac;
8862ed2db431 added solve_tac;
wenzelm
parents: 4713
diff changeset
   194
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   195
(*Matching tactics -- as above, but forbid updating of state*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   196
fun bimatch_tac brules i = PRIMSEQ (biresolution true brules i);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   197
fun match_tac rules  = bimatch_tac (map (pair false) rules);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   198
fun ematch_tac rules = bimatch_tac (map (pair true) rules);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   199
fun dmatch_tac rls   = ematch_tac (map make_elim rls);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   200
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   201
(*Smash all flex-flex disagreement pairs in the proof state.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   202
val flexflex_tac = PRIMSEQ flexflex_rule;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   203
3409
c0466958df5d Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents: 2814
diff changeset
   204
c0466958df5d Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents: 2814
diff changeset
   205
(*Remove duplicate subgoals.  By Mark Staples*)
c0466958df5d Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents: 2814
diff changeset
   206
local
c0466958df5d Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents: 2814
diff changeset
   207
fun cterm_aconv (a,b) = #t (rep_cterm a) aconv #t (rep_cterm b);
c0466958df5d Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents: 2814
diff changeset
   208
in
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   209
fun distinct_subgoals_tac state =
3409
c0466958df5d Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents: 2814
diff changeset
   210
    let val (frozth,thawfn) = freeze_thaw state
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   211
        val froz_prems = cprems_of frozth
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   212
        val assumed = implies_elim_list frozth (map assume froz_prems)
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   213
        val implied = implies_intr_list (gen_distinct cterm_aconv froz_prems)
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   214
                                        assumed;
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4213
diff changeset
   215
    in  Seq.single (thawfn implied)  end
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   216
end;
3409
c0466958df5d Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents: 2814
diff changeset
   217
c0466958df5d Tidying of signature. More robust renaming in freeze_thaw.
paulson
parents: 2814
diff changeset
   218
11929
a77ad6c86564 innermost_params;
wenzelm
parents: 11774
diff changeset
   219
(*Determine print names of goal parameters (reversed)*)
a77ad6c86564 innermost_params;
wenzelm
parents: 11774
diff changeset
   220
fun innermost_params i st =
a77ad6c86564 innermost_params;
wenzelm
parents: 11774
diff changeset
   221
  let val (_, _, Bi, _) = dest_state (st, i)
a77ad6c86564 innermost_params;
wenzelm
parents: 11774
diff changeset
   222
  in rename_wrt_term Bi (Logic.strip_params Bi) end;
a77ad6c86564 innermost_params;
wenzelm
parents: 11774
diff changeset
   223
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   224
(*Lift and instantiate a rule wrt the given state and subgoal number *)
1501
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   225
fun lift_inst_rule (st, i, sinsts, rule) =
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   226
let val {maxidx,sign,...} = rep_thm st
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   227
    val (_, _, Bi, _) = dest_state(st,i)
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   228
    val params = Logic.strip_params Bi          (*params of subgoal i*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   229
    val params = rev(rename_wrt_term Bi params) (*as they are printed*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   230
    val paramTs = map #2 params
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   231
    and inc = maxidx+1
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   232
    fun liftvar (Var ((a,j), T)) = Var((a, j+inc), paramTs---> incr_tvar inc T)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   233
      | liftvar t = raise TERM("Variable expected", [t]);
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   234
    fun liftterm t = list_abs_free (params,
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   235
                                    Logic.incr_indexes(paramTs,inc) t)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   236
    (*Lifts instantiation pair over params*)
230
ec8a2b6aa8a7 Many other files modified as follows:
lcp
parents: 214
diff changeset
   237
    fun liftpair (cv,ct) = (cterm_fun liftvar cv, cterm_fun liftterm ct)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   238
    fun lifttvar((a,i),ctyp) =
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   239
        let val {T,sign} = rep_ctyp ctyp
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   240
        in  ((a,i+inc), ctyp_of sign (incr_tvar inc T)) end
1501
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   241
    val rts = types_sorts rule and (types,sorts) = types_sorts st
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   242
    fun types'(a,~1) = (case assoc(params,a) of None => types(a,~1) | sm => sm)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   243
      | types'(ixn) = types ixn;
949
83c588d6fee9 Changed treatment of during type inference internally generated type
nipkow
parents: 947
diff changeset
   244
    val used = add_term_tvarnames
1501
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   245
                  (#prop(rep_thm st) $ #prop(rep_thm rule),[])
949
83c588d6fee9 Changed treatment of during type inference internally generated type
nipkow
parents: 947
diff changeset
   246
    val (Tinsts,insts) = read_insts sign rts (types',sorts) used sinsts
8129
29e239c7b8c2 Thm.instantiate no longer normalizes, but Drule.instantiate does
paulson
parents: 7596
diff changeset
   247
in Drule.instantiate (map lifttvar Tinsts, map liftpair insts)
29e239c7b8c2 Thm.instantiate no longer normalizes, but Drule.instantiate does
paulson
parents: 7596
diff changeset
   248
                     (lift_rule (st,i) rule)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   249
end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   250
3984
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   251
(*
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   252
Like lift_inst_rule but takes terms, not strings, where the terms may contain
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   253
Bounds referring to parameters of the subgoal.
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   254
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   255
insts: [...,(vj,tj),...]
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   256
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   257
The tj may contain references to parameters of subgoal i of the state st
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   258
in the form of Bound k, i.e. the tj may be subterms of the subgoal.
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   259
To saturate the lose bound vars, the tj are enclosed in abstractions
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   260
corresponding to the parameters of subgoal i, thus turning them into
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   261
functions. At the same time, the types of the vj are lifted.
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   262
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   263
NB: the types in insts must be correctly instantiated already,
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   264
    i.e. Tinsts is not applied to insts.
8fc76a487616 Modified comment.
nipkow
parents: 3706
diff changeset
   265
*)
1975
eec67972b1bf renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents: 1966
diff changeset
   266
fun term_lift_inst_rule (st, i, Tinsts, insts, rule) =
1966
9e626f86e335 added cterm_lift_inst_rule
nipkow
parents: 1955
diff changeset
   267
let val {maxidx,sign,...} = rep_thm st
9e626f86e335 added cterm_lift_inst_rule
nipkow
parents: 1955
diff changeset
   268
    val (_, _, Bi, _) = dest_state(st,i)
9e626f86e335 added cterm_lift_inst_rule
nipkow
parents: 1955
diff changeset
   269
    val params = Logic.strip_params Bi          (*params of subgoal i*)
9e626f86e335 added cterm_lift_inst_rule
nipkow
parents: 1955
diff changeset
   270
    val paramTs = map #2 params
9e626f86e335 added cterm_lift_inst_rule
nipkow
parents: 1955
diff changeset
   271
    and inc = maxidx+1
1975
eec67972b1bf renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents: 1966
diff changeset
   272
    fun liftvar ((a,j), T) = Var((a, j+inc), paramTs---> incr_tvar inc T)
eec67972b1bf renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents: 1966
diff changeset
   273
    (*lift only Var, not term, which must be lifted already*)
eec67972b1bf renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents: 1966
diff changeset
   274
    fun liftpair (v,t) = (cterm_of sign (liftvar v), cterm_of sign t)
eec67972b1bf renamed cterm_lift_inst_rule to term_lift_inst_rule and made it take
nipkow
parents: 1966
diff changeset
   275
    fun liftTpair((a,i),T) = ((a,i+inc), ctyp_of sign (incr_tvar inc T))
8129
29e239c7b8c2 Thm.instantiate no longer normalizes, but Drule.instantiate does
paulson
parents: 7596
diff changeset
   276
in Drule.instantiate (map liftTpair Tinsts, map liftpair insts)
29e239c7b8c2 Thm.instantiate no longer normalizes, but Drule.instantiate does
paulson
parents: 7596
diff changeset
   277
                     (lift_rule (st,i) rule)
1966
9e626f86e335 added cterm_lift_inst_rule
nipkow
parents: 1955
diff changeset
   278
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   279
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   280
(*** Resolve after lifting and instantation; may refer to parameters of the
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   281
     subgoal.  Fails if "i" is out of range.  ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   282
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   283
(*compose version: arguments are as for bicompose.*)
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   284
fun compose_inst_tac sinsts (bires_flg, rule, nsubgoal) i st =
8977
dd8bc754a072 res_inst_tac, etc., no longer print the "dest_state" message when the selected
paulson
parents: 8129
diff changeset
   285
  if i > nprems_of st then no_tac st
dd8bc754a072 res_inst_tac, etc., no longer print the "dest_state" message when the selected
paulson
parents: 8129
diff changeset
   286
  else st |>
dd8bc754a072 res_inst_tac, etc., no longer print the "dest_state" message when the selected
paulson
parents: 8129
diff changeset
   287
    (compose_tac (bires_flg, lift_inst_rule (st, i, sinsts, rule), nsubgoal) i
12262
11ff5f47df6e use tracing function for trace output;
wenzelm
parents: 12212
diff changeset
   288
     handle TERM (msg,_)   => (warning msg;  no_tac)
11ff5f47df6e use tracing function for trace output;
wenzelm
parents: 12212
diff changeset
   289
          | THM  (msg,_,_) => (warning msg;  no_tac));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   290
761
04320c295500 res_inst_tac: added comments
lcp
parents: 670
diff changeset
   291
(*"Resolve" version.  Note: res_inst_tac cannot behave sensibly if the
04320c295500 res_inst_tac: added comments
lcp
parents: 670
diff changeset
   292
  terms that are substituted contain (term or type) unknowns from the
04320c295500 res_inst_tac: added comments
lcp
parents: 670
diff changeset
   293
  goal, because it is unable to instantiate goal unknowns at the same time.
04320c295500 res_inst_tac: added comments
lcp
parents: 670
diff changeset
   294
2029
2fa4c4b1a7fe Generalized freeze to freeze_thaw in order to
paulson
parents: 1975
diff changeset
   295
  The type checker is instructed not to freeze flexible type vars that
952
9e10962866b0 Removed an old bug which made some simultaneous instantiations fail if they
nipkow
parents: 949
diff changeset
   296
  were introduced during type inference and still remain in the term at the
9e10962866b0 Removed an old bug which made some simultaneous instantiations fail if they
nipkow
parents: 949
diff changeset
   297
  end.  This increases flexibility but can introduce schematic type vars in
9e10962866b0 Removed an old bug which made some simultaneous instantiations fail if they
nipkow
parents: 949
diff changeset
   298
  goals.
761
04320c295500 res_inst_tac: added comments
lcp
parents: 670
diff changeset
   299
*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   300
fun res_inst_tac sinsts rule i =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   301
    compose_inst_tac sinsts (false, rule, nprems_of rule) i;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   302
1501
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   303
(*eresolve elimination version*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   304
fun eres_inst_tac sinsts rule i =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   305
    compose_inst_tac sinsts (true, rule, nprems_of rule) i;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   306
270
d506ea00c825 tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents: 230
diff changeset
   307
(*For forw_inst_tac and dres_inst_tac.  Preserve Var indexes of rl;
d506ea00c825 tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents: 230
diff changeset
   308
  increment revcut_rl instead.*)
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   309
fun make_elim_preserve rl =
270
d506ea00c825 tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents: 230
diff changeset
   310
  let val {maxidx,...} = rep_thm rl
6390
5d58c100ca3f qualify Theory.sign_of etc.;
wenzelm
parents: 5974
diff changeset
   311
      fun cvar ixn = cterm_of (Theory.sign_of ProtoPure.thy) (Var(ixn,propT));
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   312
      val revcut_rl' =
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   313
          instantiate ([],  [(cvar("V",0), cvar("V",maxidx+1)),
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   314
                             (cvar("W",0), cvar("W",maxidx+1))]) revcut_rl
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   315
      val arg = (false, rl, nprems_of rl)
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4213
diff changeset
   316
      val [th] = Seq.list_of (bicompose false arg 1 revcut_rl')
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   317
  in  th  end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   318
  handle Bind => raise THM("make_elim_preserve", 1, [rl]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   319
270
d506ea00c825 tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents: 230
diff changeset
   320
(*instantiate and cut -- for a FACT, anyway...*)
d506ea00c825 tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents: 230
diff changeset
   321
fun cut_inst_tac sinsts rule = res_inst_tac sinsts (make_elim_preserve rule);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   322
270
d506ea00c825 tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents: 230
diff changeset
   323
(*forward tactic applies a RULE to an assumption without deleting it*)
d506ea00c825 tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents: 230
diff changeset
   324
fun forw_inst_tac sinsts rule = cut_inst_tac sinsts rule THEN' assume_tac;
d506ea00c825 tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents: 230
diff changeset
   325
d506ea00c825 tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents: 230
diff changeset
   326
(*dresolve tactic applies a RULE to replace an assumption*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   327
fun dres_inst_tac sinsts rule = eres_inst_tac sinsts (make_elim_preserve rule);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   328
10347
c0cfc4ac12e2 added instantiate_tac
oheimb
parents: 9535
diff changeset
   329
(*instantiate variables in the whole state*)
c0cfc4ac12e2 added instantiate_tac
oheimb
parents: 9535
diff changeset
   330
val instantiate_tac = PRIMITIVE o read_instantiate;
c0cfc4ac12e2 added instantiate_tac
oheimb
parents: 9535
diff changeset
   331
1951
f2b8005bdc6e Declared thin_tac
paulson
parents: 1801
diff changeset
   332
(*Deletion of an assumption*)
f2b8005bdc6e Declared thin_tac
paulson
parents: 1801
diff changeset
   333
fun thin_tac s = eres_inst_tac [("V",s)] thin_rl;
f2b8005bdc6e Declared thin_tac
paulson
parents: 1801
diff changeset
   334
270
d506ea00c825 tactic/make_elim_preserve: recoded to avoid using lift_inst_rule. Instead
lcp
parents: 230
diff changeset
   335
(*** Applications of cut_rl ***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   336
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   337
(*Used by metacut_tac*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   338
fun bires_cut_tac arg i =
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   339
    resolve_tac [cut_rl] i  THEN  biresolve_tac arg (i+1) ;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   340
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   341
(*The conclusion of the rule gets assumed in subgoal i,
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   342
  while subgoal i+1,... are the premises of the rule.*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   343
fun metacut_tac rule = bires_cut_tac [(false,rule)];
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   344
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   345
(*Recognizes theorems that are not rules, but simple propositions*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   346
fun is_fact rl =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   347
    case prems_of rl of
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   348
        [] => true  |  _::_ => false;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   349
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   350
(*"Cut" all facts from theorem list into the goal as assumptions. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   351
fun cut_facts_tac ths i =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   352
    EVERY (map (fn th => metacut_tac th i) (filter is_fact ths));
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   353
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   354
(*Introduce the given proposition as a lemma and subgoal*)
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   355
fun subgoal_tac sprop i st =
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4213
diff changeset
   356
  let val st'    = Seq.hd (res_inst_tac [("psi", sprop)] cut_rl i st)
4178
e64ff1c1bc70 subgoal_tac displays a warning if the new subgoal has type variables
paulson
parents: 3991
diff changeset
   357
      val concl' = Logic.strip_assums_concl (List.nth(prems_of st', i))
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   358
  in
4178
e64ff1c1bc70 subgoal_tac displays a warning if the new subgoal has type variables
paulson
parents: 3991
diff changeset
   359
      if null (term_tvars concl') then ()
e64ff1c1bc70 subgoal_tac displays a warning if the new subgoal has type variables
paulson
parents: 3991
diff changeset
   360
      else warning"Type variables in new subgoal: add a type constraint?";
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4213
diff changeset
   361
      Seq.single st'
4178
e64ff1c1bc70 subgoal_tac displays a warning if the new subgoal has type variables
paulson
parents: 3991
diff changeset
   362
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   363
439
ad3f46c13f1e Pure/tactic/subgoals_tac: new (moved from ZF/Order.ML)
lcp
parents: 270
diff changeset
   364
(*Introduce a list of lemmas and subgoals*)
ad3f46c13f1e Pure/tactic/subgoals_tac: new (moved from ZF/Order.ML)
lcp
parents: 270
diff changeset
   365
fun subgoals_tac sprops = EVERY' (map subgoal_tac sprops);
ad3f46c13f1e Pure/tactic/subgoals_tac: new (moved from ZF/Order.ML)
lcp
parents: 270
diff changeset
   366
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   367
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   368
(**** Indexing and filtering of theorems ****)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   369
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   370
(*Returns the list of potentially resolvable theorems for the goal "prem",
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   371
        using the predicate  could(subgoal,concl).
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   372
  Resulting list is no longer than "limit"*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   373
fun filter_thms could (limit, prem, ths) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   374
  let val pb = Logic.strip_assums_concl prem;   (*delete assumptions*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   375
      fun filtr (limit, []) = []
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   376
        | filtr (limit, th::ths) =
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   377
            if limit=0 then  []
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   378
            else if could(pb, concl_of th)  then th :: filtr(limit-1, ths)
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   379
            else filtr(limit,ths)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   380
  in  filtr(limit,ths)  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   381
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   382
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   383
(*** biresolution and resolution using nets ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   384
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   385
(** To preserve the order of the rules, tag them with increasing integers **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   386
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   387
(*insert tags*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   388
fun taglist k [] = []
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   389
  | taglist k (x::xs) = (k,x) :: taglist (k+1) xs;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   390
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   391
(*remove tags and suppress duplicates -- list is assumed sorted!*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   392
fun untaglist [] = []
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   393
  | untaglist [(k:int,x)] = [x]
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   394
  | untaglist ((k,x) :: (rest as (k',x')::_)) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   395
      if k=k' then untaglist rest
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   396
      else    x :: untaglist rest;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   397
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   398
(*return list elements in original order*)
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   399
fun orderlist kbrls = untaglist (sort (int_ord o pairself fst) kbrls);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   400
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   401
(*insert one tagged brl into the pair of nets*)
12320
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
   402
fun insert_tagged_brl (kbrl as (k, (eres, th)), (inet, enet)) =
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
   403
  if eres then
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
   404
    (case try Thm.major_prem_of th of
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
   405
      Some prem => (inet, Net.insert_term ((prem, kbrl), enet, K false))
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
   406
    | None => error "insert_tagged_brl: elimination rule with no premises")
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
   407
  else (Net.insert_term ((concl_of th, kbrl), inet, K false), enet);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   408
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   409
(*build a pair of nets for biresolution*)
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   410
fun build_netpair netpair brls =
1077
c2df11ae8b55 Renamed insert_kbrl to insert_tagged_brl and exported it. Now
lcp
parents: 952
diff changeset
   411
    foldr insert_tagged_brl (taglist 1 brls, netpair);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   412
12320
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
   413
(*delete one kbrl from the pair of nets*)
1801
927a31ba4346 Added delete function for brls
paulson
parents: 1501
diff changeset
   414
local
12320
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
   415
  fun eq_kbrl ((_, (_, th)), (_, (_, th'))) = eq_thm (th, th')
1801
927a31ba4346 Added delete function for brls
paulson
parents: 1501
diff changeset
   416
in
12320
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
   417
fun delete_tagged_brl (brl as (eres, th), (inet, enet)) =
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
   418
  if eres then
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
   419
    (case try Thm.major_prem_of th of
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
   420
      Some prem => (inet, Net.delete_term ((prem, ((), brl)), enet, eq_kbrl))
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
   421
    | None => (inet, enet))  (*no major premise: ignore*)
6e70d870ddf0 general type of delete_tagged_brl;
wenzelm
parents: 12262
diff changeset
   422
  else (Net.delete_term ((Thm.concl_of th, ((), brl)), inet, eq_kbrl), enet);
1801
927a31ba4346 Added delete function for brls
paulson
parents: 1501
diff changeset
   423
end;
927a31ba4346 Added delete function for brls
paulson
parents: 1501
diff changeset
   424
927a31ba4346 Added delete function for brls
paulson
parents: 1501
diff changeset
   425
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   426
(*biresolution using a pair of nets rather than rules.
3706
e57b5902822f Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents: 3575
diff changeset
   427
    function "order" must sort and possibly filter the list of brls.
e57b5902822f Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents: 3575
diff changeset
   428
    boolean "match" indicates matching or unification.*)
e57b5902822f Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents: 3575
diff changeset
   429
fun biresolution_from_nets_tac order match (inet,enet) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   430
  SUBGOAL
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   431
    (fn (prem,i) =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   432
      let val hyps = Logic.strip_assums_hyp prem
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   433
          and concl = Logic.strip_assums_concl prem
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   434
          val kbrls = Net.unify_term inet concl @
2672
85d7e800d754 Replaced "flat" by the Basis Library function List.concat
paulson
parents: 2580
diff changeset
   435
                      List.concat (map (Net.unify_term enet) hyps)
3706
e57b5902822f Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents: 3575
diff changeset
   436
      in PRIMSEQ (biresolution match (order kbrls) i) end);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   437
3706
e57b5902822f Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents: 3575
diff changeset
   438
(*versions taking pre-built nets.  No filtering of brls*)
e57b5902822f Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents: 3575
diff changeset
   439
val biresolve_from_nets_tac = biresolution_from_nets_tac orderlist false;
e57b5902822f Generalized and exported biresolution_from_nets_tac to allow the declaration
paulson
parents: 3575
diff changeset
   440
val bimatch_from_nets_tac   = biresolution_from_nets_tac orderlist true;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   441
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   442
(*fast versions using nets internally*)
670
ff4c6691de9d Pure/tactic/build_netpair: now takes two arguments
lcp
parents: 439
diff changeset
   443
val net_biresolve_tac =
ff4c6691de9d Pure/tactic/build_netpair: now takes two arguments
lcp
parents: 439
diff changeset
   444
    biresolve_from_nets_tac o build_netpair(Net.empty,Net.empty);
ff4c6691de9d Pure/tactic/build_netpair: now takes two arguments
lcp
parents: 439
diff changeset
   445
ff4c6691de9d Pure/tactic/build_netpair: now takes two arguments
lcp
parents: 439
diff changeset
   446
val net_bimatch_tac =
ff4c6691de9d Pure/tactic/build_netpair: now takes two arguments
lcp
parents: 439
diff changeset
   447
    bimatch_from_nets_tac o build_netpair(Net.empty,Net.empty);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   448
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   449
(*** Simpler version for resolve_tac -- only one net, and no hyps ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   450
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   451
(*insert one tagged rl into the net*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   452
fun insert_krl (krl as (k,th), net) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   453
    Net.insert_term ((concl_of th, krl), net, K false);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   454
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   455
(*build a net of rules for resolution*)
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   456
fun build_net rls =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   457
    foldr insert_krl (taglist 1 rls, Net.empty);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   458
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   459
(*resolution using a net rather than rules; pred supports filt_resolve_tac*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   460
fun filt_resolution_from_net_tac match pred net =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   461
  SUBGOAL
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   462
    (fn (prem,i) =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   463
      let val krls = Net.unify_term net (Logic.strip_assums_concl prem)
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   464
      in
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   465
         if pred krls
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   466
         then PRIMSEQ
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   467
                (biresolution match (map (pair false) (orderlist krls)) i)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   468
         else no_tac
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   469
      end);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   470
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   471
(*Resolve the subgoal using the rules (making a net) unless too flexible,
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   472
   which means more than maxr rules are unifiable.      *)
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   473
fun filt_resolve_tac rules maxr =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   474
    let fun pred krls = length krls <= maxr
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   475
    in  filt_resolution_from_net_tac false pred (build_net rules)  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   476
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   477
(*versions taking pre-built nets*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   478
val resolve_from_net_tac = filt_resolution_from_net_tac false (K true);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   479
val match_from_net_tac = filt_resolution_from_net_tac true (K true);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   480
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   481
(*fast versions using nets internally*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   482
val net_resolve_tac = resolve_from_net_tac o build_net;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   483
val net_match_tac = match_from_net_tac o build_net;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   484
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   485
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   486
(*** For Natural Deduction using (bires_flg, rule) pairs ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   487
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   488
(*The number of new subgoals produced by the brule*)
1077
c2df11ae8b55 Renamed insert_kbrl to insert_tagged_brl and exported it. Now
lcp
parents: 952
diff changeset
   489
fun subgoals_of_brl (true,rule)  = nprems_of rule - 1
c2df11ae8b55 Renamed insert_kbrl to insert_tagged_brl and exported it. Now
lcp
parents: 952
diff changeset
   490
  | subgoals_of_brl (false,rule) = nprems_of rule;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   491
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   492
(*Less-than test: for sorting to minimize number of new subgoals*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   493
fun lessb (brl1,brl2) = subgoals_of_brl brl1 < subgoals_of_brl brl2;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   494
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   495
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   496
(*** Meta-Rewriting Tactics ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   497
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   498
fun result1 tacf mss thm =
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4213
diff changeset
   499
  apsome fst (Seq.pull (tacf mss thm));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   500
3575
4e9beacb5339 improved rewrite_thm / rewrite_goals to handle conditional eqns;
wenzelm
parents: 3554
diff changeset
   501
val simple_prover =
11671
994dc2efff55 added full_rewrite_cterm;
wenzelm
parents: 10817
diff changeset
   502
  result1 (fn mss => ALLGOALS (resolve_tac (MetaSimplifier.prems_of_mss mss)));
3575
4e9beacb5339 improved rewrite_thm / rewrite_goals to handle conditional eqns;
wenzelm
parents: 3554
diff changeset
   503
11768
48bc55f43774 unified rewrite/rewrite_cterm/simplify interface;
wenzelm
parents: 11762
diff changeset
   504
val rewrite = MetaSimplifier.rewrite_aux simple_prover;
48bc55f43774 unified rewrite/rewrite_cterm/simplify interface;
wenzelm
parents: 11762
diff changeset
   505
val rewrite_cterm = (#2 o Thm.dest_comb o #prop o Thm.crep_thm) ooo rewrite;
48bc55f43774 unified rewrite/rewrite_cterm/simplify interface;
wenzelm
parents: 11762
diff changeset
   506
val simplify = MetaSimplifier.simplify_aux simple_prover;
48bc55f43774 unified rewrite/rewrite_cterm/simplify interface;
wenzelm
parents: 11762
diff changeset
   507
val rewrite_rule = simplify true;
10415
e6d7b77a0574 moved rewriting functions from Drule to MetaSimplifier
berghofe
parents: 10347
diff changeset
   508
val rewrite_goals_rule = MetaSimplifier.rewrite_goals_rule_aux simple_prover;
3575
4e9beacb5339 improved rewrite_thm / rewrite_goals to handle conditional eqns;
wenzelm
parents: 3554
diff changeset
   509
2145
5e8db0bc195e asm_rewrite_goal_tac now calls SELECT_GOAL.
paulson
parents: 2043
diff changeset
   510
(*Rewrite subgoal i only.  SELECT_GOAL avoids inefficiencies in goals_conv.*)
5e8db0bc195e asm_rewrite_goal_tac now calls SELECT_GOAL.
paulson
parents: 2043
diff changeset
   511
fun asm_rewrite_goal_tac mode prover_tac mss =
11671
994dc2efff55 added full_rewrite_cterm;
wenzelm
parents: 10817
diff changeset
   512
  SELECT_GOAL
994dc2efff55 added full_rewrite_cterm;
wenzelm
parents: 10817
diff changeset
   513
    (PRIMITIVE (MetaSimplifier.rewrite_goal_rule mode (result1 prover_tac) mss 1));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   514
10444
2dfa19236768 added rewrite_goal_tac;
wenzelm
parents: 10415
diff changeset
   515
fun rewrite_goal_tac rews =
2dfa19236768 added rewrite_goal_tac;
wenzelm
parents: 10415
diff changeset
   516
  asm_rewrite_goal_tac (true, false, false) (K no_tac) (MetaSimplifier.mss_of rews);
2dfa19236768 added rewrite_goal_tac;
wenzelm
parents: 10415
diff changeset
   517
69
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   518
(*Rewrite throughout proof state. *)
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   519
fun rewrite_tac defs = PRIMITIVE(rewrite_rule defs);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   520
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   521
(*Rewrite subgoals only, not main goal. *)
69
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   522
fun rewrite_goals_tac defs = PRIMITIVE (rewrite_goals_rule defs);
1460
5a6f2aabd538 inserted tabs again
clasohm
parents: 1458
diff changeset
   523
fun rewtac def = rewrite_goals_tac [def];
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   524
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   525
fun norm_hhf th =
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   526
  (if Logic.is_norm_hhf (#prop (Thm.rep_thm th)) then th else rewrite_rule [Drule.norm_hhf_eq] th)
12725
7ede865e1fe5 renamed forall_elim_vars_safe to gen_all;
wenzelm
parents: 12498
diff changeset
   527
  |> Drule.gen_all;
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   528
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   529
val norm_hhf_tac = SUBGOAL (fn (t, i) =>
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   530
  if Logic.is_norm_hhf t then all_tac
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   531
  else rewrite_goal_tac [Drule.norm_hhf_eq] i);
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   532
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   533
1501
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   534
(*** for folding definitions, handling critical pairs ***)
69
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   535
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   536
(*The depth of nesting in a term*)
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   537
fun term_depth (Abs(a,T,t)) = 1 + term_depth t
2145
5e8db0bc195e asm_rewrite_goal_tac now calls SELECT_GOAL.
paulson
parents: 2043
diff changeset
   538
  | term_depth (f$t) = 1 + Int.max(term_depth f, term_depth t)
69
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   539
  | term_depth _ = 0;
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   540
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   541
val lhs_of_thm = #1 o Logic.dest_equals o #prop o rep_thm;
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   542
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   543
(*folding should handle critical pairs!  E.g. K == Inl(0),  S == Inr(Inl(0))
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   544
  Returns longest lhs first to avoid folding its subexpressions.*)
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   545
fun sort_lhs_depths defs =
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   546
  let val keylist = make_keylist (term_depth o lhs_of_thm) defs
4438
ecfeff48bf0c adapted to new sort function;
wenzelm
parents: 4270
diff changeset
   547
      val keys = distinct (sort (rev_order o int_ord) (map #2 keylist))
69
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   548
  in  map (keyfilter keylist) keys  end;
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   549
7596
c97c3ad15d2e added fold_rule;
wenzelm
parents: 7491
diff changeset
   550
val rev_defs = sort_lhs_depths o map symmetric;
69
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   551
7596
c97c3ad15d2e added fold_rule;
wenzelm
parents: 7491
diff changeset
   552
fun fold_rule defs thm = foldl (fn (th, ds) => rewrite_rule ds th) (thm, rev_defs defs);
c97c3ad15d2e added fold_rule;
wenzelm
parents: 7491
diff changeset
   553
fun fold_tac defs = EVERY (map rewrite_tac (rev_defs defs));
c97c3ad15d2e added fold_rule;
wenzelm
parents: 7491
diff changeset
   554
fun fold_goals_tac defs = EVERY (map rewrite_goals_tac (rev_defs defs));
69
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   555
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   556
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   557
(*** Renaming of parameters in a subgoal
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   558
     Names may contain letters, digits or primes and must be
e7588b53d6b0 tactic/fold_tac,fold_goals_tac: now handle critical pairs on the
lcp
parents: 0
diff changeset
   559
     separated by blanks ***)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   560
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   561
(*Calling this will generate the warning "Same as previous level" since
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   562
  it affects nothing but the names of bound variables!*)
9535
a60b0be5ee96 added rename_params_tac;
wenzelm
parents: 8977
diff changeset
   563
fun rename_params_tac xs i =
a60b0be5ee96 added rename_params_tac;
wenzelm
parents: 8977
diff changeset
   564
  (if !Logic.auto_rename
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   565
    then (warning "Resetting Logic.auto_rename";
10805
89a29437cebc added norm_hhf(_tac);
wenzelm
parents: 10444
diff changeset
   566
        Logic.auto_rename := false)
9535
a60b0be5ee96 added rename_params_tac;
wenzelm
parents: 8977
diff changeset
   567
   else (); PRIMITIVE (rename_params_rule (xs, i)));
a60b0be5ee96 added rename_params_tac;
wenzelm
parents: 8977
diff changeset
   568
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   569
fun rename_tac str i =
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   570
  let val cs = Symbol.explode str in
4693
2e47ea2c6109 adapted to baroque chars;
wenzelm
parents: 4611
diff changeset
   571
  case #2 (take_prefix (Symbol.is_letdig orf Symbol.is_blank) cs) of
9535
a60b0be5ee96 added rename_params_tac;
wenzelm
parents: 8977
diff changeset
   572
      [] => rename_params_tac (scanwords Symbol.is_letdig cs) i
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   573
    | c::_ => error ("Illegal character: " ^ c)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   574
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   575
1501
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   576
(*Rename recent parameters using names generated from a and the suffixes,
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   577
  provided the string a, which represents a term, is an identifier. *)
10817
083d4a6734b4 tuned norm_hhf(_tac);
wenzelm
parents: 10805
diff changeset
   578
fun rename_last_tac a sufs i =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   579
  let val names = map (curry op^ a) sufs
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   580
  in  if Syntax.is_identifier a
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   581
      then PRIMITIVE (rename_params_rule (names,i))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   582
      else all_tac
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   583
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   584
2043
8de7a0ab463b prune_params_tac no longer rewrites main goal
paulson
parents: 2029
diff changeset
   585
(*Prunes all redundant parameters from the proof state by rewriting.
8de7a0ab463b prune_params_tac no longer rewrites main goal
paulson
parents: 2029
diff changeset
   586
  DOES NOT rewrite main goal, where quantification over an unused bound
8de7a0ab463b prune_params_tac no longer rewrites main goal
paulson
parents: 2029
diff changeset
   587
    variable is sometimes done to avoid the need for cut_facts_tac.*)
8de7a0ab463b prune_params_tac no longer rewrites main goal
paulson
parents: 2029
diff changeset
   588
val prune_params_tac = rewrite_goals_tac [triv_forall_equality];
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   589
1501
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   590
(*rotate_tac n i: rotate the assumptions of subgoal i by n positions, from
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   591
  right to left if n is positive, and from left to right if n is negative.*)
2672
85d7e800d754 Replaced "flat" by the Basis Library function List.concat
paulson
parents: 2580
diff changeset
   592
fun rotate_tac 0 i = all_tac
85d7e800d754 Replaced "flat" by the Basis Library function List.concat
paulson
parents: 2580
diff changeset
   593
  | rotate_tac k i = PRIMITIVE (rotate_rule k i);
1209
03dc596b3a18 added rotate_tac.
nipkow
parents: 1077
diff changeset
   594
7248
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 6979
diff changeset
   595
(*Rotates the given subgoal to be the last.*)
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 6979
diff changeset
   596
fun defer_tac i = PRIMITIVE (permute_prems (i-1) 1);
322151fe6f02 new primitive rule permute_prems to underlie defer_tac and rotate_prems
paulson
parents: 6979
diff changeset
   597
5974
6acf3ff0f486 Added filter_prems_tac
nipkow
parents: 5956
diff changeset
   598
(* remove premises that do not satisfy p; fails if all prems satisfy p *)
6acf3ff0f486 Added filter_prems_tac
nipkow
parents: 5956
diff changeset
   599
fun filter_prems_tac p =
6acf3ff0f486 Added filter_prems_tac
nipkow
parents: 5956
diff changeset
   600
  let fun Then None tac = Some tac
6acf3ff0f486 Added filter_prems_tac
nipkow
parents: 5956
diff changeset
   601
        | Then (Some tac) tac' = Some(tac THEN' tac');
6acf3ff0f486 Added filter_prems_tac
nipkow
parents: 5956
diff changeset
   602
      fun thins ((tac,n),H) =
6acf3ff0f486 Added filter_prems_tac
nipkow
parents: 5956
diff changeset
   603
        if p H then (tac,n+1)
6acf3ff0f486 Added filter_prems_tac
nipkow
parents: 5956
diff changeset
   604
        else (Then tac (rotate_tac n THEN' etac thin_rl),0);
6acf3ff0f486 Added filter_prems_tac
nipkow
parents: 5956
diff changeset
   605
  in SUBGOAL(fn (subg,n) =>
6acf3ff0f486 Added filter_prems_tac
nipkow
parents: 5956
diff changeset
   606
       let val Hs = Logic.strip_assums_hyp subg
6acf3ff0f486 Added filter_prems_tac
nipkow
parents: 5956
diff changeset
   607
       in case fst(foldl thins ((None,0),Hs)) of
6acf3ff0f486 Added filter_prems_tac
nipkow
parents: 5956
diff changeset
   608
            None => no_tac | Some tac => tac n
6acf3ff0f486 Added filter_prems_tac
nipkow
parents: 5956
diff changeset
   609
       end)
6acf3ff0f486 Added filter_prems_tac
nipkow
parents: 5956
diff changeset
   610
  end;
6acf3ff0f486 Added filter_prems_tac
nipkow
parents: 5956
diff changeset
   611
11961
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   612
12139
d51d50636332 added conjunction_tac;
wenzelm
parents: 11974
diff changeset
   613
(*meta-level conjunction*)
d51d50636332 added conjunction_tac;
wenzelm
parents: 11974
diff changeset
   614
val conj_tac = SUBGOAL (fn (Const ("all", _) $ Abs (_, _, Const ("==>", _) $
d51d50636332 added conjunction_tac;
wenzelm
parents: 11974
diff changeset
   615
      (Const ("==>", _) $ _ $ (Const ("==>", _) $ _ $ Bound 0)) $ Bound 0), i) =>
d51d50636332 added conjunction_tac;
wenzelm
parents: 11974
diff changeset
   616
    (fn st =>
d51d50636332 added conjunction_tac;
wenzelm
parents: 11974
diff changeset
   617
      compose_tac (false, Drule.incr_indexes_wrt [] [] [] [st] Drule.conj_intr_thm, 2) i st)
d51d50636332 added conjunction_tac;
wenzelm
parents: 11974
diff changeset
   618
  | _ => no_tac);
d51d50636332 added conjunction_tac;
wenzelm
parents: 11974
diff changeset
   619
  
d51d50636332 added conjunction_tac;
wenzelm
parents: 11974
diff changeset
   620
val conjunction_tac = ALLGOALS (REPEAT_ALL_NEW conj_tac);
d51d50636332 added conjunction_tac;
wenzelm
parents: 11974
diff changeset
   621
d51d50636332 added conjunction_tac;
wenzelm
parents: 11974
diff changeset
   622
d51d50636332 added conjunction_tac;
wenzelm
parents: 11974
diff changeset
   623
11970
e7eedbd2c8ca tuned prove;
wenzelm
parents: 11961
diff changeset
   624
(** minimal goal interface for internal use *)
11961
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   625
11970
e7eedbd2c8ca tuned prove;
wenzelm
parents: 11961
diff changeset
   626
fun prove sign xs asms prop tac =
11961
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   627
  let
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   628
    val statement = Logic.list_implies (asms, prop);
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   629
    val frees = map Term.dest_Free (Term.term_frees statement);
11970
e7eedbd2c8ca tuned prove;
wenzelm
parents: 11961
diff changeset
   630
    val fixed_frees = filter_out (fn (x, _) => x mem_string xs) frees;
e7eedbd2c8ca tuned prove;
wenzelm
parents: 11961
diff changeset
   631
    val fixed_tfrees = foldr Term.add_typ_tfree_names (map #2 fixed_frees, []);
11961
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   632
    val params = mapfilter (fn x => apsome (pair x) (assoc_string (frees, x))) xs;
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   633
12212
657ad5edeab6 prove: raise ERROR_MESSAGE;
wenzelm
parents: 12170
diff changeset
   634
    fun err msg = raise ERROR_MESSAGE
657ad5edeab6 prove: raise ERROR_MESSAGE;
wenzelm
parents: 12170
diff changeset
   635
      (msg ^ "\nThe error(s) above occurred for the goal statement:\n" ^
657ad5edeab6 prove: raise ERROR_MESSAGE;
wenzelm
parents: 12170
diff changeset
   636
        Sign.string_of_term sign (Term.list_all_free (params, statement)));
11961
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   637
12170
1433a9cdb55c prove: Envir.beta_norm;
wenzelm
parents: 12139
diff changeset
   638
    fun cert_safe t = Thm.cterm_of sign (Envir.beta_norm t)
11961
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   639
      handle TERM (msg, _) => err msg | TYPE (msg, _, _) => err msg;
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   640
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   641
    val _ = cert_safe statement;
11974
f76c3e1ab352 tuned prove;
wenzelm
parents: 11970
diff changeset
   642
    val _ = Term.no_dummy_patterns statement handle TERM (msg, _) => err msg;
11961
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   643
11974
f76c3e1ab352 tuned prove;
wenzelm
parents: 11970
diff changeset
   644
    val cparams = map (cert_safe o Free) params;
11961
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   645
    val casms = map cert_safe asms;
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   646
    val prems = map (norm_hhf o Thm.assume) casms;
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   647
    val goal = Drule.mk_triv_goal (cert_safe prop);
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   648
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   649
    val goal' =
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   650
      (case Seq.pull (tac prems goal) of Some (goal', _) => goal' | _ => err "Tactic failed.");
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   651
    val ngoals = Thm.nprems_of goal';
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   652
    val raw_result = goal' RS Drule.rev_triv_goal;
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   653
    val prop' = #prop (Thm.rep_thm raw_result);
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   654
  in
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   655
    if ngoals <> 0 then
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   656
      err ("Proof failed.\n" ^ Pretty.string_of (Pretty.chunks (Display.pretty_goals ngoals goal'))
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   657
        ^ ("\n" ^ string_of_int ngoals ^ " unsolved goal(s)!"))
11970
e7eedbd2c8ca tuned prove;
wenzelm
parents: 11961
diff changeset
   658
    else if not (Pattern.matches (Sign.tsig_of sign) (prop, prop')) then
e7eedbd2c8ca tuned prove;
wenzelm
parents: 11961
diff changeset
   659
      err ("Proved a different theorem: " ^ Sign.string_of_term sign prop')
11961
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   660
    else
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   661
      raw_result
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   662
      |> Drule.implies_intr_list casms
11974
f76c3e1ab352 tuned prove;
wenzelm
parents: 11970
diff changeset
   663
      |> Drule.forall_intr_list cparams
11961
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   664
      |> norm_hhf
12498
3b0091bf06e8 changed Thm.varifyT';
wenzelm
parents: 12320
diff changeset
   665
      |> (#1 o Thm.varifyT' fixed_tfrees)
11970
e7eedbd2c8ca tuned prove;
wenzelm
parents: 11961
diff changeset
   666
      |> Drule.zero_var_indexes
11961
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   667
  end;
e5911a25d094 prove: primitive goal interface for internal use;
wenzelm
parents: 11929
diff changeset
   668
11970
e7eedbd2c8ca tuned prove;
wenzelm
parents: 11961
diff changeset
   669
fun prove_standard sign xs asms prop tac = Drule.standard (prove sign xs asms prop tac);
e7eedbd2c8ca tuned prove;
wenzelm
parents: 11961
diff changeset
   670
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   671
end;
1501
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
   672
11774
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
   673
structure BasicTactic: BASIC_TACTIC = Tactic;
3bc4f67d7fe1 qualify some names;
wenzelm
parents: 11768
diff changeset
   674
open BasicTactic;