23
|
1 |
theory Base
|
459
|
2 |
imports Main
|
|
3 |
"~~/src/HOL/Library/LaTeXsugar"
|
23
|
4 |
uses
|
346
|
5 |
("output_tutorial.ML")
|
|
6 |
("antiquote_setup.ML")
|
23
|
7 |
begin
|
|
8 |
|
394
|
9 |
notation (latex output)
|
|
10 |
Cons ("_ # _" [66,65] 65)
|
|
11 |
|
317
d69214e47ef9
added an experimental antiquotation to replace eventually ML_response_fake
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
12 |
|
346
|
13 |
(* re-definition of various ML antiquotations *)
|
|
14 |
(* to have a special tag for text enclosed in ML; *)
|
|
15 |
(* they also write the code into a separate file *)
|
301
|
16 |
|
64
9a6e5e0c4906
deleted old files and added code to give a special tag to the command ML
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
17 |
ML {*
|
462
|
18 |
val filename = Attrib.setup_config_string @{binding "filename"} (K "File_Code.ML")
|
310
007922777ff1
added some rudimentary inrastructure for producing the ML-code
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
19 |
*}
|
007922777ff1
added some rudimentary inrastructure for producing the ML-code
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
20 |
|
346
|
21 |
|
310
007922777ff1
added some rudimentary inrastructure for producing the ML-code
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
22 |
ML {*
|
346
|
23 |
fun write_file txt thy =
|
|
24 |
let
|
423
|
25 |
val stream = Config.get_global thy filename
|
346
|
26 |
|> TextIO.openAppend
|
310
007922777ff1
added some rudimentary inrastructure for producing the ML-code
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
27 |
in
|
346
|
28 |
TextIO.output (stream, txt);
|
|
29 |
TextIO.flushOut stream; (* needed ?*)
|
|
30 |
TextIO.closeOut stream
|
310
007922777ff1
added some rudimentary inrastructure for producing the ML-code
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
31 |
end
|
007922777ff1
added some rudimentary inrastructure for producing the ML-code
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
32 |
*}
|
007922777ff1
added some rudimentary inrastructure for producing the ML-code
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
33 |
|
007922777ff1
added some rudimentary inrastructure for producing the ML-code
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
34 |
ML {*
|
346
|
35 |
fun write_file_ml_blk txt thy =
|
|
36 |
let
|
|
37 |
val pre = implode ["\n", "ML ", "{", "*", "\n"]
|
|
38 |
val post = implode ["\n", "*", "}", "\n"]
|
|
39 |
val _ = write_file (enclose pre post txt) thy
|
|
40 |
in
|
|
41 |
thy
|
|
42 |
end
|
310
007922777ff1
added some rudimentary inrastructure for producing the ML-code
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
43 |
|
346
|
44 |
fun write_file_setup_blk txt thy =
|
|
45 |
let
|
|
46 |
val pre = implode ["\n", "setup ", "{", "*", "\n"]
|
|
47 |
val post = implode ["\n", "*", "}", "\n"]
|
|
48 |
val _ = write_file (enclose pre post txt) thy
|
|
49 |
in
|
|
50 |
thy
|
|
51 |
end
|
|
52 |
|
|
53 |
fun write_file_lsetup_blk txt lthy =
|
|
54 |
let
|
|
55 |
val pre = implode ["\n", "local_setup ", "{", "*", "\n"]
|
|
56 |
val post = implode ["\n", "*", "}", "\n"]
|
|
57 |
val _ = write_file (enclose pre post txt) (ProofContext.theory_of lthy)
|
|
58 |
in
|
|
59 |
lthy
|
|
60 |
end
|
|
61 |
|
310
007922777ff1
added some rudimentary inrastructure for producing the ML-code
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
62 |
*}
|
007922777ff1
added some rudimentary inrastructure for producing the ML-code
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
63 |
|
007922777ff1
added some rudimentary inrastructure for producing the ML-code
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
64 |
ML {*
|
346
|
65 |
fun open_file name thy =
|
|
66 |
let
|
|
67 |
val _ = tracing ("Open File: " ^ name)
|
|
68 |
val _ = TextIO.openOut name
|
|
69 |
in
|
423
|
70 |
Config.put_global filename name thy
|
346
|
71 |
end
|
|
72 |
*}
|
64
9a6e5e0c4906
deleted old files and added code to give a special tag to the command ML
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
73 |
|
346
|
74 |
ML {*
|
|
75 |
fun open_file_with_prelude name txts thy =
|
|
76 |
let
|
|
77 |
val thy' = open_file name thy
|
|
78 |
val _ = write_file (cat_lines txts) thy'
|
|
79 |
in
|
|
80 |
thy'
|
|
81 |
end
|
|
82 |
*}
|
|
83 |
|
|
84 |
ML {*
|
260
|
85 |
fun propagate_env (context as Context.Proof lthy) =
|
394
|
86 |
Context.Proof (Local_Theory.map_contexts (ML_Env.inherit context) lthy)
|
264
|
87 |
| propagate_env context = context
|
210
|
88 |
|
260
|
89 |
fun propagate_env_prf prf = Proof.map_contexts
|
264
|
90 |
(Context.proof_map (ML_Env.inherit (Context.Proof (Proof.context_of prf)))) prf
|
346
|
91 |
*}
|
210
|
92 |
|
346
|
93 |
ML {*
|
64
9a6e5e0c4906
deleted old files and added code to give a special tag to the command ML
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
94 |
val _ =
|
426
|
95 |
Outer_Syntax.command "ML" "eval ML text within theory"
|
|
96 |
(Keyword.tag "TutorialML" Keyword.thy_decl)
|
|
97 |
(Parse.position Parse.text >>
|
346
|
98 |
(fn (txt, pos) =>
|
|
99 |
Toplevel.generic_theory
|
|
100 |
(ML_Context.exec
|
438
|
101 |
(fn () => ML_Context.eval_text true pos txt)
|
346
|
102 |
#> propagate_env #> Context.map_theory (write_file_ml_blk txt))))
|
438
|
103 |
*}
|
|
104 |
ML {*
|
210
|
105 |
val _ =
|
426
|
106 |
Outer_Syntax.command "ML_prf" "ML text within proof"
|
|
107 |
(Keyword.tag "TutorialML" Keyword.prf_decl)
|
|
108 |
(Parse.ML_source >> (fn (txt, pos) =>
|
210
|
109 |
Toplevel.proof (Proof.map_context (Context.proof_map
|
438
|
110 |
(ML_Context.exec (fn () => ML_Context.eval_text true pos txt))) #> propagate_env_prf)))
|
|
111 |
*}
|
210
|
112 |
|
438
|
113 |
ML {*
|
224
|
114 |
val _ =
|
426
|
115 |
Outer_Syntax.command "ML_val" "diagnostic ML text"
|
|
116 |
(Keyword.tag "TutorialML" Keyword.diag)
|
438
|
117 |
(Parse.ML_source >> Isar_Cmd.ml_diag true)
|
346
|
118 |
*}
|
224
|
119 |
|
346
|
120 |
ML {*
|
|
121 |
val _ =
|
426
|
122 |
Outer_Syntax.command "setup" "ML theory setup"
|
|
123 |
(Keyword.tag_ml Keyword.thy_decl)
|
|
124 |
(Parse.ML_source >> (fn (txt, pos) =>
|
438
|
125 |
(Toplevel.theory (Isar_Cmd.global_setup (txt, pos) #> write_file_setup_blk txt))))
|
64
9a6e5e0c4906
deleted old files and added code to give a special tag to the command ML
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
126 |
*}
|
239
|
127 |
|
346
|
128 |
ML {*
|
|
129 |
val _ =
|
426
|
130 |
Outer_Syntax.local_theory "local_setup" "ML local theory setup"
|
|
131 |
(Keyword.tag_ml Keyword.thy_decl)
|
|
132 |
(Parse.ML_source >> (fn (txt, pos) =>
|
438
|
133 |
Isar_Cmd.local_setup (txt, pos) #> write_file_lsetup_blk txt));
|
346
|
134 |
*}
|
|
135 |
|
396
|
136 |
ML {*
|
|
137 |
fun P n = @{term "P::nat \<Rightarrow> bool"} $ (HOLogic.mk_number @{typ "nat"} n)
|
|
138 |
|
|
139 |
fun rhs 1 = P 1
|
|
140 |
| rhs n = HOLogic.mk_conj (P n, rhs (n - 1))
|
|
141 |
|
|
142 |
fun lhs 1 n = HOLogic.mk_imp (HOLogic.mk_eq (P 1, P n), rhs n)
|
|
143 |
| lhs m n = HOLogic.mk_conj (HOLogic.mk_imp
|
|
144 |
(HOLogic.mk_eq (P (m - 1), P m), rhs n), lhs (m - 1) n)
|
|
145 |
|
|
146 |
fun de_bruijn n =
|
|
147 |
HOLogic.mk_Trueprop (HOLogic.mk_imp (lhs n n, rhs n))
|
|
148 |
*}
|
346
|
149 |
|
|
150 |
use "output_tutorial.ML"
|
|
151 |
use "antiquote_setup.ML"
|
|
152 |
|
|
153 |
|
239
|
154 |
end |