Attic/Prove.thy
author Christian Urban <urbanc@in.tum.de>
Wed, 13 Apr 2011 13:41:52 +0100
changeset 2765 7ac5e5c86c7d
parent 2171 9697bbf713ec
permissions -rw-r--r--
introduced framework for finetuning eqvt-rules; this solves problem with permute_pure called in nominal_inductive

theory Prove
imports Plain 
begin

ML {*
val r = Unsynchronized.ref (NONE:(unit -> term) option)
*}

ML {*
let
  fun after_qed thm_name thms lthy =
    Local_Theory.note (thm_name, (flat thms)) lthy |> snd
  fun setup_proof (name_spec, (txt, _)) lthy =
  let
    val trm = ML_Context.evaluate lthy true ("r", r) txt
  in
    Proof.theorem NONE (after_qed name_spec) [[(trm,[])]] lthy
  end

  val parser = Parse_Spec.opt_thm_name ":" -- Parse.ML_source
in
  Outer_Syntax.local_theory_to_proof "prove" "proving a proposition" 
    Keyword.thy_goal (parser >> setup_proof)
end
*}

end