| author | berghofe | 
| Mon, 12 Mar 2007 11:07:59 +0100 | |
| changeset 22436 | c9e384a956df | 
| parent 22361 | d8d96d0122a7 | 
| child 22592 | 97b5290a8c34 | 
| permissions | -rw-r--r-- | 
| 19 | 1 | (* Title: Pure/ROOT.ML | 
| 0 | 2 | ID: $Id$ | 
| 3 | ||
| 16842 | 4 | Pure Isabelle. | 
| 0 | 5 | *) | 
| 6 | ||
| 7 | val banner = "Pure Isabelle"; | |
| 11835 | 8 | val version = "Isabelle repository version"; (*filled in automatically!*) | 
| 9 | ||
| 17474 
e4cdb9f061fb
added quick_and_dirty (from Isar/skip_proofs.ML);
 wenzelm parents: 
17467diff
changeset | 10 | (*if true then some tools will OMIT some proofs*) | 
| 
e4cdb9f061fb
added quick_and_dirty (from Isar/skip_proofs.ML);
 wenzelm parents: 
17467diff
changeset | 11 | val quick_and_dirty = ref false; | 
| 0 | 12 | |
| 12248 | 13 | print_depth 10; | 
| 0 | 14 | |
| 5684 | 15 | (*fake hiding of private structures*) | 
| 16 | structure Hidden = struct end; | |
| 4949 | 17 | |
| 5017 
786a17461ab9
moved table.ML, object.ML, seq.ML, name_space.ML to General;
 wenzelm parents: 
5004diff
changeset | 18 | (*basic tools*) | 
| 21396 | 19 | use "General/basics.ML"; | 
| 0 | 20 | use "library.ML"; | 
| 5017 
786a17461ab9
moved table.ML, object.ML, seq.ML, name_space.ML to General;
 wenzelm parents: 
5004diff
changeset | 21 | cd "General"; use "ROOT.ML"; cd ".."; | 
| 14781 | 22 | |
| 23 | (*fundamental structures*) | |
| 20075 | 24 | use "name.ML"; | 
| 0 | 25 | use "term.ML"; | 
| 20507 | 26 | use "term_subst.ML"; | 
| 14823 
ebb8499d0fd2
moved print_mode to General/output.ML; load General/pretty.ML early;
 wenzelm parents: 
14781diff
changeset | 27 | use "General/pretty.ML"; | 
| 14781 | 28 | use "sorts.ML"; | 
| 29 | use "type.ML"; | |
| 16435 | 30 | use "context.ML"; | 
| 16980 | 31 | use "compress.ML"; | 
| 19 | 32 | |
| 4949 | 33 | (*inner syntax module*) | 
| 6178 | 34 | cd "Syntax"; use "ROOT.ML"; cd ".."; | 
| 21475 | 35 | use "General/ml_syntax.ML"; | 
| 0 | 36 | |
| 15825 
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
 wenzelm parents: 
15801diff
changeset | 37 | (*core of tactical proof system*) | 
| 18934 | 38 | use "envir.ML"; | 
| 39 | use "logic.ML"; | |
| 2960 | 40 | use "type_infer.ML"; | 
| 18059 | 41 | use "consts.ML"; | 
| 0 | 42 | use "sign.ML"; | 
| 43 | use "pattern.ML"; | |
| 44 | use "unify.ML"; | |
| 45 | use "net.ML"; | |
| 16108 
cf468b93a02e
Implement cycle-free overloading, so that definitions cannot harm consistency any more (except of course via interaction with axioms).
 obua parents: 
15825diff
changeset | 46 | use "defs.ML"; | 
| 1528 | 47 | use "theory.ML"; | 
| 11511 | 48 | use "proofterm.ML"; | 
| 0 | 49 | use "thm.ML"; | 
| 22361 | 50 | use "more_thm.ML"; | 
| 13271 | 51 | use "fact_index.ML"; | 
| 3986 | 52 | use "pure_thy.ML"; | 
| 19589 | 53 | use "display.ML"; | 
| 0 | 54 | use "drule.ML"; | 
| 22233 | 55 | use "morphism.ML"; | 
| 19898 | 56 | use "variable.ML"; | 
| 0 | 57 | use "tctical.ML"; | 
| 1582 | 58 | use "search.ML"; | 
| 21708 | 59 | use "tactic.ML"; | 
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
14823diff
changeset | 60 | use "meta_simplifier.ML"; | 
| 19417 | 61 | use "conjunction.ML"; | 
| 20225 | 62 | use "assumption.ML"; | 
| 17963 | 63 | use "goal.ML"; | 
| 0 | 64 | |
| 11511 | 65 | (*proof term operations*) | 
| 15825 
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
 wenzelm parents: 
15801diff
changeset | 66 | use "Proof/reconstruct.ML"; | 
| 
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
 wenzelm parents: 
15801diff
changeset | 67 | use "Proof/proof_syntax.ML"; | 
| 
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
 wenzelm parents: 
15801diff
changeset | 68 | use "Proof/proof_rewrite_rules.ML"; | 
| 
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
 wenzelm parents: 
15801diff
changeset | 69 | use "Proof/proofchecker.ML"; | 
| 
1576f9d3ffae
added content of Pure/Thy/ROOT.ML, Pure/Proof/ROOT.ML;
 wenzelm parents: 
15801diff
changeset | 70 | |
| 22108 | 71 | (*the main Isar system*) | 
| 6178 | 72 | cd "Isar"; use "ROOT.ML"; cd ".."; | 
| 20207 | 73 | use "subgoal.ML"; | 
| 5834 | 74 | |
| 13402 | 75 | use "Proof/extraction.ML"; | 
| 11511 | 76 | |
| 17467 | 77 | cd "Tools"; use "ROOT.ML"; cd ".."; | 
| 78 | ||
| 12778 
3120e338ffae
Interface/proof_general.ML move to proof_general.ML;
 wenzelm parents: 
12248diff
changeset | 79 | (*configuration for Proof General*) | 
| 21941 | 80 | cd "ProofGeneral"; use "ROOT.ML"; cd ".."; | 
| 16781 | 81 | |
| 18991 
0ded3b842878
use proof_general.ML: setmp quick_and_dirty captures default value;
 wenzelm parents: 
18934diff
changeset | 82 | use_thy "Pure"; | 
| 
0ded3b842878
use proof_general.ML: setmp quick_and_dirty captures default value;
 wenzelm parents: 
18934diff
changeset | 83 | structure Pure = struct val thy = theory "Pure" end; | 
| 18837 | 84 | |
| 85 | Context.add_setup | |
| 86 | (Theory.del_modesyntax Syntax.default_mode Syntax.appl_syntax #> | |
| 87 | Theory.add_syntax Syntax.applC_syntax); | |
| 18991 
0ded3b842878
use proof_general.ML: setmp quick_and_dirty captures default value;
 wenzelm parents: 
18934diff
changeset | 88 | use_thy "CPure"; | 
| 
0ded3b842878
use proof_general.ML: setmp quick_and_dirty captures default value;
 wenzelm parents: 
18934diff
changeset | 89 | structure CPure = struct val thy = theory "CPure" end; | 
| 15801 | 90 | |
| 17467 | 91 | (*final ML setup*) | 
| 6178 | 92 | use "install_pp.ML"; | 
| 6237 | 93 | val use = ThyInfo.use; | 
| 21858 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 wenzelm parents: 
21708diff
changeset | 94 | val cd = File.cd o Path.explode; | 
| 7938 | 95 | ml_prompts "ML> " "ML# "; | 
| 11511 | 96 | |
| 11545 | 97 | proofs := 0; |