author | wenzelm |
Mon, 25 May 1998 21:16:03 +0200 | |
changeset 4961 | 27f559b54c57 |
parent 4949 | c73f72daee64 |
child 4962 | e9217cb15b42 |
permissions | -rw-r--r-- |
19 | 1 |
(* Title: Pure/ROOT.ML |
0 | 2 |
ID: $Id$ |
19 | 3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
0 | 4 |
Copyright 1993 University of Cambridge |
5 |
||
19 | 6 |
Root file for Pure Isabelle: all modules in proper order for loading. |
4690 | 7 |
Loads Pure Isabelle into an empty ML database (see also README). |
0 | 8 |
*) |
9 |
||
10 |
val banner = "Pure Isabelle"; |
|
4410 | 11 |
val version = "Isabelle98: January 1998"; |
0 | 12 |
|
13 |
print_depth 1; |
|
14 |
||
4949 | 15 |
|
16 |
(*basic utils*) |
|
0 | 17 |
use "library.ML"; |
4484 | 18 |
use "table.ML"; |
4278 | 19 |
use "seq.ML"; |
3763 | 20 |
use "name_space.ML"; |
0 | 21 |
use "term.ML"; |
19 | 22 |
|
4949 | 23 |
(*inner syntax module*) |
2582 | 24 |
cd "Syntax"; |
0 | 25 |
use "ROOT.ML"; |
2582 | 26 |
cd ".."; |
0 | 27 |
|
4949 | 28 |
(*main system*) |
2960 | 29 |
use "sorts.ML"; |
30 |
use "type_infer.ML"; |
|
0 | 31 |
use "type.ML"; |
32 |
use "sign.ML"; |
|
33 |
use "envir.ML"; |
|
34 |
use "pattern.ML"; |
|
35 |
use "unify.ML"; |
|
36 |
use "net.ML"; |
|
37 |
use "logic.ML"; |
|
1528 | 38 |
use "theory.ML"; |
0 | 39 |
use "thm.ML"; |
3986 | 40 |
use "display.ML"; |
4781 | 41 |
use "attribute.ML"; |
3986 | 42 |
use "pure_thy.ML"; |
1595 | 43 |
use "deriv.ML"; |
0 | 44 |
use "drule.ML"; |
45 |
use "tctical.ML"; |
|
1582 | 46 |
use "search.ML"; |
0 | 47 |
use "tactic.ML"; |
48 |
use "goals.ML"; |
|
403 | 49 |
use "axclass.ML"; |
0 | 50 |
|
4949 | 51 |
(*theory parser and loader*) |
4408 | 52 |
val global_names = ref false; (* FIXME tmp *) |
2582 | 53 |
cd "Thy"; |
73
075db6ac7f2f
delete_file now has type string -> unit in both NJ and POLY,
clasohm
parents:
19
diff
changeset
|
54 |
use "ROOT.ML"; |
2582 | 55 |
cd ".."; |
73
075db6ac7f2f
delete_file now has type string -> unit in both NJ and POLY,
clasohm
parents:
19
diff
changeset
|
56 |
|
618 | 57 |
use "install_pp.ML"; |
58 |
||
4209 | 59 |
(*several object-logics declare theories named List or Option, hiding |
60 |
the eponymous basis library structures*) |
|
61 |
structure BasisLibrary = |
|
62 |
struct |
|
63 |
structure List = List and Option = Option; |
|
64 |
end; |
|
65 |
||
66 |
open Use; |
|
67 |
||
3508 | 68 |
print_depth 8; |