src/Pure/Isar/proof.ML
author wenzelm
Wed, 07 Jan 2009 20:27:05 +0100
changeset 29385 c96b91bab2e6
parent 29383 223f18cfbb32
child 29393 bc41c9cbbfc2
permissions -rw-r--r--
future_proof: refined version covers local_future_proof and global_future_proof;
future_proof: refrain from full Variable.auto_fixes -- not all contexts in the stack are in body mode;
refined is_relevant: mode check;
added local/global_future_terminal_proof;
     1 (*  Title:      Pure/Isar/proof.ML
     2     Author:     Markus Wenzel, TU Muenchen
     3 
     4 The Isar/VM proof language interpreter: maintains a structured flow of
     5 context elements, goals, refinements, and facts.
     6 *)
     7 
     8 signature PROOF =
     9 sig
    10   type context = Context.proof
    11   type method = Method.method
    12   type state
    13   val init: context -> state
    14   val level: state -> int
    15   val assert_bottom: bool -> state -> state
    16   val context_of: state -> context
    17   val theory_of: state -> theory
    18   val map_context: (context -> context) -> state -> state
    19   val map_contexts: (context -> context) -> state -> state
    20   val add_binds_i: (indexname * term option) list -> state -> state
    21   val put_thms: bool -> string * thm list option -> state -> state
    22   val the_facts: state -> thm list
    23   val the_fact: state -> thm
    24   val put_facts: thm list option -> state -> state
    25   val assert_forward: state -> state
    26   val assert_chain: state -> state
    27   val assert_forward_or_chain: state -> state
    28   val assert_backward: state -> state
    29   val assert_no_chain: state -> state
    30   val enter_forward: state -> state
    31   val goal_message: (unit -> Pretty.T) -> state -> state
    32   val get_goal: state -> context * (thm list * thm)
    33   val show_main_goal: bool ref
    34   val verbose: bool ref
    35   val pretty_state: int -> state -> Pretty.T list
    36   val pretty_goals: bool -> state -> Pretty.T list
    37   val refine: Method.text -> state -> state Seq.seq
    38   val refine_end: Method.text -> state -> state Seq.seq
    39   val refine_insert: thm list -> state -> state
    40   val goal_tac: thm -> int -> tactic
    41   val refine_goals: (context -> thm -> unit) -> context -> thm list -> state -> state Seq.seq
    42   val match_bind: (string list * string) list -> state -> state
    43   val match_bind_i: (term list * term) list -> state -> state
    44   val let_bind: (string list * string) list -> state -> state
    45   val let_bind_i: (term list * term) list -> state -> state
    46   val fix: (Binding.T * string option * mixfix) list -> state -> state
    47   val fix_i: (Binding.T * typ option * mixfix) list -> state -> state
    48   val assm: Assumption.export ->
    49     (Attrib.binding * (string * string list) list) list -> state -> state
    50   val assm_i: Assumption.export ->
    51     ((Binding.T * attribute list) * (term * term list) list) list -> state -> state
    52   val assume: (Attrib.binding * (string * string list) list) list -> state -> state
    53   val assume_i: ((Binding.T * attribute list) * (term * term list) list) list ->
    54     state -> state
    55   val presume: (Attrib.binding * (string * string list) list) list -> state -> state
    56   val presume_i: ((Binding.T * attribute list) * (term * term list) list) list ->
    57     state -> state
    58   val def: (Attrib.binding * ((Binding.T * mixfix) * (string * string list))) list ->
    59     state -> state
    60   val def_i: ((Binding.T * attribute list) *
    61     ((Binding.T * mixfix) * (term * term list))) list -> state -> state
    62   val chain: state -> state
    63   val chain_facts: thm list -> state -> state
    64   val get_thmss: state -> (Facts.ref * Attrib.src list) list -> thm list
    65   val note_thmss: (Attrib.binding * (Facts.ref * Attrib.src list) list) list -> state -> state
    66   val note_thmss_i: ((Binding.T * attribute list) *
    67     (thm list * attribute list) list) list -> state -> state
    68   val from_thmss: ((Facts.ref * Attrib.src list) list) list -> state -> state
    69   val from_thmss_i: ((thm list * attribute list) list) list -> state -> state
    70   val with_thmss: ((Facts.ref * Attrib.src list) list) list -> state -> state
    71   val with_thmss_i: ((thm list * attribute list) list) list -> state -> state
    72   val using: ((Facts.ref * Attrib.src list) list) list -> state -> state
    73   val using_i: ((thm list * attribute list) list) list -> state -> state
    74   val unfolding: ((Facts.ref * Attrib.src list) list) list -> state -> state
    75   val unfolding_i: ((thm list * attribute list) list) list -> state -> state
    76   val invoke_case: string * string option list * Attrib.src list -> state -> state
    77   val invoke_case_i: string * string option list * attribute list -> state -> state
    78   val begin_block: state -> state
    79   val next_block: state -> state
    80   val end_block: state -> state
    81   val proof: Method.text option -> state -> state Seq.seq
    82   val defer: int option -> state -> state Seq.seq
    83   val prefer: int -> state -> state Seq.seq
    84   val apply: Method.text -> state -> state Seq.seq
    85   val apply_end: Method.text -> state -> state Seq.seq
    86   val local_goal: (context -> ((string * string) * (string * thm list) list) -> unit) ->
    87     (theory -> 'a -> attribute) ->
    88     (context * 'b list -> context * (term list list * (context -> context))) ->
    89     string -> Method.text option -> (thm list list -> state -> state) ->
    90     ((Binding.T * 'a list) * 'b) list -> state -> state
    91   val local_qed: Method.text option * bool -> state -> state
    92   val theorem: Method.text option -> (thm list list -> context -> context) ->
    93     (string * string list) list list -> context -> state
    94   val theorem_i: Method.text option -> (thm list list -> context -> context) ->
    95     (term * term list) list list -> context -> state
    96   val global_qed: Method.text option * bool -> state -> context
    97   val local_terminal_proof: Method.text * Method.text option -> state -> state
    98   val local_default_proof: state -> state
    99   val local_immediate_proof: state -> state
   100   val local_skip_proof: bool -> state -> state
   101   val local_done_proof: state -> state
   102   val global_terminal_proof: Method.text * Method.text option -> state -> context
   103   val global_default_proof: state -> context
   104   val global_immediate_proof: state -> context
   105   val global_skip_proof: bool -> state -> context
   106   val global_done_proof: state -> context
   107   val have: Method.text option -> (thm list list -> state -> state) ->
   108     (Attrib.binding * (string * string list) list) list -> bool -> state -> state
   109   val have_i: Method.text option -> (thm list list -> state -> state) ->
   110     ((Binding.T * attribute list) * (term * term list) list) list -> bool -> state -> state
   111   val show: Method.text option -> (thm list list -> state -> state) ->
   112     (Attrib.binding * (string * string list) list) list -> bool -> state -> state
   113   val show_i: Method.text option -> (thm list list -> state -> state) ->
   114     ((Binding.T * attribute list) * (term * term list) list) list -> bool -> state -> state
   115   val schematic_goal: state -> bool
   116   val is_relevant: state -> bool
   117   val local_future_proof: (state -> ('a * state) Future.future) ->
   118     state -> 'a Future.future * state
   119   val global_future_proof: (state -> ('a * Proof.context) Future.future) ->
   120     state -> 'a Future.future * context
   121   val local_future_terminal_proof: Method.text * Method.text option -> bool -> state -> state
   122   val global_future_terminal_proof: Method.text * Method.text option -> bool -> state -> context
   123 end;
   124 
   125 structure Proof: PROOF =
   126 struct
   127 
   128 type context = Context.proof;
   129 type method = Method.method;
   130 
   131 
   132 (** proof state **)
   133 
   134 (* datatype state *)
   135 
   136 datatype mode = Forward | Chain | Backward;
   137 
   138 datatype state =
   139   State of node Stack.T
   140 and node =
   141   Node of
   142    {context: context,
   143     facts: thm list option,
   144     mode: mode,
   145     goal: goal option}
   146 and goal =
   147   Goal of
   148    {statement: (string * Position.T) * term list list * term,
   149       (*goal kind and statement (starting with vars), initial proposition*)
   150     messages: (unit -> Pretty.T) list,    (*persistent messages (hints etc.)*)
   151     using: thm list,                      (*goal facts*)
   152     goal: thm,                            (*subgoals ==> statement*)
   153     before_qed: Method.text option,
   154     after_qed:
   155       (thm list list -> state -> state) *
   156       (thm list list -> context -> context)};
   157 
   158 fun make_goal (statement, messages, using, goal, before_qed, after_qed) =
   159   Goal {statement = statement, messages = messages, using = using, goal = goal,
   160     before_qed = before_qed, after_qed = after_qed};
   161 
   162 fun make_node (context, facts, mode, goal) =
   163   Node {context = context, facts = facts, mode = mode, goal = goal};
   164 
   165 fun map_node f (Node {context, facts, mode, goal}) =
   166   make_node (f (context, facts, mode, goal));
   167 
   168 val init_context =
   169   ProofContext.set_stmt true #> ProofContext.reset_naming;
   170 
   171 fun init ctxt =
   172   State (Stack.init (make_node (init_context ctxt, NONE, Forward, NONE)));
   173 
   174 fun current (State st) = Stack.top st |> (fn Node node => node);
   175 fun map_current f (State st) = State (Stack.map_top (map_node f) st);
   176 fun map_all f (State st) = State (Stack.map_all (map_node f) st);
   177 
   178 
   179 
   180 (** basic proof state operations **)
   181 
   182 (* block structure *)
   183 
   184 fun open_block (State st) = State (Stack.push st);
   185 
   186 fun close_block (State st) = State (Stack.pop st)
   187   handle Empty => error "Unbalanced block parentheses";
   188 
   189 fun level (State st) = Stack.level st;
   190 
   191 fun assert_bottom b state =
   192   let val b' = (level state <= 2) in
   193     if b andalso not b' then error "Not at bottom of proof!"
   194     else if not b andalso b' then error "Already at bottom of proof!"
   195     else state
   196   end;
   197 
   198 
   199 (* context *)
   200 
   201 val context_of = #context o current;
   202 val theory_of = ProofContext.theory_of o context_of;
   203 
   204 fun map_context f =
   205   map_current (fn (ctxt, facts, mode, goal) => (f ctxt, facts, mode, goal));
   206 
   207 fun map_context_result f state =
   208   f (context_of state) ||> (fn ctxt => map_context (K ctxt) state);
   209 
   210 fun map_contexts f = map_all (fn (ctxt, facts, mode, goal) => (f ctxt, facts, mode, goal));
   211 
   212 val add_binds_i = map_context o ProofContext.add_binds_i;
   213 val put_thms = map_context oo ProofContext.put_thms;
   214 
   215 
   216 (* facts *)
   217 
   218 val get_facts = #facts o current;
   219 
   220 fun the_facts state =
   221   (case get_facts state of SOME facts => facts
   222   | NONE => error "No current facts available");
   223 
   224 fun the_fact state =
   225   (case the_facts state of [thm] => thm
   226   | _ => error "Single theorem expected");
   227 
   228 fun put_facts facts =
   229   map_current (fn (ctxt, _, mode, goal) => (ctxt, facts, mode, goal)) #>
   230   put_thms true (AutoBind.thisN, facts);
   231 
   232 fun these_factss more_facts (named_factss, state) =
   233   (named_factss, state |> put_facts (SOME (maps snd named_factss @ more_facts)));
   234 
   235 fun export_facts inner outer =
   236   (case get_facts inner of
   237     NONE => put_facts NONE outer
   238   | SOME thms =>
   239       thms
   240       |> ProofContext.export (context_of inner) (context_of outer)
   241       |> (fn ths => put_facts (SOME ths) outer));
   242 
   243 
   244 (* mode *)
   245 
   246 val get_mode = #mode o current;
   247 fun put_mode mode = map_current (fn (ctxt, facts, _, goal) => (ctxt, facts, mode, goal));
   248 
   249 val mode_name = (fn Forward => "state" | Chain => "chain" | Backward => "prove");
   250 
   251 fun assert_mode pred state =
   252   let val mode = get_mode state in
   253     if pred mode then state
   254     else error ("Illegal application of proof command in " ^ quote (mode_name mode) ^ " mode")
   255   end;
   256 
   257 val assert_forward = assert_mode (fn mode => mode = Forward);
   258 val assert_chain = assert_mode (fn mode => mode = Chain);
   259 val assert_forward_or_chain = assert_mode (fn mode => mode = Forward orelse mode = Chain);
   260 val assert_backward = assert_mode (fn mode => mode = Backward);
   261 val assert_no_chain = assert_mode (fn mode => mode <> Chain);
   262 
   263 val enter_forward = put_mode Forward;
   264 val enter_chain = put_mode Chain;
   265 val enter_backward = put_mode Backward;
   266 
   267 
   268 (* current goal *)
   269 
   270 fun current_goal state =
   271   (case current state of
   272     {context, goal = SOME (Goal goal), ...} => (context, goal)
   273   | _ => error "No current goal!");
   274 
   275 fun assert_current_goal g state =
   276   let val g' = can current_goal state in
   277     if g andalso not g' then error "No goal in this block!"
   278     else if not g andalso g' then error "Goal present in this block!"
   279     else state
   280   end;
   281 
   282 fun put_goal goal = map_current (fn (ctxt, using, mode, _) => (ctxt, using, mode, goal));
   283 
   284 val before_qed = #before_qed o #2 o current_goal;
   285 
   286 
   287 (* nested goal *)
   288 
   289 fun map_goal f g (State (Node {context, facts, mode, goal = SOME goal}, nodes)) =
   290       let
   291         val Goal {statement, messages, using, goal, before_qed, after_qed} = goal;
   292         val goal' = make_goal (g (statement, messages, using, goal, before_qed, after_qed));
   293       in State (make_node (f context, facts, mode, SOME goal'), nodes) end
   294   | map_goal f g (State (nd, node :: nodes)) =
   295       let val State (node', nodes') = map_goal f g (State (node, nodes))
   296       in map_context f (State (nd, node' :: nodes')) end
   297   | map_goal _ _ state = state;
   298 
   299 fun set_goal goal = map_goal I (fn (statement, _, using, _, before_qed, after_qed) =>
   300   (statement, [], using, goal, before_qed, after_qed));
   301 
   302 fun goal_message msg = map_goal I (fn (statement, messages, using, goal, before_qed, after_qed) =>
   303   (statement, msg :: messages, using, goal, before_qed, after_qed));
   304 
   305 fun using_facts using = map_goal I (fn (statement, _, _, goal, before_qed, after_qed) =>
   306   (statement, [], using, goal, before_qed, after_qed));
   307 
   308 local
   309   fun find i state =
   310     (case try current_goal state of
   311       SOME (ctxt, goal) => (ctxt, (i, goal))
   312     | NONE => find (i + 1) (close_block state handle ERROR _ => error "No goal present"));
   313 in val find_goal = find 0 end;
   314 
   315 fun get_goal state =
   316   let val (ctxt, (_, {using, goal, ...})) = find_goal state
   317   in (ctxt, (using, goal)) end;
   318 
   319 
   320 
   321 (** pretty_state **)
   322 
   323 val show_main_goal = ref false;
   324 val verbose = ProofContext.verbose;
   325 
   326 val pretty_goals_local = Display.pretty_goals_aux o Syntax.pp;
   327 
   328 fun pretty_facts _ _ NONE = []
   329   | pretty_facts s ctxt (SOME ths) =
   330       [Pretty.big_list (s ^ "this:") (map (ProofContext.pretty_thm ctxt) ths), Pretty.str ""];
   331 
   332 fun pretty_state nr state =
   333   let
   334     val {context, facts, mode, goal = _} = current state;
   335 
   336     fun levels_up 0 = ""
   337       | levels_up 1 = "1 level up"
   338       | levels_up i = string_of_int i ^ " levels up";
   339 
   340     fun subgoals 0 = ""
   341       | subgoals 1 = "1 subgoal"
   342       | subgoals n = string_of_int n ^ " subgoals";
   343 
   344     fun description strs =
   345       (case filter_out (fn s => s = "") strs of [] => ""
   346       | strs' => enclose " (" ")" (commas strs'));
   347 
   348     fun prt_goal (SOME (ctxt, (i, {statement = ((_, pos), _, _), messages, using, goal, ...}))) =
   349           pretty_facts "using " ctxt
   350             (if mode <> Backward orelse null using then NONE else SOME using) @
   351           [Pretty.str ("goal" ^
   352             description [levels_up (i div 2), subgoals (Thm.nprems_of goal)] ^ ":")] @
   353           pretty_goals_local ctxt Markup.subgoal
   354             (true, ! show_main_goal) (! Display.goals_limit) goal @
   355           (map (fn msg => Position.setmp_thread_data pos msg ()) (rev messages))
   356       | prt_goal NONE = [];
   357 
   358     val prt_ctxt =
   359       if ! verbose orelse mode = Forward then ProofContext.pretty_context context
   360       else if mode = Backward then ProofContext.pretty_ctxt context
   361       else [];
   362   in
   363     [Pretty.str ("proof (" ^ mode_name mode ^ "): step " ^ string_of_int nr ^
   364       (if ! verbose then ", depth " ^ string_of_int (level state div 2 - 1) else "")),
   365       Pretty.str ""] @
   366     (if null prt_ctxt then [] else prt_ctxt @ [Pretty.str ""]) @
   367     (if ! verbose orelse mode = Forward then
   368        pretty_facts "" context facts @ prt_goal (try find_goal state)
   369      else if mode = Chain then pretty_facts "picking " context facts
   370      else prt_goal (try find_goal state))
   371   end;
   372 
   373 fun pretty_goals main state =
   374   let val (ctxt, (_, goal)) = get_goal state
   375   in pretty_goals_local ctxt Markup.none (false, main) (! Display.goals_limit) goal end;
   376 
   377 
   378 
   379 (** proof steps **)
   380 
   381 (* refine via method *)
   382 
   383 local
   384 
   385 fun goalN i = "goal" ^ string_of_int i;
   386 fun goals st = map goalN (1 upto Thm.nprems_of st);
   387 
   388 fun no_goal_cases st = map (rpair NONE) (goals st);
   389 
   390 fun goal_cases st =
   391   RuleCases.make_common true (Thm.theory_of_thm st, Thm.prop_of st) (map (rpair []) (goals st));
   392 
   393 fun apply_method current_context pos meth state =
   394   let
   395     val (goal_ctxt, (_, {statement, messages = _, using, goal, before_qed, after_qed})) =
   396       find_goal state;
   397     val ctxt = if current_context then context_of state else goal_ctxt;
   398   in
   399     Method.apply pos meth ctxt using goal |> Seq.map (fn (meth_cases, goal') =>
   400       state
   401       |> map_goal
   402           (ProofContext.add_cases false (no_goal_cases goal @ goal_cases goal') #>
   403            ProofContext.add_cases true meth_cases)
   404           (K (statement, [], using, goal', before_qed, after_qed)))
   405   end;
   406 
   407 fun select_goals n meth state =
   408   state
   409   |> (#2 o #2 o get_goal)
   410   |> ALLGOALS Goal.conjunction_tac
   411   |> Seq.maps (fn goal =>
   412     state
   413     |> Seq.lift set_goal (Goal.extract 1 n goal |> Seq.maps (Goal.conjunction_tac 1))
   414     |> Seq.maps meth
   415     |> Seq.maps (fn state' => state'
   416       |> Seq.lift set_goal (Goal.retrofit 1 n (#2 (#2 (get_goal state'))) goal))
   417     |> Seq.maps (apply_method true Position.none (K Method.succeed)));
   418 
   419 fun apply_text cc text state =
   420   let
   421     val thy = theory_of state;
   422     val pos_of = #2 o Args.dest_src;
   423 
   424     fun eval (Method.Basic (m, pos)) = apply_method cc pos m
   425       | eval (Method.Source src) = apply_method cc (pos_of src) (Method.method thy src)
   426       | eval (Method.Source_i src) = apply_method cc (pos_of src) (Method.method_i thy src)
   427       | eval (Method.Then txts) = Seq.EVERY (map eval txts)
   428       | eval (Method.Orelse txts) = Seq.FIRST (map eval txts)
   429       | eval (Method.Try txt) = Seq.TRY (eval txt)
   430       | eval (Method.Repeat1 txt) = Seq.REPEAT1 (eval txt)
   431       | eval (Method.SelectGoals (n, txt)) = select_goals n (eval txt);
   432   in eval text state end;
   433 
   434 in
   435 
   436 val refine = apply_text true;
   437 val refine_end = apply_text false;
   438 
   439 fun refine_insert [] = I
   440   | refine_insert ths = Seq.hd o refine (Method.Basic (K (Method.insert ths), Position.none));
   441 
   442 end;
   443 
   444 
   445 (* refine via sub-proof *)
   446 
   447 fun goal_tac rule =
   448   Goal.norm_hhf_tac THEN' Tactic.rtac rule THEN_ALL_NEW
   449     (Goal.norm_hhf_tac THEN' (SUBGOAL (fn (goal, i) =>
   450       if can Logic.unprotect (Logic.strip_assums_concl goal) then
   451         Tactic.etac Drule.protectI i
   452       else all_tac)));
   453 
   454 fun refine_goals print_rule inner raw_rules state =
   455   let
   456     val (outer, (_, goal)) = get_goal state;
   457     fun refine rule st = (print_rule outer rule; FINDGOAL (goal_tac rule) st);
   458   in
   459     raw_rules
   460     |> ProofContext.goal_export inner outer
   461     |> (fn rules => Seq.lift set_goal (EVERY (map refine rules) goal) state)
   462   end;
   463 
   464 
   465 (* conclude_goal *)
   466 
   467 fun conclude_goal ctxt goal propss =
   468   let
   469     val thy = ProofContext.theory_of ctxt;
   470     val string_of_term = Syntax.string_of_term ctxt;
   471     val string_of_thm = ProofContext.string_of_thm ctxt;
   472 
   473     val ngoals = Thm.nprems_of goal;
   474     val _ = ngoals = 0 orelse error (Pretty.string_of (Pretty.chunks
   475       (pretty_goals_local ctxt Markup.none (true, ! show_main_goal) (! Display.goals_limit) goal @
   476         [Pretty.str (string_of_int ngoals ^ " unsolved goal(s)!")])));
   477 
   478     val extra_hyps = Assumption.extra_hyps ctxt goal;
   479     val _ = null extra_hyps orelse
   480       error ("Additional hypotheses:\n" ^ cat_lines (map string_of_term extra_hyps));
   481 
   482     fun lost_structure () = error ("Lost goal structure:\n" ^ string_of_thm goal);
   483 
   484     val th = Goal.conclude
   485       (if length (flat propss) > 1 then Thm.norm_proof goal else goal)
   486       handle THM _ => lost_structure ();
   487     val goal_propss = filter_out null propss;
   488     val results =
   489       Conjunction.elim_balanced (length goal_propss) th
   490       |> map2 Conjunction.elim_balanced (map length goal_propss)
   491       handle THM _ => lost_structure ();
   492     val _ = Unify.matches_list thy (flat goal_propss) (map Thm.prop_of (flat results)) orelse
   493       error ("Proved a different theorem:\n" ^ string_of_thm th);
   494     val _ = Thm.check_shyps (Variable.sorts_of ctxt) th;
   495 
   496     fun recover_result ([] :: pss) thss = [] :: recover_result pss thss
   497       | recover_result (_ :: pss) (ths :: thss) = ths :: recover_result pss thss
   498       | recover_result [] [] = []
   499       | recover_result _ _ = lost_structure ();
   500   in recover_result propss results end;
   501 
   502 
   503 
   504 (*** structured proof commands ***)
   505 
   506 (** context elements **)
   507 
   508 (* bindings *)
   509 
   510 local
   511 
   512 fun gen_bind bind args state =
   513   state
   514   |> assert_forward
   515   |> map_context (bind args #> snd)
   516   |> put_facts NONE;
   517 
   518 in
   519 
   520 val match_bind = gen_bind (ProofContext.match_bind false);
   521 val match_bind_i = gen_bind (ProofContext.match_bind_i false);
   522 val let_bind = gen_bind (ProofContext.match_bind true);
   523 val let_bind_i = gen_bind (ProofContext.match_bind_i true);
   524 
   525 end;
   526 
   527 
   528 (* fix *)
   529 
   530 local
   531 
   532 fun gen_fix add_fixes args =
   533   assert_forward
   534   #> map_context (snd o add_fixes args)
   535   #> put_facts NONE;
   536 
   537 in
   538 
   539 val fix = gen_fix ProofContext.add_fixes;
   540 val fix_i = gen_fix ProofContext.add_fixes_i;
   541 
   542 end;
   543 
   544 
   545 (* assume etc. *)
   546 
   547 local
   548 
   549 fun gen_assume asm prep_att exp args state =
   550   state
   551   |> assert_forward
   552   |> map_context_result (asm exp (Attrib.map_specs (prep_att (theory_of state)) args))
   553   |> these_factss [] |> #2;
   554 
   555 in
   556 
   557 val assm      = gen_assume ProofContext.add_assms Attrib.attribute;
   558 val assm_i    = gen_assume ProofContext.add_assms_i (K I);
   559 val assume    = assm Assumption.assume_export;
   560 val assume_i  = assm_i Assumption.assume_export;
   561 val presume   = assm Assumption.presume_export;
   562 val presume_i = assm_i Assumption.presume_export;
   563 
   564 end;
   565 
   566 
   567 (* def *)
   568 
   569 local
   570 
   571 fun gen_def prep_att prep_vars prep_binds args state =
   572   let
   573     val _ = assert_forward state;
   574     val thy = theory_of state;
   575     val ctxt = context_of state;
   576 
   577     val (raw_name_atts, (raw_vars, raw_rhss)) = args |> split_list ||> split_list;
   578     val name_atts = map (apsnd (map (prep_att thy))) raw_name_atts;
   579   in
   580     state
   581     |> map_context_result (prep_vars (map (fn (x, mx) => (x, NONE, mx)) raw_vars))
   582     |>> map (fn (x, _, mx) => (x, mx))
   583     |-> (fn vars =>
   584       map_context_result (prep_binds false (map swap raw_rhss))
   585       #-> (fn rhss => map_context_result (LocalDefs.add_defs (vars ~~ (name_atts ~~ rhss)))))
   586     |-> (put_facts o SOME o map (#2 o #2))
   587   end;
   588 
   589 in
   590 
   591 val def = gen_def Attrib.attribute ProofContext.read_vars ProofContext.match_bind;
   592 val def_i = gen_def (K I) ProofContext.cert_vars ProofContext.match_bind_i;
   593 
   594 end;
   595 
   596 
   597 
   598 (** facts **)
   599 
   600 (* chain *)
   601 
   602 fun clean_facts ctxt =
   603   put_facts (SOME (filter_out Thm.is_dummy (the_facts ctxt))) ctxt;
   604 
   605 val chain =
   606   assert_forward
   607   #> clean_facts
   608   #> enter_chain;
   609 
   610 fun chain_facts facts =
   611   put_facts (SOME facts)
   612   #> chain;
   613 
   614 
   615 (* note etc. *)
   616 
   617 fun no_binding args = map (pair (Binding.empty, [])) args;
   618 
   619 local
   620 
   621 fun gen_thmss note_ctxt more_facts opt_chain opt_result prep_atts args state =
   622   state
   623   |> assert_forward
   624   |> map_context_result (note_ctxt (Attrib.map_facts (prep_atts (theory_of state)) args))
   625   |> these_factss (more_facts state)
   626   ||> opt_chain
   627   |> opt_result;
   628 
   629 in
   630 
   631 val note_thmss = gen_thmss (ProofContext.note_thmss "") (K []) I #2 Attrib.attribute;
   632 val note_thmss_i = gen_thmss (ProofContext.note_thmss_i "") (K []) I #2 (K I);
   633 
   634 val from_thmss =
   635   gen_thmss (ProofContext.note_thmss "") (K []) chain #2 Attrib.attribute o no_binding;
   636 val from_thmss_i = gen_thmss (ProofContext.note_thmss_i "") (K []) chain #2 (K I) o no_binding;
   637 
   638 val with_thmss =
   639   gen_thmss (ProofContext.note_thmss "") the_facts chain #2 Attrib.attribute o no_binding;
   640 val with_thmss_i = gen_thmss (ProofContext.note_thmss_i "") the_facts chain #2 (K I) o no_binding;
   641 
   642 val local_results =
   643   gen_thmss (ProofContext.note_thmss_i "") (K []) I I (K I) o map (apsnd Thm.simple_fact);
   644 
   645 fun get_thmss state srcs = the_facts (note_thmss [((Binding.empty, []), srcs)] state);
   646 
   647 end;
   648 
   649 
   650 (* using/unfolding *)
   651 
   652 local
   653 
   654 fun gen_using f g note prep_atts args state =
   655   state
   656   |> assert_backward
   657   |> map_context_result
   658     (note "" (Attrib.map_facts (prep_atts (theory_of state)) (no_binding args)))
   659   |> (fn (named_facts, state') =>
   660     state' |> map_goal I (fn (statement, _, using, goal, before_qed, after_qed) =>
   661       let
   662         val ctxt = context_of state';
   663         val ths = maps snd named_facts;
   664       in (statement, [], f ctxt ths using, g ctxt ths goal, before_qed, after_qed) end));
   665 
   666 fun append_using _ ths using = using @ filter_out Thm.is_dummy ths;
   667 fun unfold_using ctxt ths = map (LocalDefs.unfold ctxt ths);
   668 val unfold_goals = LocalDefs.unfold_goals;
   669 
   670 in
   671 
   672 val using = gen_using append_using (K (K I)) ProofContext.note_thmss Attrib.attribute;
   673 val using_i = gen_using append_using (K (K I)) ProofContext.note_thmss_i (K I);
   674 val unfolding = gen_using unfold_using unfold_goals ProofContext.note_thmss Attrib.attribute;
   675 val unfolding_i = gen_using unfold_using unfold_goals ProofContext.note_thmss_i (K I);
   676 
   677 end;
   678 
   679 
   680 (* case *)
   681 
   682 local
   683 
   684 fun gen_invoke_case prep_att (name, xs, raw_atts) state =
   685   let
   686     val atts = map (prep_att (theory_of state)) raw_atts;
   687     val (asms, state') = state |> map_context_result (fn ctxt =>
   688       ctxt |> ProofContext.apply_case (ProofContext.get_case ctxt name xs));
   689     val assumptions = asms |> map (fn (a, ts) => ((Binding.name a, atts), map (rpair []) ts));
   690   in
   691     state'
   692     |> map_context (ProofContext.qualified_names #> ProofContext.no_base_names)
   693     |> assume_i assumptions
   694     |> add_binds_i AutoBind.no_facts
   695     |> map_context (ProofContext.restore_naming (context_of state))
   696     |> `the_facts |-> (fn thms => note_thmss_i [((Binding.name name, []), [(thms, [])])])
   697   end;
   698 
   699 in
   700 
   701 val invoke_case = gen_invoke_case Attrib.attribute;
   702 val invoke_case_i = gen_invoke_case (K I);
   703 
   704 end;
   705 
   706 
   707 
   708 (** proof structure **)
   709 
   710 (* blocks *)
   711 
   712 val begin_block =
   713   assert_forward
   714   #> open_block
   715   #> put_goal NONE
   716   #> open_block;
   717 
   718 val next_block =
   719   assert_forward
   720   #> close_block
   721   #> open_block
   722   #> put_goal NONE
   723   #> put_facts NONE;
   724 
   725 fun end_block state =
   726   state
   727   |> assert_forward
   728   |> close_block
   729   |> assert_current_goal false
   730   |> close_block
   731   |> export_facts state;
   732 
   733 
   734 (* sub-proofs *)
   735 
   736 fun proof opt_text =
   737   assert_backward
   738   #> refine (the_default Method.default_text opt_text)
   739   #> Seq.map (using_facts [] #> enter_forward);
   740 
   741 fun end_proof bot txt state =
   742   state
   743   |> assert_forward
   744   |> assert_bottom bot
   745   |> close_block
   746   |> assert_current_goal true
   747   |> using_facts []
   748   |> `before_qed |-> (refine o the_default Method.succeed_text)
   749   |> Seq.maps (refine (Method.finish_text txt (Position.thread_data ())));
   750 
   751 fun check_result msg sq =
   752   (case Seq.pull sq of
   753     NONE => error msg
   754   | SOME (s, _) => s);
   755 
   756 fun check_finish sq = check_result "Failed to finish proof" sq;
   757 
   758 
   759 (* unstructured refinement *)
   760 
   761 fun defer i = assert_no_chain #> refine (Method.Basic (K (Method.defer i), Position.none));
   762 fun prefer i = assert_no_chain #> refine (Method.Basic (K (Method.prefer i), Position.none));
   763 
   764 fun apply text = assert_backward #> refine text #> Seq.map (using_facts []);
   765 fun apply_end text = assert_forward #> refine_end text;
   766 
   767 
   768 
   769 (** goals **)
   770 
   771 (* generic goals *)
   772 
   773 local
   774 
   775 fun implicit_vars dest add props =
   776   let
   777     val (explicit_vars, props') = take_prefix (can dest) props |>> map dest;
   778     val vars = rev (subtract (op =) explicit_vars (fold add props []));
   779     val _ =
   780       if null vars then ()
   781       else warning ("Goal statement contains unbound schematic variable(s): " ^
   782         commas_quote (map (Term.string_of_vname o fst) vars));
   783   in (rev vars, props') end;
   784 
   785 fun refine_terms n =
   786   refine (Method.Basic (K (Method.RAW_METHOD
   787     (K (HEADGOAL (PRECISE_CONJUNCTS n
   788       (HEADGOAL (CONJUNCTS (ALLGOALS (rtac Drule.termI)))))))), Position.none))
   789   #> Seq.hd;
   790 
   791 in
   792 
   793 fun generic_goal prepp kind before_qed after_qed raw_propp state =
   794   let
   795     val thy = theory_of state;
   796     val cert = Thm.cterm_of thy;
   797     val chaining = can assert_chain state;
   798     val pos = Position.thread_data ();
   799 
   800     val ((propss, after_ctxt), goal_state) =
   801       state
   802       |> assert_forward_or_chain
   803       |> enter_forward
   804       |> open_block
   805       |> map_context_result (fn ctxt => swap (prepp (ctxt, raw_propp)));
   806     val props = flat propss;
   807 
   808     val (_, props') =
   809       implicit_vars (dest_TVar o Logic.dest_type o Logic.dest_term) Term.add_tvars props;
   810     val (vars, _) = implicit_vars (dest_Var o Logic.dest_term) Term.add_vars props';
   811 
   812     val propss' = map (Logic.mk_term o Var) vars :: propss;
   813     val goal_propss = filter_out null propss';
   814     val goal =
   815       cert (Logic.mk_conjunction_balanced (map Logic.mk_conjunction_balanced goal_propss))
   816       |> Thm.weaken_sorts (Variable.sorts_of (context_of goal_state));
   817     val statement = ((kind, pos), propss', Thm.term_of goal);
   818     val after_qed' = after_qed |>> (fn after_local =>
   819       fn results => map_context after_ctxt #> after_local results);
   820   in
   821     goal_state
   822     |> map_context (init_context #> Variable.set_body true)
   823     |> put_goal (SOME (make_goal (statement, [], [], Goal.init goal, before_qed, after_qed')))
   824     |> map_context (ProofContext.auto_bind_goal props)
   825     |> chaining ? (`the_facts #-> using_facts)
   826     |> put_facts NONE
   827     |> open_block
   828     |> put_goal NONE
   829     |> enter_backward
   830     |> not (null vars) ? refine_terms (length goal_propss)
   831     |> null props ? (refine (Method.Basic (Method.assumption, Position.none)) #> Seq.hd)
   832   end;
   833 
   834 fun generic_qed after_ctxt state =
   835   let
   836     val (goal_ctxt, {statement, goal, after_qed, ...}) = current_goal state;
   837     val outer_state = state |> close_block;
   838     val outer_ctxt = context_of outer_state;
   839 
   840     val ((_, pos), stmt, _) = statement;
   841     val props =
   842       flat (tl stmt)
   843       |> Variable.exportT_terms goal_ctxt outer_ctxt;
   844     val results =
   845       tl (conclude_goal goal_ctxt goal stmt)
   846       |> burrow (ProofContext.export goal_ctxt outer_ctxt);
   847 
   848     val (after_local, after_global) = after_qed;
   849     fun after_local' x y = Position.setmp_thread_data pos (fn () => after_local x y) ();
   850     fun after_global' x y = Position.setmp_thread_data pos (fn () => after_global x y) ();
   851   in
   852     outer_state
   853     |> map_context (after_ctxt props)
   854     |> pair ((after_local', after_global'), results)
   855   end;
   856 
   857 end;
   858 
   859 
   860 (* local goals *)
   861 
   862 fun local_goal print_results prep_att prepp kind before_qed after_qed stmt state =
   863   let
   864     val thy = theory_of state;
   865     val ((names, attss), propp) =
   866       Attrib.map_specs (prep_att thy) stmt |> split_list |>> split_list;
   867 
   868     fun after_qed' results =
   869       local_results ((names ~~ attss) ~~ results)
   870       #-> (fn res => tap (fn st => print_results (context_of st) ((kind, ""), res) : unit))
   871       #> after_qed results;
   872   in
   873     state
   874     |> generic_goal prepp kind before_qed (after_qed', K I) propp
   875     |> tap (Variable.warn_extra_tfrees (context_of state) o context_of)
   876   end;
   877 
   878 fun local_qeds txt =
   879   end_proof false txt
   880   #> Seq.map (generic_qed ProofContext.auto_bind_facts #->
   881     (fn ((after_qed, _), results) => after_qed results));
   882 
   883 fun local_qed txt = local_qeds txt #> check_finish;
   884 
   885 
   886 (* global goals *)
   887 
   888 fun global_goal prepp before_qed after_qed propp ctxt =
   889   init ctxt
   890   |> generic_goal (prepp #> ProofContext.auto_fixes) "" before_qed (K I, after_qed) propp;
   891 
   892 val theorem = global_goal ProofContext.bind_propp_schematic;
   893 val theorem_i = global_goal ProofContext.bind_propp_schematic_i;
   894 
   895 fun global_qeds txt =
   896   end_proof true txt
   897   #> Seq.map (generic_qed (K I) #> (fn (((_, after_qed), results), state) =>
   898     after_qed results (context_of state)));
   899 
   900 fun global_qed txt = global_qeds txt #> check_finish;
   901 
   902 
   903 (* concluding steps *)
   904 
   905 fun terminal_proof qed initial terminal =
   906   proof (SOME initial) #> Seq.maps (qed terminal) #> check_finish;
   907 
   908 fun local_terminal_proof (text, opt_text) = terminal_proof local_qeds text (opt_text, true);
   909 val local_default_proof = local_terminal_proof (Method.default_text, NONE);
   910 val local_immediate_proof = local_terminal_proof (Method.this_text, NONE);
   911 fun local_skip_proof int = local_terminal_proof (Method.sorry_text int, NONE);
   912 val local_done_proof = terminal_proof local_qeds Method.done_text (NONE, false);
   913 
   914 fun global_terminal_proof (text, opt_text) = terminal_proof global_qeds text (opt_text, true);
   915 val global_default_proof = global_terminal_proof (Method.default_text, NONE);
   916 val global_immediate_proof = global_terminal_proof (Method.this_text, NONE);
   917 fun global_skip_proof int = global_terminal_proof (Method.sorry_text int, NONE);
   918 val global_done_proof = terminal_proof global_qeds Method.done_text (NONE, false);
   919 
   920 
   921 (* common goal statements *)
   922 
   923 local
   924 
   925 fun gen_have prep_att prepp before_qed after_qed stmt int =
   926   local_goal (ProofDisplay.print_results int) prep_att prepp "have" before_qed after_qed stmt;
   927 
   928 fun gen_show prep_att prepp before_qed after_qed stmt int state =
   929   let
   930     val testing = ref false;
   931     val rule = ref (NONE: thm option);
   932     fun fail_msg ctxt =
   933       "Local statement will fail to refine any pending goal" ::
   934       (case ! rule of NONE => [] | SOME th => [ProofDisplay.string_of_rule ctxt "Failed" th])
   935       |> cat_lines;
   936 
   937     fun print_results ctxt res =
   938       if ! testing then () else ProofDisplay.print_results int ctxt res;
   939     fun print_rule ctxt th =
   940       if ! testing then rule := SOME th
   941       else if int then priority (ProofDisplay.string_of_rule ctxt "Successful" th)
   942       else ();
   943     val test_proof =
   944       try (local_skip_proof true)
   945       |> setmp_noncritical testing true
   946       |> Exn.capture;
   947 
   948     fun after_qed' results =
   949       refine_goals print_rule (context_of state) (flat results)
   950       #> check_result "Failed to refine any pending goal"
   951       #> after_qed results;
   952   in
   953     state
   954     |> local_goal print_results prep_att prepp "show" before_qed after_qed' stmt
   955     |> int ? (fn goal_state =>
   956       (case test_proof goal_state of
   957         Exn.Result (SOME _) => goal_state
   958       | Exn.Result NONE => error (fail_msg (context_of goal_state))
   959       | Exn.Exn Exn.Interrupt => raise Exn.Interrupt
   960       | Exn.Exn exn => raise Exn.EXCEPTIONS ([exn, ERROR (fail_msg (context_of goal_state))])))
   961   end;
   962 
   963 in
   964 
   965 val have = gen_have Attrib.attribute ProofContext.bind_propp;
   966 val have_i = gen_have (K I) ProofContext.bind_propp_i;
   967 val show = gen_show Attrib.attribute ProofContext.bind_propp;
   968 val show_i = gen_show (K I) ProofContext.bind_propp_i;
   969 
   970 end;
   971 
   972 
   973 
   974 (** future proofs **)
   975 
   976 (* relevant proof states *)
   977 
   978 fun is_schematic t =
   979   Term.exists_subterm Term.is_Var t orelse
   980   Term.exists_type (Term.exists_subtype Term.is_TVar) t;
   981 
   982 fun schematic_goal state =
   983   let val (_, (_, {statement = (_, _, prop), ...})) = find_goal state
   984   in is_schematic prop end;
   985 
   986 fun is_relevant state =
   987   (case try find_goal state of
   988     NONE => true
   989   | SOME (_, (_, {statement = (_, _, prop), goal, ...})) =>
   990       is_schematic prop orelse not (Logic.protect prop aconv Thm.concl_of goal));
   991 
   992 
   993 (* full proofs *)
   994 
   995 local
   996 
   997 fun future_proof done get_context fork_proof state =
   998   let
   999     val _ = assert_backward state;
  1000     val (goal_ctxt, (_, goal)) = find_goal state;
  1001     val {statement as (kind, propss, prop), messages, using, goal, before_qed, after_qed} = goal;
  1002 
  1003     val _ = is_relevant state andalso error "Cannot fork relevant proof";
  1004 
  1005     val prop' = Logic.protect prop;
  1006     val statement' = (kind, [[], [prop']], prop');
  1007     val goal' = Thm.adjust_maxidx_thm (Thm.maxidx_of goal)
  1008       (Drule.comp_no_flatten (goal, Thm.nprems_of goal) 1 Drule.protectI);
  1009 
  1010     fun after_local' [[th]] = put_thms false (AutoBind.thisN, SOME [th]);
  1011     fun after_global' [[th]] = ProofContext.put_thms false (AutoBind.thisN, SOME [th]);
  1012     val after_qed' = (after_local', after_global');
  1013     val this_name = ProofContext.full_bname goal_ctxt AutoBind.thisN;
  1014 
  1015     val result_ctxt =
  1016       state
  1017       |> map_contexts (Variable.declare_term prop)
  1018       |> map_goal I (K (statement', messages, using, goal', before_qed, after_qed'))
  1019       |> fork_proof;
  1020 
  1021     val future_thm = result_ctxt |> Future.map (fn (_, x) =>
  1022       ProofContext.get_fact_single (get_context x) (Facts.named this_name));
  1023     val finished_goal = exception_trace (fn () => Goal.future_result goal_ctxt future_thm prop');
  1024     val state' =
  1025       state
  1026       |> map_goal I (K (statement, messages, using, finished_goal, NONE, after_qed))
  1027       |> done;
  1028   in (Future.map #1 result_ctxt, state') end;
  1029 
  1030 in
  1031 
  1032 fun local_future_proof x = future_proof local_done_proof context_of x;
  1033 fun global_future_proof x = future_proof global_done_proof I x;
  1034 
  1035 end;
  1036 
  1037 
  1038 (* terminal proofs *)
  1039 
  1040 local
  1041 
  1042 fun future_terminal_proof proof1 proof2 meths int state =
  1043   if int orelse is_relevant state orelse not (Future.enabled ())
  1044   then proof1 meths state
  1045   else snd (state |> proof2 (fn state' => Future.fork_pri ~1 (fn () => ((), proof1 meths state'))));
  1046 
  1047 in
  1048 
  1049 fun local_future_terminal_proof x =
  1050   future_terminal_proof local_terminal_proof local_future_proof x;
  1051 
  1052 fun global_future_terminal_proof x =
  1053   future_terminal_proof global_terminal_proof global_future_proof x;
  1054 
  1055 end;
  1056 
  1057 end;
  1058