src/Pure/Isar/ROOT.ML
author wenzelm
Sat, 01 Apr 2000 20:13:33 +0200
changeset 8652 39a695b0b1d7
parent 8367 2d77b5a723f1
child 8807 0046be1769f9
permissions -rw-r--r--
presentation ignore stuff: swallow newline;

(*  Title:      Pure/Isar/ROOT.ML
    ID:         $Id$
    Author:     Markus Wenzel, TU Muenchen

Isar -- Intelligible Semi-Automated Reasoning for Isabelle.
*)

(*basic proof engine*)
use "auto_bind.ML";
use "rule_cases.ML";
use "proof_context.ML";
use "proof.ML";
use "proof_data.ML";
use "proof_history.ML";
use "args.ML";
use "attrib.ML";
use "net_rules.ML";
use "method.ML";

(*derived proof elements*)
use "local_defs.ML";
use "calculation.ML";
use "skip_proof.ML";

(*outer syntax*)
use "comment.ML";
(*use "outer_lex.ML";*)	  (*see ../Thy/ROOT.ML*)
use "outer_parse.ML";

(*toplevel environment*)
use "toplevel.ML";
use "session.ML";

(*theory and proof operations*)
use "isar_thy.ML";
use "isar_cmd.ML";

(*theory syntax*)
use "outer_syntax.ML";
use "isar_syn.ML";

(*main ML interfaces*)
use "obtain.ML";
use "isar.ML";

structure PureIsar =
struct
  structure AutoBind = AutoBind;
  structure ProofContext = ProofContext;
  structure Proof = Proof;
  structure ProofHistory = ProofHistory;
  structure Args = Args;
  structure Attrib = Attrib;
  structure Method = Method;
  structure LocalDefs = LocalDefs;
  structure Calculation = Calculation;
  structure SkipProof = SkipProof;
  structure Comment = Comment;
  structure OuterLex = OuterLex;
  structure OuterParse = OuterParse;
  structure Toplevel = Toplevel;
  structure Session = Session;
  structure IsarThy = IsarThy;
  structure IsarCmd = IsarCmd;
  structure OuterSyntax = OuterSyntax;
  structure IsarSyn = IsarSyn;
  structure Isar = Isar;
end;