src/HOL/ex/ROOT.ML
author blanchet
Wed, 23 Mar 2011 10:06:27 +0100
changeset 42942 04577a7e0c51
parent 42823 c7297638599b
child 42949 d5bf0ce40bd7
permissions -rw-r--r--
move "TPTP" wrapper and "Sledgehammer as a tactic" to "HOL/ex"
default to "e" rather than "vampire" since E is part of the Isabelle bundle
     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   "List_to_Set_Comprehension_Examples",
    76   "Set_Algebras",
    77   "TPTP"
    78 ];
    79 
    80 if getenv "ISABELLE_GHC" = "" then ()
    81 else use_thy "Quickcheck_Narrowing_Examples";
    82 
    83 use_thy "SVC_Oracle";
    84 if getenv "SVC_HOME" = "" then ()
    85 else use_thy "svc_test";
    86 
    87 (*requires zChaff (or some other reasonably fast SAT solver)*)
    88 if getenv "ZCHAFF_HOME" = "" then ()
    89 else use_thy "Sudoku";
    90 
    91 (*requires a proof-generating SAT solver (zChaff or MiniSAT)*)
    92 (*global side-effects ahead!*)
    93 try use_thy "SAT_Examples";   (* FIXME try!? (not really a proper test) *)