author | wenzelm |
Wed Jul 29 15:38:08 1998 +0200 (1998-07-29) | |
changeset 5211 | c02b0c727780 |
parent 5113 | c4da11bb0592 |
child 5244 | 5313f781efe0 |
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.
7 *)
9 val banner = "Pure Isabelle";
10 val version = "Isabelle repository";
12 print_depth 1;
13 ml_prompts "> " "# ";
16 (*basic tools*)
17 use "library.ML";
18 cd "General"; use "ROOT.ML"; cd "..";
19 use "term.ML";
21 (*inner syntax module*)
22 cd "Syntax";
23 use "ROOT.ML";
24 cd "..";
26 (*main 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 "theory_data.ML";
38 use "thm.ML";
39 use "display.ML";
40 use "attribute.ML";
41 use "pure_thy.ML";
42 use "deriv.ML";
43 use "drule.ML";
44 use "tctical.ML";
45 use "search.ML";
46 use "tactic.ML";
47 use "goals.ML";
48 use "axclass.ML";
50 (*theory parser and loader*)
51 cd "Thy";
52 use "ROOT.ML";
53 cd "..";
55 use "pure.ML";
57 use "install_pp.ML";
59 (*if true then some packages won't be too serious about actually proving things*)
60 val quick_and_dirty = ref false;
62 (*several object-logics declare theories named List or Option, hiding
63 the eponymous basis library structures*)
64 structure BasisLibrary =
65 struct
66 structure List = List and Option = Option;
67 end;
69 open Use;
71 print_depth 8;