src/Pure/Isar/proof.ML
author wenzelm
Thu, 29 Apr 2010 16:55:22 +0200
changeset 36521 79c1d2bbe5a9
parent 36364 bbd742107f56
child 36523 c966a1aab860
permissions -rw-r--r--
ProofContext.read_const: allow for type constraint (for fixed variable);
added proof command 'write' to introduce concrete syntax within a proof body;
     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 let_bind: (term list * term) list -> state -> state
    45   val let_bind_cmd: (string list * string) list -> state -> state
    46   val write: Syntax.mode -> (term * mixfix) list -> state -> state
    47   val write_cmd: Syntax.mode -> (string * mixfix) 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 (* let bindings *)
   527 
   528 local
   529 
   530 fun gen_bind bind args state =
   531   state
   532   |> assert_forward
   533   |> map_context (bind true args #> snd)
   534   |> put_facts NONE;
   535 
   536 in
   537 
   538 val let_bind = gen_bind ProofContext.match_bind_i;
   539 val let_bind_cmd = gen_bind ProofContext.match_bind;
   540 
   541 end;
   542 
   543 
   544 (* concrete syntax *)
   545 
   546 local
   547 
   548 fun gen_write prep_arg mode args = map_context (fn ctxt =>
   549   ctxt |> ProofContext.notation true mode (map (prep_arg ctxt) args));
   550 
   551 in
   552 
   553 val write = gen_write (K I);
   554 
   555 val write_cmd =
   556   gen_write (fn ctxt => fn (c, mx) =>
   557     (ProofContext.read_const ctxt false (Syntax.mixfixT mx) c, mx));
   558 
   559 end;
   560 
   561 
   562 (* fix *)
   563 
   564 local
   565 
   566 fun gen_fix prep_vars args =
   567   assert_forward
   568   #> map_context (fn ctxt => snd (ProofContext.add_fixes (prep_vars ctxt args) ctxt))
   569   #> put_facts NONE;
   570 
   571 in
   572 
   573 val fix = gen_fix (K I);
   574 val fix_cmd = gen_fix (fn ctxt => fn args => fst (ProofContext.read_vars args ctxt));
   575 
   576 end;
   577 
   578 
   579 (* assume etc. *)
   580 
   581 local
   582 
   583 fun gen_assume asm prep_att exp args state =
   584   state
   585   |> assert_forward
   586   |> map_context_result (asm exp (Attrib.map_specs (prep_att (theory_of state)) args))
   587   |> these_factss [] |> #2;
   588 
   589 in
   590 
   591 val assm = gen_assume ProofContext.add_assms_i (K I);
   592 val assm_cmd = gen_assume ProofContext.add_assms Attrib.attribute;
   593 val assume = assm Assumption.assume_export;
   594 val assume_cmd = assm_cmd Assumption.assume_export;
   595 val presume = assm Assumption.presume_export;
   596 val presume_cmd = assm_cmd Assumption.presume_export;
   597 
   598 end;
   599 
   600 
   601 (* def *)
   602 
   603 local
   604 
   605 fun gen_def prep_att prep_vars prep_binds args state =
   606   let
   607     val _ = assert_forward state;
   608     val thy = theory_of state;
   609 
   610     val (raw_name_atts, (raw_vars, raw_rhss)) = args |> split_list ||> split_list;
   611     val name_atts = map (apsnd (map (prep_att thy))) raw_name_atts;
   612   in
   613     state
   614     |> map_context_result (prep_vars (map (fn (x, mx) => (x, NONE, mx)) raw_vars))
   615     |>> map (fn (x, _, mx) => (x, mx))
   616     |-> (fn vars =>
   617       map_context_result (prep_binds false (map swap raw_rhss))
   618       #-> (fn rhss => map_context_result (Local_Defs.add_defs (vars ~~ (name_atts ~~ rhss)))))
   619     |-> (put_facts o SOME o map (#2 o #2))
   620   end;
   621 
   622 in
   623 
   624 val def = gen_def (K I) ProofContext.cert_vars ProofContext.match_bind_i;
   625 val def_cmd = gen_def Attrib.attribute ProofContext.read_vars ProofContext.match_bind;
   626 
   627 end;
   628 
   629 
   630 
   631 (** facts **)
   632 
   633 (* chain *)
   634 
   635 fun clean_facts ctxt =
   636   put_facts (SOME (filter_out Thm.is_dummy (the_facts ctxt))) ctxt;
   637 
   638 val chain =
   639   assert_forward
   640   #> clean_facts
   641   #> enter_chain;
   642 
   643 fun chain_facts facts =
   644   put_facts (SOME facts)
   645   #> chain;
   646 
   647 
   648 (* note etc. *)
   649 
   650 fun no_binding args = map (pair (Binding.empty, [])) args;
   651 
   652 local
   653 
   654 fun gen_thmss more_facts opt_chain opt_result prep_atts prep_fact args state =
   655   state
   656   |> assert_forward
   657   |> map_context_result (ProofContext.note_thmss ""
   658     (Attrib.map_facts_refs (prep_atts (theory_of state)) (prep_fact (context_of state)) args))
   659   |> these_factss (more_facts state)
   660   ||> opt_chain
   661   |> opt_result;
   662 
   663 in
   664 
   665 val note_thmss = gen_thmss (K []) I #2 (K I) (K I);
   666 val note_thmss_cmd = gen_thmss (K []) I #2 Attrib.attribute ProofContext.get_fact;
   667 
   668 val from_thmss = gen_thmss (K []) chain #2 (K I) (K I) o no_binding;
   669 val from_thmss_cmd = gen_thmss (K []) chain #2 Attrib.attribute ProofContext.get_fact o no_binding;
   670 
   671 val with_thmss = gen_thmss the_facts chain #2 (K I) (K I) o no_binding;
   672 val with_thmss_cmd = gen_thmss the_facts chain #2 Attrib.attribute ProofContext.get_fact o no_binding;
   673 
   674 val local_results = gen_thmss (K []) I I (K I) (K I) o map (apsnd Thm.simple_fact);
   675 
   676 fun get_thmss_cmd state srcs = the_facts (note_thmss_cmd [((Binding.empty, []), srcs)] state);
   677 
   678 end;
   679 
   680 
   681 (* using/unfolding *)
   682 
   683 local
   684 
   685 fun gen_using f g prep_atts prep_fact args state =
   686   state
   687   |> assert_backward
   688   |> map_context_result
   689     (ProofContext.note_thmss ""
   690       (Attrib.map_facts_refs (prep_atts (theory_of state)) (prep_fact (context_of state))
   691         (no_binding args)))
   692   |> (fn (named_facts, state') =>
   693     state' |> map_goal I (fn (statement, _, using, goal, before_qed, after_qed) =>
   694       let
   695         val ctxt = context_of state';
   696         val ths = maps snd named_facts;
   697       in (statement, [], f ctxt ths using, g ctxt ths goal, before_qed, after_qed) end));
   698 
   699 fun append_using _ ths using = using @ filter_out Thm.is_dummy ths;
   700 fun unfold_using ctxt ths = map (Local_Defs.unfold ctxt ths);
   701 val unfold_goals = Local_Defs.unfold_goals;
   702 
   703 in
   704 
   705 val using = gen_using append_using (K (K I)) (K I) (K I);
   706 val using_cmd = gen_using append_using (K (K I)) Attrib.attribute ProofContext.get_fact;
   707 val unfolding = gen_using unfold_using unfold_goals (K I) (K I);
   708 val unfolding_cmd = gen_using unfold_using unfold_goals Attrib.attribute ProofContext.get_fact;
   709 
   710 end;
   711 
   712 
   713 (* case *)
   714 
   715 local
   716 
   717 fun qualified_binding a =
   718   Binding.qualify true (Long_Name.qualifier a) (Binding.name (Long_Name.base_name a));
   719 
   720 fun gen_invoke_case prep_att (name, xs, raw_atts) state =
   721   let
   722     val atts = map (prep_att (theory_of state)) raw_atts;
   723     val (asms, state') = state |> map_context_result (fn ctxt =>
   724       ctxt |> ProofContext.apply_case (ProofContext.get_case ctxt name xs));
   725     val assumptions = asms |> map (fn (a, ts) => ((qualified_binding a, atts), map (rpair []) ts));
   726   in
   727     state'
   728     |> assume assumptions
   729     |> bind_terms Auto_Bind.no_facts
   730     |> `the_facts |-> (fn thms => note_thmss [((Binding.name name, []), [(thms, [])])])
   731   end;
   732 
   733 in
   734 
   735 val invoke_case = gen_invoke_case (K I);
   736 val invoke_case_cmd = gen_invoke_case Attrib.attribute;
   737 
   738 end;
   739 
   740 
   741 
   742 (** proof structure **)
   743 
   744 (* blocks *)
   745 
   746 val begin_block =
   747   assert_forward
   748   #> open_block
   749   #> put_goal NONE
   750   #> open_block;
   751 
   752 val next_block =
   753   assert_forward
   754   #> close_block
   755   #> open_block
   756   #> put_goal NONE
   757   #> put_facts NONE;
   758 
   759 fun end_block state =
   760   state
   761   |> assert_forward
   762   |> close_block
   763   |> assert_current_goal false
   764   |> close_block
   765   |> export_facts state;
   766 
   767 
   768 (* sub-proofs *)
   769 
   770 fun proof opt_text =
   771   assert_backward
   772   #> refine (the_default Method.default_text opt_text)
   773   #> Seq.map (using_facts [] #> enter_forward);
   774 
   775 fun end_proof bot txt state =
   776   state
   777   |> assert_forward
   778   |> assert_bottom bot
   779   |> close_block
   780   |> assert_current_goal true
   781   |> using_facts []
   782   |> `before_qed |-> (refine o the_default Method.succeed_text)
   783   |> Seq.maps (refine (Method.finish_text txt));
   784 
   785 fun check_result msg sq =
   786   (case Seq.pull sq of
   787     NONE => error msg
   788   | SOME (s, _) => s);
   789 
   790 fun check_finish sq = check_result "Failed to finish proof" sq;
   791 
   792 
   793 (* unstructured refinement *)
   794 
   795 fun defer i = assert_no_chain #> refine (Method.Basic (K (Method.defer i)));
   796 fun prefer i = assert_no_chain #> refine (Method.Basic (K (Method.prefer i)));
   797 
   798 fun apply text = assert_backward #> refine text #> Seq.map (using_facts []);
   799 fun apply_end text = assert_forward #> refine_end text;
   800 
   801 
   802 
   803 (** goals **)
   804 
   805 (* generic goals *)
   806 
   807 local
   808 
   809 val is_var =
   810   can (dest_TVar o Logic.dest_type o Logic.dest_term) orf
   811   can (dest_Var o Logic.dest_term);
   812 
   813 fun implicit_vars props =
   814   let
   815     val (var_props, _) = take_prefix is_var props;
   816     val explicit_vars = fold Term.add_vars var_props [];
   817     val vars = filter_out (member (op =) explicit_vars) (fold Term.add_vars props []);
   818   in map (Logic.mk_term o Var) vars end;
   819 
   820 fun refine_terms n =
   821   refine (Method.Basic (K (RAW_METHOD
   822     (K (HEADGOAL (PRECISE_CONJUNCTS n
   823       (HEADGOAL (CONJUNCTS (ALLGOALS (rtac Drule.termI))))))))))
   824   #> Seq.hd;
   825 
   826 in
   827 
   828 fun generic_goal prepp kind before_qed after_qed raw_propp state =
   829   let
   830     val thy = theory_of state;
   831     val cert = Thm.cterm_of thy;
   832     val chaining = can assert_chain state;
   833     val pos = Position.thread_data ();
   834 
   835     val ((propss, after_ctxt), goal_state) =
   836       state
   837       |> assert_forward_or_chain
   838       |> enter_forward
   839       |> open_block
   840       |> map_context_result (fn ctxt => swap (prepp (ctxt, raw_propp)));
   841     val props = flat propss;
   842 
   843     val vars = implicit_vars props;
   844     val propss' = vars :: propss;
   845     val goal_propss = filter_out null propss';
   846     val goal =
   847       cert (Logic.mk_conjunction_balanced (map Logic.mk_conjunction_balanced goal_propss))
   848       |> Thm.weaken_sorts (Variable.sorts_of (context_of goal_state));
   849     val statement = ((kind, pos), propss', Thm.term_of goal);
   850     val after_qed' = after_qed |>> (fn after_local =>
   851       fn results => map_context after_ctxt #> after_local results);
   852   in
   853     goal_state
   854     |> map_context (init_context #> Variable.set_body true)
   855     |> put_goal (SOME (make_goal (statement, [], [], Goal.init goal, before_qed, after_qed')))
   856     |> map_context (ProofContext.auto_bind_goal props)
   857     |> chaining ? (`the_facts #-> using_facts)
   858     |> put_facts NONE
   859     |> open_block
   860     |> put_goal NONE
   861     |> enter_backward
   862     |> not (null vars) ? refine_terms (length goal_propss)
   863     |> null props ? (refine (Method.Basic Method.assumption) #> Seq.hd)
   864   end;
   865 
   866 fun generic_qed after_ctxt state =
   867   let
   868     val (goal_ctxt, {statement = (_, stmt, _), goal, after_qed, ...}) = current_goal state;
   869     val outer_state = state |> close_block;
   870     val outer_ctxt = context_of outer_state;
   871 
   872     val props =
   873       flat (tl stmt)
   874       |> Variable.exportT_terms goal_ctxt outer_ctxt;
   875     val results =
   876       tl (conclude_goal goal_ctxt goal stmt)
   877       |> burrow (ProofContext.export goal_ctxt outer_ctxt);
   878   in
   879     outer_state
   880     |> map_context (after_ctxt props)
   881     |> pair (after_qed, results)
   882   end;
   883 
   884 end;
   885 
   886 
   887 (* local goals *)
   888 
   889 fun local_goal print_results prep_att prepp kind before_qed after_qed stmt state =
   890   let
   891     val thy = theory_of state;
   892     val ((names, attss), propp) =
   893       Attrib.map_specs (prep_att thy) stmt |> split_list |>> split_list;
   894 
   895     fun after_qed' results =
   896       local_results ((names ~~ attss) ~~ results)
   897       #-> (fn res => tap (fn st => print_results (context_of st) ((kind, ""), res) : unit))
   898       #> after_qed results;
   899   in
   900     state
   901     |> generic_goal prepp kind before_qed (after_qed', K I) propp
   902     |> tap (Variable.warn_extra_tfrees (context_of state) o context_of)
   903   end;
   904 
   905 fun local_qeds txt =
   906   end_proof false txt
   907   #> Seq.map (generic_qed ProofContext.auto_bind_facts #->
   908     (fn ((after_qed, _), results) => after_qed results));
   909 
   910 fun local_qed txt = local_qeds txt #> check_finish;
   911 
   912 
   913 (* global goals *)
   914 
   915 fun global_goal prepp before_qed after_qed propp ctxt =
   916   init ctxt
   917   |> generic_goal (prepp #> ProofContext.auto_fixes) "" before_qed (K I, after_qed) propp;
   918 
   919 val theorem = global_goal ProofContext.bind_propp_schematic_i;
   920 val theorem_cmd = global_goal ProofContext.bind_propp_schematic;
   921 
   922 fun global_qeds txt =
   923   end_proof true txt
   924   #> Seq.map (generic_qed (K I) #> (fn (((_, after_qed), results), state) =>
   925     after_qed results (context_of state)));
   926 
   927 fun global_qed txt = global_qeds txt #> check_finish;
   928 
   929 
   930 (* concluding steps *)
   931 
   932 fun terminal_proof qed initial terminal =
   933   proof (SOME initial) #> Seq.maps (qed terminal) #> check_finish;
   934 
   935 fun local_terminal_proof (text, opt_text) = terminal_proof local_qeds text (opt_text, true);
   936 val local_default_proof = local_terminal_proof (Method.default_text, NONE);
   937 val local_immediate_proof = local_terminal_proof (Method.this_text, NONE);
   938 fun local_skip_proof int = local_terminal_proof (Method.sorry_text int, NONE);
   939 val local_done_proof = terminal_proof local_qeds Method.done_text (NONE, false);
   940 
   941 fun global_terminal_proof (text, opt_text) = terminal_proof global_qeds text (opt_text, true);
   942 val global_default_proof = global_terminal_proof (Method.default_text, NONE);
   943 val global_immediate_proof = global_terminal_proof (Method.this_text, NONE);
   944 fun global_skip_proof int = global_terminal_proof (Method.sorry_text int, NONE);
   945 val global_done_proof = terminal_proof global_qeds Method.done_text (NONE, false);
   946 
   947 
   948 (* common goal statements *)
   949 
   950 local
   951 
   952 fun gen_have prep_att prepp before_qed after_qed stmt int =
   953   local_goal (Proof_Display.print_results int) prep_att prepp "have" before_qed after_qed stmt;
   954 
   955 fun gen_show prep_att prepp before_qed after_qed stmt int state =
   956   let
   957     val testing = Unsynchronized.ref false;
   958     val rule = Unsynchronized.ref (NONE: thm option);
   959     fun fail_msg ctxt =
   960       "Local statement will fail to refine any pending goal" ::
   961       (case ! rule of NONE => [] | SOME th => [Proof_Display.string_of_rule ctxt "Failed" th])
   962       |> cat_lines;
   963 
   964     fun print_results ctxt res =
   965       if ! testing then () else Proof_Display.print_results int ctxt res;
   966     fun print_rule ctxt th =
   967       if ! testing then rule := SOME th
   968       else if int then priority (Proof_Display.string_of_rule ctxt "Successful" th)
   969       else ();
   970     val test_proof =
   971       try (local_skip_proof true)
   972       |> setmp_noncritical testing true
   973       |> Exn.capture;
   974 
   975     fun after_qed' results =
   976       refine_goals print_rule (context_of state) (flat results)
   977       #> check_result "Failed to refine any pending goal"
   978       #> after_qed results;
   979   in
   980     state
   981     |> local_goal print_results prep_att prepp "show" before_qed after_qed' stmt
   982     |> int ? (fn goal_state =>
   983       (case test_proof goal_state of
   984         Exn.Result (SOME _) => goal_state
   985       | Exn.Result NONE => error (fail_msg (context_of goal_state))
   986       | Exn.Exn Exn.Interrupt => raise Exn.Interrupt
   987       | Exn.Exn exn => raise Exn.EXCEPTIONS ([exn, ERROR (fail_msg (context_of goal_state))])))
   988   end;
   989 
   990 in
   991 
   992 val have = gen_have (K I) ProofContext.bind_propp_i;
   993 val have_cmd = gen_have Attrib.attribute ProofContext.bind_propp;
   994 val show = gen_show (K I) ProofContext.bind_propp_i;
   995 val show_cmd = gen_show Attrib.attribute ProofContext.bind_propp;
   996 
   997 end;
   998 
   999 
  1000 
  1001 (** future proofs **)
  1002 
  1003 (* relevant proof states *)
  1004 
  1005 fun is_schematic t =
  1006   Term.exists_subterm Term.is_Var t orelse
  1007   Term.exists_type (Term.exists_subtype Term.is_TVar) t;
  1008 
  1009 fun schematic_goal state =
  1010   let val (_, (_, {statement = (_, _, prop), ...})) = find_goal state
  1011   in is_schematic prop end;
  1012 
  1013 fun is_relevant state =
  1014   (case try find_goal state of
  1015     NONE => true
  1016   | SOME (_, (_, {statement = (_, _, prop), goal, ...})) =>
  1017       is_schematic prop orelse not (Logic.protect prop aconv Thm.concl_of goal));
  1018 
  1019 
  1020 (* full proofs *)
  1021 
  1022 local
  1023 
  1024 fun future_proof done get_context fork_proof state =
  1025   let
  1026     val _ = assert_backward state;
  1027     val (goal_ctxt, (_, goal)) = find_goal state;
  1028     val {statement as (kind, _, prop), messages, using, goal, before_qed, after_qed} = goal;
  1029     val goal_txt = prop :: map Thm.term_of (Assumption.all_assms_of goal_ctxt);
  1030 
  1031     val _ = is_relevant state andalso error "Cannot fork relevant proof";
  1032 
  1033     val prop' = Logic.protect prop;
  1034     val statement' = (kind, [[], [prop']], prop');
  1035     val goal' = Thm.adjust_maxidx_thm (Thm.maxidx_of goal)
  1036       (Drule.comp_no_flatten (goal, Thm.nprems_of goal) 1 Drule.protectI);
  1037 
  1038     fun after_local' [[th]] = put_thms false (Auto_Bind.thisN, SOME [th]);
  1039     fun after_global' [[th]] = ProofContext.put_thms false (Auto_Bind.thisN, SOME [th]);
  1040     val after_qed' = (after_local', after_global');
  1041     val this_name = ProofContext.full_name goal_ctxt (Binding.name Auto_Bind.thisN);
  1042 
  1043     val result_ctxt =
  1044       state
  1045       |> map_contexts (fold Variable.declare_term goal_txt)
  1046       |> map_goal I (K (statement', messages, using, goal', before_qed, after_qed'))
  1047       |> fork_proof;
  1048 
  1049     val future_thm = result_ctxt |> Future.map (fn (_, x) =>
  1050       ProofContext.get_fact_single (get_context x) (Facts.named this_name));
  1051     val finished_goal = Goal.future_result goal_ctxt future_thm prop';
  1052     val state' =
  1053       state
  1054       |> map_goal I (K (statement, messages, using, finished_goal, NONE, after_qed))
  1055       |> done;
  1056   in (Future.map #1 result_ctxt, state') end;
  1057 
  1058 in
  1059 
  1060 fun local_future_proof x = future_proof local_done_proof context_of x;
  1061 fun global_future_proof x = future_proof global_done_proof I x;
  1062 
  1063 end;
  1064 
  1065 
  1066 (* terminal proofs *)
  1067 
  1068 local
  1069 
  1070 fun future_terminal_proof proof1 proof2 meths int state =
  1071   if int orelse is_relevant state orelse not (Goal.local_future_enabled ())
  1072   then proof1 meths state
  1073   else snd (proof2 (fn state' => Future.fork_pri ~1 (fn () => ((), proof1 meths state'))) state);
  1074 
  1075 in
  1076 
  1077 fun local_future_terminal_proof x =
  1078   future_terminal_proof local_terminal_proof local_future_proof x;
  1079 
  1080 fun global_future_terminal_proof x =
  1081   future_terminal_proof global_terminal_proof global_future_proof x;
  1082 
  1083 end;
  1084 
  1085 end;
  1086