src/Pure/Isar/ROOT.ML
author paulson
Fri, 21 Jan 2005 18:00:18 +0100
changeset 15452 e2a721567f67
parent 15434 cb5bfb32ab39
child 15703 727ef1b8b3ee
permissions -rw-r--r--
Jia Meng: delta simpsets and clasets

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

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

(*basic proof engine*)
use "object_logic.ML";
use "auto_bind.ML";
use "rule_cases.ML";
use "proof_context.ML";
use "proof_data.ML";
use "delta_data.ML"; (*for delta_{claset,simpset}, part of SPASS interface*)
use "context_rules.ML";
use "locale.ML";
use "proof.ML";
use "proof_history.ML";
use "args.ML";
use "attrib.ML";
use "net_rules.ML";
use "induct_attrib.ML";
use "method.ML";

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

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

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

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

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

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

structure PureIsar =
struct
  structure ObjectLogic = ObjectLogic;
  structure AutoBind = AutoBind;
  structure ProofContext = ProofContext;
  structure Locale = Locale;
  structure Proof = Proof;
  structure ProofHistory = ProofHistory;
  structure Args = Args;
  structure Attrib = Attrib;
  structure ContextRules = ContextRules;
  structure Method = Method;
  structure Calculation = Calculation;
  structure Obtain = Obtain;
  structure SkipProof = SkipProof;
  structure OuterLex = OuterLex;
  structure Antiquote = Antiquote;
  structure OuterParse = OuterParse;
  structure Toplevel = Toplevel;
  structure Session = Session;
  structure IsarOutput = IsarOutput;
  structure ThyHeader = ThyHeader;
  structure OuterSyntax = OuterSyntax;
  structure IsarThy = IsarThy;
  structure Constdefs = Constdefs;
  structure IsarCmd = IsarCmd;
  structure IsarSyn = IsarSyn;
  structure Isar = Isar;
end;