319
|
1 |
theory Command
|
|
2 |
imports Main
|
|
3 |
begin
|
321
|
4 |
|
319
|
5 |
ML {*
|
|
6 |
let
|
394
|
7 |
val do_nothing = Scan.succeed (Local_Theory.theory I)
|
321
|
8 |
val kind = OuterKeyword.thy_decl
|
319
|
9 |
in
|
|
10 |
OuterSyntax.local_theory "foobar" "description of foobar" kind do_nothing
|
|
11 |
end
|
|
12 |
*}
|
|
13 |
|
|
14 |
ML {*
|
|
15 |
let
|
321
|
16 |
fun trace_prop str =
|
394
|
17 |
Local_Theory.theory (fn lthy => (tracing str; lthy))
|
321
|
18 |
val trace_prop_parser = OuterParse.prop >> trace_prop
|
|
19 |
val kind = OuterKeyword.thy_decl
|
|
20 |
in
|
|
21 |
OuterSyntax.local_theory "foobar_trace" "traces a proposition"
|
|
22 |
kind trace_prop_parser
|
|
23 |
end
|
|
24 |
*}
|
|
25 |
|
|
26 |
ML {*
|
|
27 |
let
|
|
28 |
fun prove_prop str lthy =
|
|
29 |
let
|
|
30 |
val prop = Syntax.read_prop lthy str
|
|
31 |
in
|
|
32 |
Proof.theorem_i NONE (K I) [[(prop,[])]] lthy
|
|
33 |
end;
|
|
34 |
val prove_prop_parser = OuterParse.prop >> prove_prop
|
|
35 |
val kind = OuterKeyword.thy_goal
|
|
36 |
in
|
|
37 |
OuterSyntax.local_theory_to_proof "foobar_goal" "proving a proposition"
|
|
38 |
kind prove_prop_parser
|
|
39 |
end
|
|
40 |
*}
|
|
41 |
|
|
42 |
ML {*
|
328
|
43 |
val r = Unsynchronized.ref (NONE:(unit -> term) option)
|
321
|
44 |
*}
|
324
|
45 |
ML{*
|
321
|
46 |
let
|
324
|
47 |
fun after_qed thm_name thms lthy =
|
394
|
48 |
Local_Theory.note (thm_name, (flat thms)) lthy |> snd
|
324
|
49 |
|
|
50 |
fun setup_proof (thm_name, (txt, pos)) lthy =
|
321
|
51 |
let
|
|
52 |
val trm = ML_Context.evaluate lthy true ("r", r) txt
|
|
53 |
in
|
324
|
54 |
Proof.theorem_i NONE (after_qed thm_name) [[(trm,[])]] lthy
|
|
55 |
end
|
321
|
56 |
|
324
|
57 |
val parser = SpecParse.opt_thm_name ":" -- OuterParse.ML_source
|
|
58 |
|
321
|
59 |
in
|
|
60 |
OuterSyntax.local_theory_to_proof "foobar_prove" "proving a proposition"
|
324
|
61 |
OuterKeyword.thy_goal (parser >> setup_proof)
|
|
62 |
end*}
|
|
63 |
|
321
|
64 |
|
|
65 |
(*
|
|
66 |
ML {*
|
|
67 |
let
|
394
|
68 |
val do_nothing = Scan.succeed (Local_Theory.theory I)
|
319
|
69 |
val kind = OuterKeyword.thy_decl
|
|
70 |
in
|
321
|
71 |
OuterSyntax.local_theory "simple_inductive" "description of foobar" kind do_nothing
|
319
|
72 |
end
|
321
|
73 |
*}*)
|
319
|
74 |
|
|
75 |
end
|