src/HOL/ex/ROOT.ML
author haftmann
Wed, 03 Nov 2010 12:20:33 +0100
changeset 40590 131cf8790a1c
parent 40528 3c6198fd0937
child 40880 dc55e6752046
permissions -rw-r--r--
moved theory Quicksort from Library/ to ex/
     1 (*  Title:      HOL/ex/ROOT.ML
     2 
     3 Miscellaneous examples for Higher-Order Logic.
     4 *)
     5 
     6 no_document use_thys [
     7   "State_Monad",
     8   "Efficient_Nat_examples",
     9   "FuncSet",
    10   "Eval_Examples",
    11   "Normalization_by_Evaluation"
    12 ];
    13 
    14 use_thys [
    15   "Iff_Oracle",
    16   "Coercion_Examples",
    17   "Numeral",
    18   "Higher_Order_Logic",
    19   "Abstract_NAT",
    20   "Guess",
    21   "Binary",
    22   "Recdefs",
    23   "Fundefs",
    24   "Induction_Schema",
    25   "InductiveInvariant_examples",
    26   "LocaleTest2",
    27   "Records",
    28   "While_Combinator_Example",
    29   "MonoidGroup",
    30   "BinEx",
    31   "Hex_Bin_Examples",
    32   "Antiquote",
    33   "Multiquote",
    34   "PER",
    35   "NatSum",
    36   "ThreeDivides",
    37   "Intuitionistic",
    38   "CTL",
    39   "Arith_Examples",
    40   "BT",
    41   "Tree23",
    42   "MergeSort",
    43   "Lagrange",
    44   "Groebner_Examples",
    45   "MT",
    46   "Unification",
    47   "Primrec",
    48   "Tarski",
    49   "Classical",
    50   "set",
    51   "Meson_Test",
    52   "Termination",
    53   "Coherent",
    54   "PresburgerEx",
    55   "ReflectionEx",
    56   "BinEx",
    57   "Sqrt",
    58   "Sqrt_Script",
    59   "Transfer_Ex",
    60   "Arithmetic_Series_Complex",
    61   "HarmonicSeries",
    62   "Refute_Examples",
    63   "Quickcheck_Examples",
    64   "Quickcheck_Lattice_Examples",
    65   "Landau",
    66   "Execute_Choice",
    67   "Summation",
    68   "Gauge_Integration",
    69   "Dedekind_Real",
    70   "Quicksort"
    71 ];
    72 
    73 HTML.with_charset "utf-8" (no_document use_thys)
    74   ["Hebrew", "Chinese", "Serbian"];
    75 
    76 use_thy "SVC_Oracle";
    77 if getenv "SVC_HOME" = "" then ()
    78 else use_thy "svc_test";
    79 
    80 (*requires zChaff (or some other reasonably fast SAT solver)*)
    81 if getenv "ZCHAFF_HOME" = "" then ()
    82 else use_thy "Sudoku";
    83 
    84 (*requires a proof-generating SAT solver (zChaff or MiniSAT)*)
    85 (*global side-effects ahead!*)
    86 try use_thy "SAT_Examples";   (* FIXME try!? (not really a proper test) *)