author | wenzelm |
Wed, 03 Feb 1999 16:27:36 +0100 | |
changeset 6178 | d6d6bdfe8340 |
parent 6164 | a0e9501d56f8 |
child 6226 | 42c94393d39e |
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; |
|
13 |
||
6178 | 14 |
(*global flags*) |
15 |
val print_mode = ref ([]: string list); |
|
16 |
val quick_and_dirty = ref false; (*if true then some packages will OMIT SOME PROOFS*) |
|
6164 | 17 |
|
5684 | 18 |
(*fake hiding of private structures*) |
19 |
structure Hidden = struct end; |
|
4949 | 20 |
|
5017
786a17461ab9
moved table.ML, object.ML, seq.ML, name_space.ML to General;
wenzelm
parents:
5004
diff
changeset
|
21 |
(*basic tools*) |
0 | 22 |
use "library.ML"; |
5017
786a17461ab9
moved table.ML, object.ML, seq.ML, name_space.ML to General;
wenzelm
parents:
5004
diff
changeset
|
23 |
cd "General"; use "ROOT.ML"; cd ".."; |
0 | 24 |
use "term.ML"; |
19 | 25 |
|
4949 | 26 |
(*inner syntax module*) |
6178 | 27 |
cd "Syntax"; use "ROOT.ML"; cd ".."; |
0 | 28 |
|
4949 | 29 |
(*main system*) |
2960 | 30 |
use "sorts.ML"; |
31 |
use "type_infer.ML"; |
|
0 | 32 |
use "type.ML"; |
33 |
use "sign.ML"; |
|
34 |
use "envir.ML"; |
|
35 |
use "pattern.ML"; |
|
36 |
use "unify.ML"; |
|
37 |
use "net.ML"; |
|
38 |
use "logic.ML"; |
|
1528 | 39 |
use "theory.ML"; |
5004 | 40 |
use "theory_data.ML"; |
6178 | 41 |
use "context.ML"; |
5834 | 42 |
use "object_logic.ML"; |
0 | 43 |
use "thm.ML"; |
3986 | 44 |
use "display.ML"; |
45 |
use "pure_thy.ML"; |
|
1595 | 46 |
use "deriv.ML"; |
0 | 47 |
use "drule.ML"; |
5244 | 48 |
use "locale.ML"; |
0 | 49 |
use "tctical.ML"; |
1582 | 50 |
use "search.ML"; |
0 | 51 |
use "tactic.ML"; |
52 |
use "goals.ML"; |
|
403 | 53 |
use "axclass.ML"; |
0 | 54 |
|
6178 | 55 |
(*theory system operations*) |
56 |
cd "Thy"; use "ROOT.ML"; cd ".."; |
|
73
075db6ac7f2f
delete_file now has type string -> unit in both NJ and POLY,
clasohm
parents:
19
diff
changeset
|
57 |
|
5834 | 58 |
(*the Isar subsystem*) |
6178 | 59 |
cd "Isar"; use "ROOT.ML"; cd ".."; |
5834 | 60 |
|
6178 | 61 |
(*final Pure theory setup*) |
5211 | 62 |
use "pure.ML"; |
63 |
||
5568 | 64 |
(*several object-logics declare theories that hide basis library structures*) |
4209 | 65 |
structure BasisLibrary = |
66 |
struct |
|
6178 | 67 |
structure List = List; |
68 |
structure Option = Option; |
|
69 |
structure Bool = Bool; |
|
70 |
structure String = String; |
|
71 |
structure Int = Int; |
|
72 |
structure Real = Real; |
|
4209 | 73 |
end; |
74 |
||
6178 | 75 |
use "install_pp.ML"; |
76 |
open BasicUse; |
|
3508 | 77 |
print_depth 8; |
5834 | 78 |
(*ml_prompts "ML> " "ML# ";*) |