author | wenzelm |
Tue, 16 Oct 2001 00:32:01 +0200 | |
changeset 11790 | 42393a11642d |
parent 11761 | 183435fd45f2 |
child 12013 | 8d2372c6b5f3 |
permissions | -rw-r--r-- |
5092 | 1 |
(* Title: Pure/pure.ML |
2 |
ID: $Id$ |
|
3 |
Author: Markus Wenzel, TU Muenchen |
|
4 |
||
6192
a42dbf1af868
proper setup of preloaded theories (ThyInfo.register_theory);
wenzelm
parents:
5905
diff
changeset
|
5 |
Final setup of the Pure theories. |
5092 | 6 |
*) |
7 |
||
5839 | 8 |
local |
9 |
val common_setup = |
|
10 |
Locale.setup @ |
|
6313 | 11 |
HTML.setup @ |
11761 | 12 |
ObjectLogic.setup @ |
5839 | 13 |
ProofContext.setup @ |
6770 | 14 |
Attrib.setup @ |
11664 | 15 |
InductAttrib.setup @ |
5839 | 16 |
Method.setup @ |
6770 | 17 |
Calculation.setup @ |
6888
d0c68ebdabc5
skip_proof feature 'sorry' (for quick_and_dirty mode only);
wenzelm
parents:
6785
diff
changeset
|
18 |
SkipProof.setup @ |
6653 | 19 |
AxClass.setup @ |
8965 | 20 |
Latex.setup @ |
7718 | 21 |
Present.setup @ |
6696 | 22 |
Isamode.setup @ |
11515 | 23 |
ProofGeneral.setup @ |
24 |
Codegen.setup; |
|
5839 | 25 |
in |
26 |
structure Pure = |
|
27 |
struct |
|
28 |
val thy = |
|
10931 | 29 |
PureThy.begin_theory Sign.PureN [ProtoPure.thy] |
5839 | 30 |
|> Theory.add_syntax Syntax.pure_appl_syntax |
5905 | 31 |
|> Library.apply common_setup |
5839 | 32 |
|> PureThy.end_theory; |
33 |
end; |
|
5092 | 34 |
|
5839 | 35 |
structure CPure = |
36 |
struct |
|
37 |
val thy = |
|
10931 | 38 |
PureThy.begin_theory Sign.CPureN [ProtoPure.thy] |
5839 | 39 |
|> Theory.add_syntax Syntax.pure_applC_syntax |
5905 | 40 |
|> Library.apply common_setup |
5863 | 41 |
|> Theory.copy |
5839 | 42 |
|> PureThy.end_theory; |
43 |
end; |
|
5211 | 44 |
end; |
5092 | 45 |
|
6192
a42dbf1af868
proper setup of preloaded theories (ThyInfo.register_theory);
wenzelm
parents:
5905
diff
changeset
|
46 |
ThyInfo.register_theory ProtoPure.thy; |
a42dbf1af868
proper setup of preloaded theories (ThyInfo.register_theory);
wenzelm
parents:
5905
diff
changeset
|
47 |
ThyInfo.register_theory Pure.thy; |
a42dbf1af868
proper setup of preloaded theories (ThyInfo.register_theory);
wenzelm
parents:
5905
diff
changeset
|
48 |
ThyInfo.register_theory CPure.thy; |