author | paulson |
Thu, 02 Jul 1998 16:53:55 +0200 | |
changeset 5111 | 8f4b72f0c15d |
parent 5093 | f616efb64a0e |
child 5113 | c4da11bb0592 |
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 |
||
4986 | 6 |
Root file for Pure Isabelle. |
0 | 7 |
*) |
8 |
||
9 |
val banner = "Pure Isabelle"; |
|
4986 | 10 |
val version = "Isabelle repository"; |
0 | 11 |
|
12 |
print_depth 1; |
|
4978 | 13 |
ml_prompts "> " "# "; |
0 | 14 |
|
4949 | 15 |
|
5017
786a17461ab9
moved table.ML, object.ML, seq.ML, name_space.ML to General;
wenzelm
parents:
5004
diff
changeset
|
16 |
(*basic tools*) |
0 | 17 |
use "library.ML"; |
5017
786a17461ab9
moved table.ML, object.ML, seq.ML, name_space.ML to General;
wenzelm
parents:
5004
diff
changeset
|
18 |
cd "General"; use "ROOT.ML"; cd ".."; |
0 | 19 |
use "term.ML"; |
19 | 20 |
|
4949 | 21 |
(*inner syntax module*) |
2582 | 22 |
cd "Syntax"; |
0 | 23 |
use "ROOT.ML"; |
2582 | 24 |
cd ".."; |
0 | 25 |
|
4949 | 26 |
(*main system*) |
2960 | 27 |
use "sorts.ML"; |
28 |
use "type_infer.ML"; |
|
0 | 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"; |
|
1528 | 36 |
use "theory.ML"; |
5004 | 37 |
use "theory_data.ML"; |
0 | 38 |
use "thm.ML"; |
3986 | 39 |
use "display.ML"; |
4781 | 40 |
use "attribute.ML"; |
3986 | 41 |
use "pure_thy.ML"; |
1595 | 42 |
use "deriv.ML"; |
0 | 43 |
use "drule.ML"; |
44 |
use "tctical.ML"; |
|
1582 | 45 |
use "search.ML"; |
0 | 46 |
use "tactic.ML"; |
47 |
use "goals.ML"; |
|
403 | 48 |
use "axclass.ML"; |
5092 | 49 |
use "pure.ML"; |
0 | 50 |
|
4949 | 51 |
(*theory parser and loader*) |
2582 | 52 |
cd "Thy"; |
73
075db6ac7f2f
delete_file now has type string -> unit in both NJ and POLY,
clasohm
parents:
19
diff
changeset
|
53 |
use "ROOT.ML"; |
2582 | 54 |
cd ".."; |
73
075db6ac7f2f
delete_file now has type string -> unit in both NJ and POLY,
clasohm
parents:
19
diff
changeset
|
55 |
|
618 | 56 |
use "install_pp.ML"; |
57 |
||
5093 | 58 |
val quick_and_dirty = ref false; |
59 |
||
4209 | 60 |
(*several object-logics declare theories named List or Option, hiding |
61 |
the eponymous basis library structures*) |
|
62 |
structure BasisLibrary = |
|
63 |
struct |
|
64 |
structure List = List and Option = Option; |
|
65 |
end; |
|
66 |
||
67 |
open Use; |
|
68 |
||
3508 | 69 |
print_depth 8; |