tuned;
authorwenzelm
Wed, 03 Feb 1999 16:27:36 +0100
changeset 6178 d6d6bdfe8340
parent 6177 51113cb0ed87
child 6179 e40b647fd6d0
tuned;
src/Pure/ROOT.ML
--- a/src/Pure/ROOT.ML	Wed Feb 03 16:02:21 1999 +0100
+++ b/src/Pure/ROOT.ML	Wed Feb 03 16:27:36 1999 +0100
@@ -11,10 +11,9 @@
 
 print_depth 1;
 
-(* global flags *)
-val print_mode = ref ([]:string list);
-(*if true then some packages will OMIT SOME PROOFS*)
-val quick_and_dirty = ref false;
+(*global flags*)
+val print_mode = ref ([]: string list);
+val quick_and_dirty = ref false;        (*if true then some packages will OMIT SOME PROOFS*)
 
 (*fake hiding of private structures*)
 structure Hidden = struct end;
@@ -25,9 +24,7 @@
 use "term.ML";
 
 (*inner syntax module*)
-cd "Syntax";
-use "ROOT.ML";
-cd "..";
+cd "Syntax"; use "ROOT.ML"; cd "..";
 
 (*main system*)
 use "sorts.ML";
@@ -41,6 +38,7 @@
 use "logic.ML";
 use "theory.ML";
 use "theory_data.ML";
+use "context.ML";
 use "object_logic.ML";
 use "thm.ML";
 use "display.ML";
@@ -54,32 +52,27 @@
 use "goals.ML";
 use "axclass.ML";
 
-(*theory parser and loader*)
-cd "Thy";
-use "ROOT.ML";
-cd "..";
+(*theory system operations*)
+cd "Thy"; use "ROOT.ML"; cd "..";
 
 (*the Isar subsystem*)
-cd "Isar";
-use "ROOT.ML";
-cd "..";
+cd "Isar"; use "ROOT.ML"; cd "..";
 
+(*final Pure theory setup*)
 use "pure.ML";
 
-use "install_pp.ML";
-
 (*several object-logics declare theories that hide basis library structures*)
 structure BasisLibrary =
 struct
-  structure List   = List 
-  and       Option = Option
-  and       Bool   = Bool
-  and       String = String
-  and       Int    = Int
-  and       Real   = Real;
+  structure List = List;
+  structure Option = Option;
+  structure Bool = Bool;
+  structure String = String;
+  structure Int = Int;
+  structure Real = Real;
 end;
 
-open Use;
-
+use "install_pp.ML";
+open BasicUse;
 print_depth 8;
 (*ml_prompts "ML> " "ML# ";*)