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