src/Pure/Isar/rule_insts.ML
author wenzelm
Sat, 28 Jun 2008 15:17:26 +0200
changeset 27378 0968c0d0b969
parent 27282 432a5baa7546
child 27809 a1e409db516b
permissions -rw-r--r--
tuned;
     1 (*  Title:      Pure/Isar/rule_insts.ML
     2     ID:         $Id$
     3     Author:     Makarius
     4 
     5 Rule instantiations -- operations within a rule/subgoal context.
     6 *)
     7 
     8 signature BASIC_RULE_INSTS =
     9 sig
    10   val read_instantiate: Proof.context -> (indexname * string) list -> thm -> thm
    11   val instantiate_tac: Proof.context -> (indexname * string) list -> tactic
    12   val res_inst_tac: Proof.context -> (indexname * string) list -> thm -> int -> tactic
    13   val eres_inst_tac: Proof.context -> (indexname * string) list -> thm -> int -> tactic
    14   val cut_inst_tac: Proof.context -> (indexname * string) list -> thm -> int -> tactic
    15   val forw_inst_tac: Proof.context -> (indexname * string) list -> thm -> int -> tactic
    16   val dres_inst_tac: Proof.context -> (indexname * string) list -> thm -> int -> tactic
    17   val thin_tac: Proof.context -> string -> int -> tactic
    18   val subgoal_tac: Proof.context -> string -> int -> tactic
    19   val subgoals_tac: Proof.context -> string list -> int -> tactic
    20 end;
    21 
    22 signature RULE_INSTS =
    23 sig
    24   include BASIC_RULE_INSTS
    25   val make_elim_preserve: thm -> thm
    26 end;
    27 
    28 structure RuleInsts: RULE_INSTS =
    29 struct
    30 
    31 
    32 (** reading instantiations **)
    33 
    34 local
    35 
    36 fun is_tvar (x, _) = String.isPrefix "'" x;
    37 
    38 fun error_var msg xi = error (msg ^ Term.string_of_vname xi);
    39 
    40 fun the_sort tvars xi = the (AList.lookup (op =) tvars xi)
    41   handle Option.Option => error_var "No such type variable in theorem: " xi;
    42 
    43 fun the_type vars xi = the (AList.lookup (op =) vars xi)
    44   handle Option.Option => error_var "No such variable in theorem: " xi;
    45 
    46 fun unify_vartypes thy vars (xi, u) (unifier, maxidx) =
    47   let
    48     val T = the_type vars xi;
    49     val U = Term.fastype_of u;
    50     val maxidx' = Term.maxidx_term u (Int.max (#2 xi, maxidx));
    51   in
    52     Sign.typ_unify thy (T, U) (unifier, maxidx')
    53       handle Type.TUNIFY => error_var "Incompatible type for instantiation of " xi
    54   end;
    55 
    56 fun instantiate inst =
    57   TermSubst.instantiate ([], map (fn (xi, t) => ((xi, Term.fastype_of t), t)) inst) #>
    58   Envir.beta_norm;
    59 
    60 fun make_instT f v =
    61   let
    62     val T = TVar v;
    63     val T' = f T;
    64   in if T = T' then NONE else SOME (T, T') end;
    65 
    66 fun make_inst f v =
    67   let
    68     val t = Var v;
    69     val t' = f t;
    70   in if t aconv t' then NONE else SOME (t, t') end;
    71 
    72 val add_used =
    73   (Thm.fold_terms o fold_types o fold_atyps)
    74     (fn TFree (a, _) => insert (op =) a
    75       | TVar ((a, _), _) => insert (op =) a
    76       | _ => I);
    77 
    78 in
    79 
    80 fun read_termTs ctxt schematic ss Ts =
    81   let
    82     fun parse T = if T = propT then Syntax.parse_prop ctxt else Syntax.parse_term ctxt;
    83     val ts = map2 parse Ts ss;
    84     val ts' =
    85       map2 (TypeInfer.constrain o TypeInfer.paramify_vars) Ts ts
    86       |> Syntax.check_terms ((schematic ? ProofContext.set_mode ProofContext.mode_schematic) ctxt)
    87       |> Variable.polymorphic ctxt;
    88     val Ts' = map Term.fastype_of ts';
    89     val tyenv = fold Type.raw_match (Ts ~~ Ts') Vartab.empty;
    90   in (ts', map (apsnd snd) (Vartab.dest tyenv)) end;
    91 
    92 fun read_insts ctxt mixed_insts (tvars, vars) =
    93   let
    94     val thy = ProofContext.theory_of ctxt;
    95     val cert = Thm.cterm_of thy;
    96     val certT = Thm.ctyp_of thy;
    97 
    98     val (type_insts, term_insts) = List.partition (is_tvar o fst) mixed_insts;
    99     val internal_insts = term_insts |> map_filter
   100       (fn (xi, Args.Term t) => SOME (xi, t)
   101         | (_, Args.Text _) => NONE
   102         | (xi, _) => error_var "Term argument expected for " xi);
   103     val external_insts = term_insts |> map_filter
   104       (fn (xi, Args.Text s) => SOME (xi, s) | _ => NONE);
   105 
   106 
   107     (* mixed type instantiations *)
   108 
   109     fun readT (xi, arg) =
   110       let
   111         val S = the_sort tvars xi;
   112         val T =
   113           (case arg of
   114             Args.Text s => Syntax.read_typ ctxt s
   115           | Args.Typ T => T
   116           | _ => error_var "Type argument expected for " xi);
   117       in
   118         if Sign.of_sort thy (T, S) then ((xi, S), T)
   119         else error_var "Incompatible sort for typ instantiation of " xi
   120       end;
   121 
   122     val type_insts1 = map readT type_insts;
   123     val instT1 = TermSubst.instantiateT type_insts1;
   124     val vars1 = map (apsnd instT1) vars;
   125 
   126 
   127     (* internal term instantiations *)
   128 
   129     val instT2 = Envir.norm_type
   130       (#1 (fold (unify_vartypes thy vars1) internal_insts (Vartab.empty, 0)));
   131     val vars2 = map (apsnd instT2) vars1;
   132     val internal_insts2 = map (apsnd (map_types instT2)) internal_insts;
   133     val inst2 = instantiate internal_insts2;
   134 
   135 
   136     (* external term instantiations *)
   137 
   138     val (xs, strs) = split_list external_insts;
   139     val Ts = map (the_type vars2) xs;
   140     val (ts, inferred) = read_termTs ctxt false strs Ts;
   141 
   142     val instT3 = Term.typ_subst_TVars inferred;
   143     val vars3 = map (apsnd instT3) vars2;
   144     val internal_insts3 = map (apsnd (map_types instT3)) internal_insts2;
   145     val external_insts3 = xs ~~ ts;
   146     val inst3 = instantiate external_insts3;
   147 
   148 
   149     (* results *)
   150 
   151     val type_insts3 = map (fn ((a, _), T) => (a, instT3 (instT2 T))) type_insts1;
   152     val term_insts3 = internal_insts3 @ external_insts3;
   153 
   154     val inst_tvars = map_filter (make_instT (instT3 o instT2 o instT1)) tvars;
   155     val inst_vars = map_filter (make_inst (inst3 o inst2)) vars3;
   156   in
   157     ((type_insts3, term_insts3),
   158       (map (pairself certT) inst_tvars, map (pairself cert) inst_vars))
   159   end;
   160 
   161 fun read_instantiate_mixed ctxt mixed_insts thm =
   162   let
   163     val ctxt' = ctxt |> Variable.declare_thm thm
   164       |> fold (fn a => Variable.declare_names (Logic.mk_type (TFree (a, dummyS)))) (add_used thm []);  (* FIXME tmp *)
   165     val tvars = Thm.fold_terms Term.add_tvars thm [];
   166     val vars = Thm.fold_terms Term.add_vars thm [];
   167     val ((type_insts, term_insts), insts) = read_insts ctxt' (map snd mixed_insts) (tvars, vars);
   168 
   169     val _ = (*assign internalized values*)
   170       mixed_insts |> List.app (fn (arg, (xi, _)) =>
   171         if is_tvar xi then
   172           Args.assign (SOME (Args.Typ (the (AList.lookup (op =) type_insts xi)))) arg
   173         else
   174           Args.assign (SOME (Args.Term (the (AList.lookup (op =) term_insts xi)))) arg);
   175   in
   176     Drule.instantiate insts thm |> RuleCases.save thm
   177   end;
   178 
   179 fun read_instantiate_mixed' ctxt (args, concl_args) thm =
   180   let
   181     fun zip_vars _ [] = []
   182       | zip_vars (_ :: xs) ((_, NONE) :: rest) = zip_vars xs rest
   183       | zip_vars ((x, _) :: xs) ((arg, SOME t) :: rest) = (arg, (x, t)) :: zip_vars xs rest
   184       | zip_vars [] _ = error "More instantiations than variables in theorem";
   185     val insts =
   186       zip_vars (rev (Term.add_vars (Thm.full_prop_of thm) [])) args @
   187       zip_vars (rev (Term.add_vars (Thm.concl_of thm) [])) concl_args;
   188   in read_instantiate_mixed ctxt insts thm end;
   189 
   190 end;
   191 
   192 
   193 (* instantiation of rule or goal state *)
   194 
   195 fun read_instantiate ctxt args thm =
   196   read_instantiate_mixed (ctxt |> ProofContext.set_mode ProofContext.mode_schematic)  (* FIXME !? *)
   197     (map (fn (x, y) => (Args.eof, (x, Args.Text y))) args) thm;
   198 
   199 fun instantiate_tac ctxt args = PRIMITIVE (read_instantiate ctxt args);
   200 
   201 
   202 
   203 (** attributes **)
   204 
   205 (* where: named instantiation *)
   206 
   207 local
   208 
   209 val value =
   210   Args.internal_typ >> Args.Typ ||
   211   Args.internal_term >> Args.Term ||
   212   Args.name >> Args.Text;
   213 
   214 val inst = Args.var -- (Args.$$$ "=" |-- Args.ahead -- value)
   215   >> (fn (xi, (a, v)) => (a, (xi, v)));
   216 
   217 in
   218 
   219 val where_att = Attrib.syntax (Args.and_list (Scan.lift inst) >> (fn args =>
   220   Thm.rule_attribute (fn context => read_instantiate_mixed (Context.proof_of context) args)));
   221 
   222 end;
   223 
   224 
   225 (* of: positional instantiation (terms only) *)
   226 
   227 local
   228 
   229 val value =
   230   Args.internal_term >> Args.Term ||
   231   Args.name >> Args.Text;
   232 
   233 val inst = Args.ahead -- Args.maybe value;
   234 val concl = Args.$$$ "concl" -- Args.colon;
   235 
   236 val insts =
   237   Scan.repeat (Scan.unless concl inst) --
   238   Scan.optional (concl |-- Scan.repeat inst) [];
   239 
   240 in
   241 
   242 val of_att = Attrib.syntax (Scan.lift insts >> (fn args =>
   243   Thm.rule_attribute (fn context => read_instantiate_mixed' (Context.proof_of context) args)));
   244 
   245 end;
   246 
   247 
   248 (* setup *)
   249 
   250 val _ = Context.>> (Context.map_theory
   251   (Attrib.add_attributes
   252    [("where", where_att, "named instantiation of theorem"),
   253     ("of", of_att, "positional instantiation of theorem")]));
   254 
   255 
   256 
   257 (** tactics **)
   258 
   259 (* resolution after lifting and instantation; may refer to parameters of the subgoal *)
   260 
   261 (* FIXME cleanup this mess!!! *)
   262 
   263 fun bires_inst_tac bires_flag ctxt insts thm =
   264   let
   265     val thy = ProofContext.theory_of ctxt;
   266     (* Separate type and term insts *)
   267     fun has_type_var ((x, _), _) = (case Symbol.explode x of
   268           "'"::cs => true | cs => false);
   269     val Tinsts = List.filter has_type_var insts;
   270     val tinsts = filter_out has_type_var insts;
   271 
   272     (* Tactic *)
   273     fun tac i st =
   274       let
   275         val (_, _, Bi, _) = Thm.dest_state (st, i);
   276         val params = Logic.strip_params Bi;  (*params of subgoal i as string typ pairs*)
   277         val params = rev (Term.rename_wrt_term Bi params)
   278           (*as they are printed: bound variables with*)
   279           (*the same name are renamed during printing*)
   280 
   281         val (param_names, ctxt') = ctxt
   282           |> Variable.declare_thm thm
   283           |> Thm.fold_terms Variable.declare_constraints st
   284           |> ProofContext.add_fixes_i (map (fn (x, T) => (x, SOME T, NoSyn)) params);
   285 
   286         (* Process type insts: Tinsts_env *)
   287         fun absent xi = error
   288               ("No such variable in theorem: " ^ Term.string_of_vname xi);
   289         val (rtypes, rsorts) = Drule.types_sorts thm;
   290         fun readT (xi, s) =
   291             let val S = case rsorts xi of SOME S => S | NONE => absent xi;
   292                 val T = Syntax.read_typ ctxt' s;
   293                 val U = TVar (xi, S);
   294             in if Sign.typ_instance thy (T, U) then (U, T)
   295                else error ("Instantiation of " ^ Term.string_of_vname xi ^ " fails")
   296             end;
   297         val Tinsts_env = map readT Tinsts;
   298         (* Preprocess rule: extract vars and their types, apply Tinsts *)
   299         fun get_typ xi =
   300           (case rtypes xi of
   301                SOME T => typ_subst_atomic Tinsts_env T
   302              | NONE => absent xi);
   303         val (xis, ss) = Library.split_list tinsts;
   304         val Ts = map get_typ xis;
   305 
   306         val (ts, envT) = read_termTs ctxt' true ss Ts;
   307         val envT' = map (fn (ixn, T) =>
   308           (TVar (ixn, the (rsorts ixn)), T)) envT @ Tinsts_env;
   309         val cenv =
   310           map
   311             (fn (xi, t) =>
   312               pairself (Thm.cterm_of thy) (Var (xi, fastype_of t), t))
   313             (distinct
   314               (fn ((x1, t1), (x2, t2)) => x1 = x2 andalso t1 aconv t2)
   315               (xis ~~ ts));
   316         (* Lift and instantiate rule *)
   317         val {maxidx, ...} = rep_thm st;
   318         val paramTs = map #2 params
   319         and inc = maxidx+1
   320         fun liftvar (Var ((a,j), T)) =
   321               Var((a, j+inc), paramTs ---> Logic.incr_tvar inc T)
   322           | liftvar t = raise TERM("Variable expected", [t]);
   323         fun liftterm t = list_abs_free
   324               (param_names ~~ paramTs, Logic.incr_indexes(paramTs,inc) t)
   325         fun liftpair (cv,ct) =
   326               (cterm_fun liftvar cv, cterm_fun liftterm ct)
   327         val lifttvar = pairself (ctyp_of thy o Logic.incr_tvar inc);
   328         val rule = Drule.instantiate
   329               (map lifttvar envT', map liftpair cenv)
   330               (Thm.lift_rule (Thm.cprem_of st i) thm)
   331       in
   332         if i > nprems_of st then no_tac st
   333         else st |>
   334           compose_tac (bires_flag, rule, nprems_of thm) i
   335       end
   336            handle TERM (msg,_)   => (warning msg; no_tac st)
   337                 | THM  (msg,_,_) => (warning msg; no_tac st);
   338   in tac end;
   339 
   340 val res_inst_tac = bires_inst_tac false;
   341 val eres_inst_tac = bires_inst_tac true;
   342 
   343 
   344 (* forward resolution *)
   345 
   346 fun make_elim_preserve rl =
   347   let
   348     val cert = Thm.cterm_of (Thm.theory_of_thm rl);
   349     val maxidx = Thm.maxidx_of rl;
   350     fun cvar xi = cert (Var (xi, propT));
   351     val revcut_rl' =
   352       instantiate ([], [(cvar ("V", 0), cvar ("V", maxidx + 1)),
   353         (cvar ("W", 0), cvar ("W", maxidx + 1))]) Drule.revcut_rl;
   354   in
   355     (case Seq.list_of (bicompose false (false, rl, Thm.nprems_of rl) 1 revcut_rl') of
   356       [th] => th
   357     | _ => raise THM ("make_elim_preserve", 1, [rl]))
   358   end;
   359 
   360 (*instantiate and cut -- for atomic fact*)
   361 fun cut_inst_tac ctxt insts rule = res_inst_tac ctxt insts (make_elim_preserve rule);
   362 
   363 (*forward tactic applies a rule to an assumption without deleting it*)
   364 fun forw_inst_tac ctxt insts rule = cut_inst_tac ctxt insts rule THEN' assume_tac;
   365 
   366 (*dresolve tactic applies a rule to replace an assumption*)
   367 fun dres_inst_tac ctxt insts rule = eres_inst_tac ctxt insts (make_elim_preserve rule);
   368 
   369 
   370 (* derived tactics *)
   371 
   372 (*deletion of an assumption*)
   373 fun thin_tac ctxt s = eres_inst_tac ctxt [(("V", 0), s)] Drule.thin_rl;
   374 
   375 (*Introduce the given proposition as lemma and subgoal*)
   376 fun subgoal_tac ctxt A = DETERM o res_inst_tac ctxt [(("psi", 0), A)] cut_rl;
   377 fun subgoals_tac ctxt As = EVERY' (map (subgoal_tac ctxt) As);
   378 
   379 
   380 
   381 (** methods **)
   382 
   383 (* rule_tac etc. -- refer to dynamic goal state! *)
   384 
   385 local
   386 
   387 fun gen_inst _ tac _ (quant, ([], thms)) =
   388       Method.METHOD (fn facts => quant (Method.insert_tac facts THEN' tac thms))
   389   | gen_inst inst_tac _ ctxt (quant, (insts, [thm])) =
   390       Method.METHOD (fn facts =>
   391         quant (Method.insert_tac facts THEN' inst_tac ctxt insts thm))
   392   | gen_inst _ _ _ _ = error "Cannot have instantiations with multiple rules";
   393 
   394 in
   395 
   396 val res_inst_meth = gen_inst res_inst_tac Tactic.resolve_tac;
   397 val eres_inst_meth = gen_inst eres_inst_tac Tactic.eresolve_tac;
   398 val cut_inst_meth = gen_inst cut_inst_tac Tactic.cut_rules_tac;
   399 val dres_inst_meth = gen_inst dres_inst_tac Tactic.dresolve_tac;
   400 val forw_inst_meth = gen_inst forw_inst_tac Tactic.forward_tac;
   401 
   402 end;
   403 
   404 
   405 (* method syntax *)
   406 
   407 val insts =
   408   Scan.optional
   409     (Args.and_list1 (Scan.lift (Args.name -- (Args.$$$ "=" |-- Args.!!! Args.name))) --|
   410       Scan.lift (Args.$$$ "in")) [] -- Attrib.thms;
   411 
   412 fun inst_args f src ctxt =
   413   f ctxt (fst (Method.syntax (Args.goal_spec HEADGOAL -- insts) src ctxt));
   414 
   415 val insts_var =
   416   Scan.optional
   417     (Args.and_list1 (Scan.lift (Args.var -- (Args.$$$ "=" |-- Args.!!! Args.name))) --|
   418       Scan.lift (Args.$$$ "in")) [] -- Attrib.thms;
   419 
   420 fun inst_args_var f src ctxt =
   421   f ctxt (fst (Method.syntax (Args.goal_spec HEADGOAL -- insts_var) src ctxt));
   422 
   423 
   424 (* setup *)
   425 
   426 val _ = Context.>> (Context.map_theory
   427   (Method.add_methods
   428    [("rule_tac", inst_args_var res_inst_meth,
   429       "apply rule (dynamic instantiation)"),
   430     ("erule_tac", inst_args_var eres_inst_meth,
   431       "apply rule in elimination manner (dynamic instantiation)"),
   432     ("drule_tac", inst_args_var dres_inst_meth,
   433       "apply rule in destruct manner (dynamic instantiation)"),
   434     ("frule_tac", inst_args_var forw_inst_meth,
   435       "apply rule in forward manner (dynamic instantiation)"),
   436     ("cut_tac", inst_args_var cut_inst_meth,
   437       "cut rule (dynamic instantiation)"),
   438     ("subgoal_tac", Method.goal_args_ctxt (Scan.repeat1 Args.name) subgoals_tac,
   439       "insert subgoal (dynamic instantiation)"),
   440     ("thin_tac", Method.goal_args_ctxt Args.name thin_tac,
   441       "remove premise (dynamic instantiation)")]));
   442 
   443 end;
   444 
   445 structure BasicRuleInsts: BASIC_RULE_INSTS = RuleInsts;
   446 open BasicRuleInsts;
   447