src/Pure/Isar/ROOT.ML
author wenzelm
Mon, 16 Nov 1998 11:03:35 +0100
changeset 5879 18b8f048d93a
parent 5873 f4fe91b3b6db
child 5951 e98c900540f9
permissions -rw-r--r--
several args parsers; realistic syntax; attributes: transfer, RS, APP, where, standard, elimify;

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

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

(*proof engine*)
use "proof_context.ML";
use "proof.ML";
use "proof_data.ML";
use "args.ML";
use "attrib.ML";
use "method.ML";

(*outer syntax*)
use "outer_lex.ML";
use "outer_parse.ML";

(*interactive subsystem*)
use "proof_history.ML";
use "toplevel.ML";
use "outer_syntax.ML";

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


structure PureIsar =
struct
  structure ProofContext = ProofContext;
  structure Proof = Proof;
  structure Args = Args;
  structure Attrib = Attrib;
  structure Method = Method;
  structure OuterLex = OuterLex;
  structure OuterParse = OuterParse;
  structure ProofHistory = ProofHistory;
  structure Toplevel = Toplevel;
  structure OuterSyntax = OuterSyntax;
  structure IsarThy = IsarThy;
  structure IsarCmd = IsarCmd;
  structure IsarSyn = IsarSyn;
end;