| author | nipkow |
| Wed, 13 Jan 1999 08:41:28 +0100 | |
| changeset 6109 | 82b50115564c |
| parent 6083 | ede76e7af057 |
| child 6164 | a0e9501d56f8 |
| 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 |
||
| 5684 | 14 |
(*fake hiding of private structures*) |
15 |
structure Hidden = struct end; |
|
| 4949 | 16 |
|
|
5017
786a17461ab9
moved table.ML, object.ML, seq.ML, name_space.ML to General;
wenzelm
parents:
5004
diff
changeset
|
17 |
(*basic tools*) |
| 0 | 18 |
use "library.ML"; |
|
5017
786a17461ab9
moved table.ML, object.ML, seq.ML, name_space.ML to General;
wenzelm
parents:
5004
diff
changeset
|
19 |
cd "General"; use "ROOT.ML"; cd ".."; |
| 0 | 20 |
use "term.ML"; |
| 19 | 21 |
|
| 4949 | 22 |
(*inner syntax module*) |
| 2582 | 23 |
cd "Syntax"; |
| 0 | 24 |
use "ROOT.ML"; |
| 2582 | 25 |
cd ".."; |
| 0 | 26 |
|
| 4949 | 27 |
(*main system*) |
| 2960 | 28 |
use "sorts.ML"; |
29 |
use "type_infer.ML"; |
|
| 0 | 30 |
use "type.ML"; |
31 |
use "sign.ML"; |
|
32 |
use "envir.ML"; |
|
33 |
use "pattern.ML"; |
|
34 |
use "unify.ML"; |
|
35 |
use "net.ML"; |
|
36 |
use "logic.ML"; |
|
| 1528 | 37 |
use "theory.ML"; |
| 5004 | 38 |
use "theory_data.ML"; |
| 5834 | 39 |
use "object_logic.ML"; |
| 0 | 40 |
use "thm.ML"; |
| 3986 | 41 |
use "display.ML"; |
42 |
use "pure_thy.ML"; |
|
| 1595 | 43 |
use "deriv.ML"; |
| 0 | 44 |
use "drule.ML"; |
| 5244 | 45 |
use "locale.ML"; |
| 0 | 46 |
use "tctical.ML"; |
| 1582 | 47 |
use "search.ML"; |
| 0 | 48 |
use "tactic.ML"; |
49 |
use "goals.ML"; |
|
| 403 | 50 |
use "axclass.ML"; |
| 0 | 51 |
|
| 4949 | 52 |
(*theory parser and loader*) |
| 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 |
|
| 5834 | 57 |
(*the Isar subsystem*) |
58 |
cd "Isar"; |
|
59 |
use "ROOT.ML"; |
|
60 |
cd ".."; |
|
61 |
||
| 5211 | 62 |
use "pure.ML"; |
63 |
||
| 618 | 64 |
use "install_pp.ML"; |
65 |
||
| 6038 | 66 |
(*if true then some packages will OMIT SOME PROOFS*) |
| 5093 | 67 |
val quick_and_dirty = ref false; |
68 |
||
| 5568 | 69 |
(*several object-logics declare theories that hide basis library structures*) |
| 4209 | 70 |
structure BasisLibrary = |
71 |
struct |
|
| 5568 | 72 |
structure List = List |
73 |
and Option = Option |
|
| 5607 | 74 |
and Bool = Bool |
| 6038 | 75 |
and String = String |
| 5607 | 76 |
and Int = Int |
77 |
and Real = Real; |
|
| 4209 | 78 |
end; |
79 |
||
80 |
open Use; |
|
81 |
||
| 3508 | 82 |
print_depth 8; |
| 5834 | 83 |
(*ml_prompts "ML> " "ML# ";*) |