author | wenzelm |
Sat Nov 22 13:26:30 1997 +0100 (1997-11-22) | |
changeset 4278 | c64867c093fb |
parent 4270 | 957c887b89b5 |
child 4362 | e10acc395f0d |
permissions | -rw-r--r-- |
1 (* Title: Pure/ROOT.ML
2 ID: $Id$
3 Author: Lawrence C Paulson, Cambridge University Computer Laboratory
4 Copyright 1993 University of Cambridge
6 Root file for Pure Isabelle: all modules in proper order for loading.
7 Loads Pure Isabelle into an empty ML database (see also IsaMakefile).
8 *)
10 val banner = "Pure Isabelle";
11 val version = "Isabelle-94 revision 8: May 1997";
13 print_depth 1;
15 use "library.ML";
16 use "seq.ML";
17 use "symtab.ML";
18 use "name_space.ML";
19 use "term.ML";
21 (*Syntax module*)
22 cd "Syntax";
23 use "ROOT.ML";
24 cd "..";
26 (*Core system*)
27 use "sorts.ML";
28 use "type_infer.ML";
29 use "type.ML";
30 use "sign.ML";
31 use "envir.ML";
32 use "pattern.ML";
33 use "unify.ML";
34 use "net.ML";
35 use "logic.ML";
36 use "theory.ML";
37 use "thm.ML";
38 use "display.ML";
39 use "pure_thy.ML";
40 use "deriv.ML";
41 use "drule.ML";
42 use "tctical.ML";
43 use "search.ML";
44 use "tactic.ML";
45 use "goals.ML";
46 use "axclass.ML";
48 (*Theory parser and loader*)
49 cd "Thy";
50 use "ROOT.ML";
51 cd "..";
53 use "install_pp.ML";
55 (*several object-logics declare theories named List or Option, hiding
56 the eponymous basis library structures*)
57 structure BasisLibrary =
58 struct
59 structure List = List and Option = Option;
60 end;
62 open Use;
64 print_depth 8;