src/Pure/ROOT.ML
author paulson
Fri, 25 Sep 1998 14:06:27 +0200
changeset 5568 0067dd151d7a
parent 5244 5313f781efe0
child 5607 5db9e2343ade
permissions -rw-r--r--
added Int to BasisLibrary

(*  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;
ml_prompts "> " "# ";


(*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 "thm.ML";
use "display.ML";
use "attribute.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 "..";

use "pure.ML";

use "install_pp.ML";

(*if true then some packages won't be too serious about actually proving things*)
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       Int    = Int;
end;

open Use;

print_depth 8;