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