src/Pure/Isar/obtain.ML
author wenzelm
Mon, 02 Nov 2009 20:45:23 +0100
changeset 33386 ff29d1549aca
parent 33369 470a7b233ee5
child 33389 bb3a5fa94a91
permissions -rw-r--r--
modernized structure AutoBind;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7674
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Isar/obtain.ML
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
     2
    Author:     Markus Wenzel, TU Muenchen
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
     3
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
     4
The 'obtain' and 'guess' language elements -- generalized existence at
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
     5
the level of proof texts: 'obtain' involves a proof that certain
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
     6
fixes/assumes may be introduced into the present context; 'guess' is
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
     7
similar, but derives these elements from the course of reasoning!
7674
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
     8
9468
9adbcf6375c1 turned into plain context element;
wenzelm
parents: 9293
diff changeset
     9
  <chain_facts>
18870
020e242c02a0 tuned comments;
wenzelm
parents: 18769
diff changeset
    10
  obtain x where "A x" <proof> ==
7674
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
    11
18870
020e242c02a0 tuned comments;
wenzelm
parents: 18769
diff changeset
    12
  have "!!thesis. (!!x. A x ==> thesis) ==> thesis"
12970
c9b1838a2cc0 improved messages;
wenzelm
parents: 12404
diff changeset
    13
  proof succeed
9468
9adbcf6375c1 turned into plain context element;
wenzelm
parents: 9293
diff changeset
    14
    fix thesis
18870
020e242c02a0 tuned comments;
wenzelm
parents: 18769
diff changeset
    15
    assume that [intro?]: "!!x. A x ==> thesis"
020e242c02a0 tuned comments;
wenzelm
parents: 18769
diff changeset
    16
    <chain_facts>
020e242c02a0 tuned comments;
wenzelm
parents: 18769
diff changeset
    17
    show thesis
020e242c02a0 tuned comments;
wenzelm
parents: 18769
diff changeset
    18
      apply (insert that)
020e242c02a0 tuned comments;
wenzelm
parents: 18769
diff changeset
    19
      <proof>
12970
c9b1838a2cc0 improved messages;
wenzelm
parents: 12404
diff changeset
    20
  qed
18870
020e242c02a0 tuned comments;
wenzelm
parents: 18769
diff changeset
    21
  fix x assm <<obtain_export>> "A x"
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
    22
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
    23
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
    24
  <chain_facts>
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
    25
  guess x <proof body> <proof end> ==
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
    26
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
    27
  {
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
    28
    fix thesis
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
    29
    <chain_facts> have "PROP ?guess"
18870
020e242c02a0 tuned comments;
wenzelm
parents: 18769
diff changeset
    30
      apply magic      -- {* turns goal into "thesis ==> #thesis" *}
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
    31
      <proof body>
18870
020e242c02a0 tuned comments;
wenzelm
parents: 18769
diff changeset
    32
      apply_end magic  -- {* turns final "(!!x. P x ==> thesis) ==> #thesis" into
020e242c02a0 tuned comments;
wenzelm
parents: 18769
diff changeset
    33
        "#((!!x. A x ==> thesis) ==> thesis)" which is a finished goal state *}
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
    34
      <proof end>
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
    35
  }
18870
020e242c02a0 tuned comments;
wenzelm
parents: 18769
diff changeset
    36
  fix x assm <<obtain_export>> "A x"
8094
62b45a2e6ecb ObtainFun;
wenzelm
parents: 7923
diff changeset
    37
*)
7674
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
    38
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
    39
signature OBTAIN =
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
    40
sig
21229
9c96c1ec235f moved statement to specification.ML;
wenzelm
parents: 20804
diff changeset
    41
  val thatN: string
29581
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29383
diff changeset
    42
  val obtain: string -> (binding * string option * mixfix) list ->
30211
556d1810cdad Thm.binding;
wenzelm
parents: 29581
diff changeset
    43
    (Attrib.binding * (string * string list) list) list -> bool -> Proof.state -> Proof.state
29581
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29383
diff changeset
    44
  val obtain_i: string -> (binding * typ option * mixfix) list ->
30211
556d1810cdad Thm.binding;
wenzelm
parents: 29581
diff changeset
    45
    (Thm.binding * (term * term list) list) list -> bool -> Proof.state -> Proof.state
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
    46
  val result: (Proof.context -> tactic) -> thm list -> Proof.context ->
32199
82c4c570310a Variable.focus: named parameters;
wenzelm
parents: 32091
diff changeset
    47
    ((string * cterm) list * thm list) * Proof.context
29581
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29383
diff changeset
    48
  val guess: (binding * string option * mixfix) list -> bool -> Proof.state -> Proof.state
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29383
diff changeset
    49
  val guess_i: (binding * typ option * mixfix) list -> bool -> Proof.state -> Proof.state
7674
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
    50
end;
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
    51
10379
93630e0c5ae9 improved handling of "that": insert into goal, only declare as Pure "intro";
wenzelm
parents: 9481
diff changeset
    52
structure Obtain: OBTAIN =
7674
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
    53
struct
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
    54
18670
c3f445b92aff uniform handling of fixes;
wenzelm
parents: 18643
diff changeset
    55
(** obtain_export **)
c3f445b92aff uniform handling of fixes;
wenzelm
parents: 18643
diff changeset
    56
18870
020e242c02a0 tuned comments;
wenzelm
parents: 18769
diff changeset
    57
(*
18897
b31293969d4f obtain(_i): optional name for 'that';
wenzelm
parents: 18870
diff changeset
    58
  [x, A x]
b31293969d4f obtain(_i): optional name for 'that';
wenzelm
parents: 18870
diff changeset
    59
     :
b31293969d4f obtain(_i): optional name for 'that';
wenzelm
parents: 18870
diff changeset
    60
     B
b31293969d4f obtain(_i): optional name for 'that';
wenzelm
parents: 18870
diff changeset
    61
  --------
b31293969d4f obtain(_i): optional name for 'that';
wenzelm
parents: 18870
diff changeset
    62
     B
18870
020e242c02a0 tuned comments;
wenzelm
parents: 18769
diff changeset
    63
*)
21686
4f5f6c685ab4 export: added explicit term operation;
wenzelm
parents: 21605
diff changeset
    64
fun eliminate_term ctxt xs tm =
4f5f6c685ab4 export: added explicit term operation;
wenzelm
parents: 21605
diff changeset
    65
  let
4f5f6c685ab4 export: added explicit term operation;
wenzelm
parents: 21605
diff changeset
    66
    val vs = map (dest_Free o Thm.term_of) xs;
4f5f6c685ab4 export: added explicit term operation;
wenzelm
parents: 21605
diff changeset
    67
    val bads = Term.fold_aterms (fn t as Free v =>
4f5f6c685ab4 export: added explicit term operation;
wenzelm
parents: 21605
diff changeset
    68
      if member (op =) vs v then insert (op aconv) t else I | _ => I) tm [];
4f5f6c685ab4 export: added explicit term operation;
wenzelm
parents: 21605
diff changeset
    69
    val _ = null bads orelse
4f5f6c685ab4 export: added explicit term operation;
wenzelm
parents: 21605
diff changeset
    70
      error ("Result contains obtained parameters: " ^
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 22568
diff changeset
    71
        space_implode " " (map (Syntax.string_of_term ctxt) bads));
21686
4f5f6c685ab4 export: added explicit term operation;
wenzelm
parents: 21605
diff changeset
    72
  in tm end;
4f5f6c685ab4 export: added explicit term operation;
wenzelm
parents: 21605
diff changeset
    73
4f5f6c685ab4 export: added explicit term operation;
wenzelm
parents: 21605
diff changeset
    74
fun eliminate fix_ctxt rule xs As thm =
9468
9adbcf6375c1 turned into plain context element;
wenzelm
parents: 9293
diff changeset
    75
  let
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
    76
    val thy = ProofContext.theory_of fix_ctxt;
9468
9adbcf6375c1 turned into plain context element;
wenzelm
parents: 9293
diff changeset
    77
21686
4f5f6c685ab4 export: added explicit term operation;
wenzelm
parents: 21605
diff changeset
    78
    val _ = eliminate_term fix_ctxt xs (Thm.full_prop_of thm);
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
    79
    val _ = ObjectLogic.is_judgment thy (Thm.concl_of thm) orelse
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
    80
      error "Conclusion in obtained context must be object-logic judgment";
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
    81
31794
71af1fd6a5e4 renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
wenzelm
parents: 30763
diff changeset
    82
    val ((_, [thm']), ctxt') = Variable.import true [thm] fix_ctxt;
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
    83
    val prems = Drule.strip_imp_prems (#prop (Thm.crep_thm thm'));
9468
9adbcf6375c1 turned into plain context element;
wenzelm
parents: 9293
diff changeset
    84
  in
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
    85
    ((Drule.implies_elim_list thm' (map Thm.assume prems)
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
    86
        |> Drule.implies_intr_list (map Drule.norm_hhf_cterm As)
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
    87
        |> Drule.forall_intr_list xs)
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
    88
      COMP rule)
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
    89
    |> Drule.implies_intr_list prems
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
    90
    |> singleton (Variable.export ctxt' fix_ctxt)
9468
9adbcf6375c1 turned into plain context element;
wenzelm
parents: 9293
diff changeset
    91
  end;
9adbcf6375c1 turned into plain context element;
wenzelm
parents: 9293
diff changeset
    92
21686
4f5f6c685ab4 export: added explicit term operation;
wenzelm
parents: 21605
diff changeset
    93
fun obtain_export ctxt rule xs _ As =
4f5f6c685ab4 export: added explicit term operation;
wenzelm
parents: 21605
diff changeset
    94
  (eliminate ctxt rule xs As, eliminate_term ctxt xs);
4f5f6c685ab4 export: added explicit term operation;
wenzelm
parents: 21605
diff changeset
    95
9468
9adbcf6375c1 turned into plain context element;
wenzelm
parents: 9293
diff changeset
    96
9adbcf6375c1 turned into plain context element;
wenzelm
parents: 9293
diff changeset
    97
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
    98
(** obtain **)
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
    99
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   100
fun bind_judgment ctxt name =
18670
c3f445b92aff uniform handling of fixes;
wenzelm
parents: 18643
diff changeset
   101
  let
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   102
    val (bind, ctxt') = ProofContext.bind_fixes [name] ctxt;
18670
c3f445b92aff uniform handling of fixes;
wenzelm
parents: 18643
diff changeset
   103
    val (t as _ $ Free v) = bind (ObjectLogic.fixed_judgment (ProofContext.theory_of ctxt) name);
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   104
  in ((v, t), ctxt') end;
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   105
18897
b31293969d4f obtain(_i): optional name for 'that';
wenzelm
parents: 18870
diff changeset
   106
val thatN = "that";
b31293969d4f obtain(_i): optional name for 'that';
wenzelm
parents: 18870
diff changeset
   107
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   108
local
8094
62b45a2e6ecb ObtainFun;
wenzelm
parents: 7923
diff changeset
   109
18897
b31293969d4f obtain(_i): optional name for 'that';
wenzelm
parents: 18870
diff changeset
   110
fun gen_obtain prep_att prep_vars prep_propp
b31293969d4f obtain(_i): optional name for 'that';
wenzelm
parents: 18870
diff changeset
   111
    name raw_vars raw_asms int state =
7674
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
   112
  let
9468
9adbcf6375c1 turned into plain context element;
wenzelm
parents: 9293
diff changeset
   113
    val _ = Proof.assert_forward_or_chain state;
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   114
    val thy = Proof.theory_of state;
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   115
    val cert = Thm.cterm_of thy;
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   116
    val ctxt = Proof.context_of state;
17357
ee2bdca144c7 tuned Isar proof elements;
wenzelm
parents: 17111
diff changeset
   117
    val chain_facts = if can Proof.assert_chain state then Proof.the_facts state else [];
7674
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
   118
8543
f54926bded7b handle general case: params and hyps of thesis;
wenzelm
parents: 8109
diff changeset
   119
    (*obtain vars*)
19844
2c1fdc397ded fixes: include mixfix syntax;
wenzelm
parents: 19779
diff changeset
   120
    val (vars, vars_ctxt) = prep_vars raw_vars ctxt;
30763
6976521b4263 renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents: 30757
diff changeset
   121
    val (_, fix_ctxt) = vars_ctxt |> ProofContext.add_fixes vars;
30585
6b2ba4666336 use Name.of_binding for basic logical entities without name space (fixes, case names etc.);
wenzelm
parents: 30242
diff changeset
   122
    val xs = map (Name.of_binding o #1) vars;
7674
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
   123
8543
f54926bded7b handle general case: params and hyps of thesis;
wenzelm
parents: 8109
diff changeset
   124
    (*obtain asms*)
11890
28e42a90bea8 improved source arrangement of obtain;
wenzelm
parents: 11816
diff changeset
   125
    val (asms_ctxt, proppss) = prep_propp (fix_ctxt, map snd raw_asms);
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19300
diff changeset
   126
    val asm_props = maps (map fst) proppss;
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18670
diff changeset
   127
    val asms = map fst (Attrib.map_specs (prep_att thy) raw_asms) ~~ proppss;
10464
b7b916a82dca tuned statement args;
wenzelm
parents: 10379
diff changeset
   128
19897
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19844
diff changeset
   129
    val _ = Variable.warn_extra_tfrees fix_ctxt asms_ctxt;
7674
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
   130
12970
c9b1838a2cc0 improved messages;
wenzelm
parents: 12404
diff changeset
   131
    (*obtain statements*)
33386
ff29d1549aca modernized structure AutoBind;
wenzelm
parents: 33369
diff changeset
   132
    val thesisN = Name.variant xs Auto_Bind.thesisN;
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   133
    val (thesis_var, thesis) = #1 (bind_judgment fix_ctxt thesisN);
9468
9adbcf6375c1 turned into plain context element;
wenzelm
parents: 9293
diff changeset
   134
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   135
    val asm_frees = fold Term.add_frees asm_props [];
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   136
    val parms = xs |> map (fn x =>
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   137
      let val x' = ProofContext.get_skolem fix_ctxt x
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   138
      in (x', the_default propT (AList.lookup (op =) asm_frees x')) end);
10582
49ebade930ea fixed binding of parameters;
wenzelm
parents: 10464
diff changeset
   139
18897
b31293969d4f obtain(_i): optional name for 'that';
wenzelm
parents: 18870
diff changeset
   140
    val that_name = if name = "" then thatN else name;
10582
49ebade930ea fixed binding of parameters;
wenzelm
parents: 10464
diff changeset
   141
    val that_prop =
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   142
      Term.list_all_free (parms, Logic.list_implies (asm_props, thesis))
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   143
      |> Library.curry Logic.list_rename_params xs;
12970
c9b1838a2cc0 improved messages;
wenzelm
parents: 12404
diff changeset
   144
    val obtain_prop =
33386
ff29d1549aca modernized structure AutoBind;
wenzelm
parents: 33369
diff changeset
   145
      Logic.list_rename_params ([Auto_Bind.thesisN],
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   146
        Term.list_all_free ([thesis_var], Logic.mk_implies (that_prop, thesis)));
7674
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
   147
18124
a310c78298f9 simplified after_qed;
wenzelm
parents: 18040
diff changeset
   148
    fun after_qed _ =
17357
ee2bdca144c7 tuned Isar proof elements;
wenzelm
parents: 17111
diff changeset
   149
      Proof.local_qed (NONE, false)
29383
223f18cfbb32 qed/after_qed: singleton result;
wenzelm
parents: 29006
diff changeset
   150
      #> `Proof.the_fact #-> (fn rule =>
28080
4723eb2456ce explicit type Name.binding for higher-specification elements;
wenzelm
parents: 24920
diff changeset
   151
        Proof.fix_i vars
29383
223f18cfbb32 qed/after_qed: singleton result;
wenzelm
parents: 29006
diff changeset
   152
        #> Proof.assm_i (obtain_export fix_ctxt rule (map (cert o Free) parms)) asms);
7674
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
   153
  in
8094
62b45a2e6ecb ObtainFun;
wenzelm
parents: 7923
diff changeset
   154
    state
9468
9adbcf6375c1 turned into plain context element;
wenzelm
parents: 9293
diff changeset
   155
    |> Proof.enter_forward
30211
556d1810cdad Thm.binding;
wenzelm
parents: 29581
diff changeset
   156
    |> Proof.have_i NONE (K I) [(Thm.empty_binding, [(obtain_prop, [])])] int
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   157
    |> Proof.proof (SOME Method.succeed_text) |> Seq.hd
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28084
diff changeset
   158
    |> Proof.fix_i [(Binding.name thesisN, NONE, NoSyn)]
28080
4723eb2456ce explicit type Name.binding for higher-specification elements;
wenzelm
parents: 24920
diff changeset
   159
    |> Proof.assume_i
33369
470a7b233ee5 modernized structure Context_Rules;
wenzelm
parents: 33368
diff changeset
   160
      [((Binding.name that_name, [Context_Rules.intro_query NONE]), [(that_prop, [])])]
16842
wenzelm
parents: 16787
diff changeset
   161
    |> `Proof.the_facts
17357
ee2bdca144c7 tuned Isar proof elements;
wenzelm
parents: 17111
diff changeset
   162
    ||> Proof.chain_facts chain_facts
30211
556d1810cdad Thm.binding;
wenzelm
parents: 29581
diff changeset
   163
    ||> Proof.show_i NONE after_qed [(Thm.empty_binding, [(thesis, [])])] false
18907
f984f22f1cb4 Proof.refine_insert;
wenzelm
parents: 18897
diff changeset
   164
    |-> Proof.refine_insert
7674
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
   165
  end;
99305245f6bd The 'obtain' language element -- achieves (eliminated) existential
wenzelm
parents:
diff changeset
   166
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   167
in
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   168
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18693
diff changeset
   169
val obtain = gen_obtain Attrib.attribute ProofContext.read_vars ProofContext.read_propp;
17111
d2ea9c974570 prepare attributes here;
wenzelm
parents: 17034
diff changeset
   170
val obtain_i = gen_obtain (K I) ProofContext.cert_vars ProofContext.cert_propp;
8094
62b45a2e6ecb ObtainFun;
wenzelm
parents: 7923
diff changeset
   171
62b45a2e6ecb ObtainFun;
wenzelm
parents: 7923
diff changeset
   172
end;
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   173
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   174
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   175
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   176
(** tactical result **)
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   177
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   178
fun check_result ctxt thesis th =
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   179
  (case Thm.prems_of th of
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   180
    [prem] =>
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   181
      if Thm.concl_of th aconv thesis andalso
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   182
        Logic.strip_assums_concl prem aconv thesis then th
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 31794
diff changeset
   183
      else error ("Guessed a different clause:\n" ^ Display.string_of_thm ctxt th)
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   184
  | [] => error "Goal solved -- nothing guessed."
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 31794
diff changeset
   185
  | _ => error ("Guess split into several cases:\n" ^ Display.string_of_thm ctxt th));
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   186
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   187
fun result tac facts ctxt =
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   188
  let
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   189
    val thy = ProofContext.theory_of ctxt;
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   190
    val cert = Thm.cterm_of thy;
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   191
33386
ff29d1549aca modernized structure AutoBind;
wenzelm
parents: 33369
diff changeset
   192
    val ((thesis_var, thesis), thesis_ctxt) = bind_judgment ctxt Auto_Bind.thesisN;
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   193
    val rule =
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   194
      (case SINGLE (Method.insert_tac facts 1 THEN tac thesis_ctxt) (Goal.init (cert thesis)) of
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   195
        NONE => raise THM ("Obtain.result: tactic failed", 0, facts)
21605
4e7307e229b3 qualified MetaSimplifier.norm_hhf(_protect);
wenzelm
parents: 21229
diff changeset
   196
      | SOME th => check_result ctxt thesis (MetaSimplifier.norm_hhf (Goal.conclude th)));
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   197
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   198
    val closed_rule = Thm.forall_intr (cert (Free thesis_var)) rule;
31794
71af1fd6a5e4 renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
wenzelm
parents: 30763
diff changeset
   199
    val ((_, [rule']), ctxt') = Variable.import false [closed_rule] ctxt;
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   200
    val obtain_rule = Thm.forall_elim (cert (Logic.varify (Free thesis_var))) rule';
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   201
    val ((params, stmt), fix_ctxt) = Variable.focus (Thm.cprem_of obtain_rule 1) ctxt';
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   202
    val (prems, ctxt'') =
32199
82c4c570310a Variable.focus: named parameters;
wenzelm
parents: 32091
diff changeset
   203
      Assumption.add_assms (obtain_export fix_ctxt obtain_rule (map #2 params))
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   204
        (Drule.strip_imp_prems stmt) fix_ctxt;
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   205
  in ((params, prems), ctxt'') end;
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   206
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   207
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   208
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   209
(** guess **)
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   210
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   211
local
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   212
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   213
fun unify_params vars thesis_var raw_rule ctxt =
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   214
  let
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18670
diff changeset
   215
    val thy = ProofContext.theory_of ctxt;
19978
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   216
    val certT = Thm.ctyp_of thy;
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   217
    val cert = Thm.cterm_of thy;
32966
5b21661fe618 indicate CRITICAL nature of various setmp combinators;
wenzelm
parents: 32786
diff changeset
   218
    val string_of_term = setmp_CRITICAL show_types true (Syntax.string_of_term ctxt);
17891
7a6c4d60a913 tuned error msg;
wenzelm
parents: 17858
diff changeset
   219
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 31794
diff changeset
   220
    fun err msg th = error (msg ^ ":\n" ^ Display.string_of_thm ctxt th);
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   221
19978
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   222
    val maxidx = fold (Term.maxidx_typ o snd o fst) vars ~1;
19779
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   223
    val rule = Thm.incr_indexes (maxidx + 1) raw_rule;
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   224
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 32966
diff changeset
   225
    val params = Rule_Cases.strip_params (Logic.nth_prem (1, Thm.prop_of rule));
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   226
    val m = length vars;
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   227
    val n = length params;
19779
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   228
    val _ = m <= n orelse err "More variables than parameters in obtained rule" rule;
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   229
19779
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   230
    fun unify ((x, T), (y, U)) (tyenv, max) = Sign.typ_unify thy (T, U) (tyenv, max)
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   231
      handle Type.TUNIFY =>
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   232
        err ("Failed to unify variable " ^
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   233
          string_of_term (Free (x, Envir.norm_type tyenv T)) ^ " against parameter " ^
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   234
          string_of_term (Syntax.mark_boundT (y, Envir.norm_type tyenv U)) ^ " in") rule;
19978
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   235
    val (tyenv, _) = fold unify (map #1 vars ~~ Library.take (m, params))
19779
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   236
      (Vartab.empty, Int.max (maxidx, Thm.maxidx_of rule));
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   237
    val norm_type = Envir.norm_type tyenv;
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   238
19978
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   239
    val xs = map (apsnd norm_type o fst) vars;
19779
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   240
    val ys = map (apsnd norm_type) (Library.drop (m, params));
20085
c5d60752587f replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 20004
diff changeset
   241
    val ys' = map Name.internal (Name.variant_list (map fst xs) (map fst ys)) ~~ map #2 ys;
19978
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   242
    val terms = map (Drule.mk_term o cert o Free) (xs @ ys');
19779
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   243
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   244
    val instT =
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   245
      fold (Term.add_tvarsT o #2) params []
19978
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   246
      |> map (TVar #> (fn T => (certT T, certT (norm_type T))));
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   247
    val closed_rule = rule
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   248
      |> Thm.forall_intr (cert (Free thesis_var))
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   249
      |> Thm.instantiate (instT, []);
17891
7a6c4d60a913 tuned error msg;
wenzelm
parents: 17858
diff changeset
   250
31794
71af1fd6a5e4 renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
wenzelm
parents: 30763
diff changeset
   251
    val ((_, rule' :: terms'), ctxt') = Variable.import false (closed_rule :: terms) ctxt;
19978
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   252
    val vars' =
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   253
      map (dest_Free o Thm.term_of o Drule.dest_term) terms' ~~
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   254
      (map snd vars @ replicate (length ys) NoSyn);
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   255
    val rule'' = Thm.forall_elim (cert (Logic.varify (Free thesis_var))) rule';
19978
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   256
  in ((vars', rule''), ctxt') end;
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   257
28080
4723eb2456ce explicit type Name.binding for higher-specification elements;
wenzelm
parents: 24920
diff changeset
   258
fun inferred_type (binding, _, mx) ctxt =
4723eb2456ce explicit type Name.binding for higher-specification elements;
wenzelm
parents: 24920
diff changeset
   259
  let
30585
6b2ba4666336 use Name.of_binding for basic logical entities without name space (fixes, case names etc.);
wenzelm
parents: 30242
diff changeset
   260
    val x = Name.of_binding binding;
28080
4723eb2456ce explicit type Name.binding for higher-specification elements;
wenzelm
parents: 24920
diff changeset
   261
    val (T, ctxt') = ProofContext.inferred_param x ctxt
19779
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   262
  in ((x, T, mx), ctxt') end;
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   263
20004
e6d3f2b031e6 guess: proper context for polymorphic parameters;
wenzelm
parents: 19978
diff changeset
   264
fun polymorphic ctxt vars =
19897
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19844
diff changeset
   265
  let val Ts = map Logic.dest_type (Variable.polymorphic ctxt (map (Logic.mk_type o #2) vars))
19779
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   266
  in map2 (fn (x, _, mx) => fn T => ((x, T), mx)) vars Ts end;
18693
8ae076ee5e19 guess: used fixed inferred_type of vars;
wenzelm
parents: 18678
diff changeset
   267
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   268
fun gen_guess prep_vars raw_vars int state =
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   269
  let
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   270
    val _ = Proof.assert_forward_or_chain state;
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   271
    val thy = Proof.theory_of state;
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   272
    val cert = Thm.cterm_of thy;
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   273
    val ctxt = Proof.context_of state;
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   274
    val chain_facts = if can Proof.assert_chain state then Proof.the_facts state else [];
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   275
33386
ff29d1549aca modernized structure AutoBind;
wenzelm
parents: 33369
diff changeset
   276
    val (thesis_var, thesis) = #1 (bind_judgment ctxt Auto_Bind.thesisN);
20004
e6d3f2b031e6 guess: proper context for polymorphic parameters;
wenzelm
parents: 19978
diff changeset
   277
    val vars = ctxt |> prep_vars raw_vars |-> fold_map inferred_type |> fst |> polymorphic ctxt;
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   278
19978
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   279
    fun guess_context raw_rule state' =
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   280
      let
19978
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   281
        val ((parms, rule), ctxt') =
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   282
          unify_params vars thesis_var raw_rule (Proof.context_of state');
19978
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   283
        val (bind, _) = ProofContext.bind_fixes (map (#1 o #1) parms) ctxt';
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   284
        val ts = map (bind o Free o #1) parms;
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   285
        val ps = map dest_Free ts;
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   286
        val asms =
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   287
          Logic.strip_assums_hyp (Logic.nth_prem (1, Thm.prop_of rule))
19585
70a1ce3b23ae removed 'concl is' patterns;
wenzelm
parents: 19482
diff changeset
   288
          |> map (fn asm => (Term.betapplys (Term.list_abs (ps, asm), ts), []));
19779
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   289
        val _ = not (null asms) orelse error "Trivial result -- nothing guessed";
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   290
      in
19978
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   291
        state'
df19a7876183 obtain_export: Thm.generalize;
wenzelm
parents: 19906
diff changeset
   292
        |> Proof.map_context (K ctxt')
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28084
diff changeset
   293
        |> Proof.fix_i (map (fn ((x, T), mx) => (Binding.name x, SOME T, mx)) parms)
28080
4723eb2456ce explicit type Name.binding for higher-specification elements;
wenzelm
parents: 24920
diff changeset
   294
        |> `Proof.context_of |-> (fn fix_ctxt => Proof.assm_i
30211
556d1810cdad Thm.binding;
wenzelm
parents: 29581
diff changeset
   295
          (obtain_export fix_ctxt rule (map cert ts)) [(Thm.empty_binding, asms)])
33386
ff29d1549aca modernized structure AutoBind;
wenzelm
parents: 33369
diff changeset
   296
        |> Proof.bind_terms Auto_Bind.no_facts
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   297
      end;
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   298
19779
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   299
    val goal = Var (("guess", 0), propT);
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   300
    fun print_result ctxt' (k, [(s, [_, th])]) =
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   301
      ProofDisplay.print_results int ctxt' (k, [(s, [th])]);
21605
4e7307e229b3 qualified MetaSimplifier.norm_hhf(_protect);
wenzelm
parents: 21229
diff changeset
   302
    val before_qed = SOME (Method.primitive_text (Goal.conclude #> MetaSimplifier.norm_hhf #>
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   303
        (fn th => Goal.protect (Conjunction.intr (Drule.mk_term (Thm.cprop_of th)) th))));
19779
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   304
    fun after_qed [[_, res]] =
29383
223f18cfbb32 qed/after_qed: singleton result;
wenzelm
parents: 29006
diff changeset
   305
      Proof.end_block #> guess_context (check_result ctxt thesis res);
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   306
  in
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   307
    state
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   308
    |> Proof.enter_forward
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   309
    |> Proof.begin_block
33386
ff29d1549aca modernized structure AutoBind;
wenzelm
parents: 33369
diff changeset
   310
    |> Proof.fix_i [(Binding.name Auto_Bind.thesisN, NONE, NoSyn)]
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   311
    |> Proof.chain_facts chain_facts
19779
5c77dfb74c7b guess: more careful about local polymorphism;
wenzelm
parents: 19585
diff changeset
   312
    |> Proof.local_goal print_result (K I) (apsnd (rpair I))
30211
556d1810cdad Thm.binding;
wenzelm
parents: 29581
diff changeset
   313
      "guess" before_qed after_qed [(Thm.empty_binding, [Logic.mk_term goal, goal])]
20308
ddb7e7129481 added tactical result;
wenzelm
parents: 20224
diff changeset
   314
    |> Proof.refine (Method.primitive_text (K (Goal.init (cert thesis)))) |> Seq.hd
17858
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   315
  end;
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   316
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   317
in
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   318
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   319
val guess = gen_guess ProofContext.read_vars;
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   320
val guess_i = gen_guess ProofContext.cert_vars;
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   321
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   322
end;
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   323
bc4db8cfd92f added 'guess', which derives the obtained context from the course of reasoning;
wenzelm
parents: 17357
diff changeset
   324
end;