src/Pure/ROOT.ML
author wenzelm
Tue, 12 Jan 1999 12:28:29 +0100
changeset 6083 ede76e7af057
parent 6038 dfdb7584cf96
child 6164 a0e9501d56f8
permissions -rw-r--r--
removed attribute.ML;

(*  Title:      Pure/ROOT.ML
    ID:         $Id$
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
    Copyright   1993  University of Cambridge

Root file for Pure Isabelle.
*)

val banner = "Pure Isabelle";
val version = "Isabelle repository";

print_depth 1;

(*fake hiding of private structures*)
structure Hidden = struct end;

(*basic tools*)
use "library.ML";
cd "General"; use "ROOT.ML"; cd "..";
use "term.ML";

(*inner syntax module*)
cd "Syntax";
use "ROOT.ML";
cd "..";

(*main system*)
use "sorts.ML";
use "type_infer.ML";
use "type.ML";
use "sign.ML";
use "envir.ML";
use "pattern.ML";
use "unify.ML";
use "net.ML";
use "logic.ML";
use "theory.ML";
use "theory_data.ML";
use "object_logic.ML";
use "thm.ML";
use "display.ML";
use "pure_thy.ML";
use "deriv.ML";
use "drule.ML";
use "locale.ML";
use "tctical.ML";
use "search.ML";
use "tactic.ML";
use "goals.ML";
use "axclass.ML";

(*theory parser and loader*)
cd "Thy";
use "ROOT.ML";
cd "..";

(*the Isar subsystem*)
cd "Isar";
use "ROOT.ML";
cd "..";

use "pure.ML";

use "install_pp.ML";

(*if true then some packages will OMIT SOME PROOFS*)
val quick_and_dirty = ref false;

(*several object-logics declare theories that hide basis library structures*)
structure BasisLibrary =
struct
  structure List   = List 
  and       Option = Option
  and       Bool   = Bool
  and       String = String
  and       Int    = Int
  and       Real   = Real;
end;

open Use;

print_depth 8;
(*ml_prompts "ML> " "ML# ";*)