src/HOL/ex/ROOT.ML
author haftmann
Fri, 02 Jul 2010 14:23:18 +0200
changeset 37686 71e84a203c19
parent 37280 0fb011773adc
child 37759 8380686be5cd
permissions -rw-r--r--
introduced distinct session HOL-Codegenerator_Test
     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   "NormalForm"
    12 ];
    13 
    14 use_thys [
    15   "Numeral",
    16   "Higher_Order_Logic",
    17   "Abstract_NAT",
    18   "Guess",
    19   "Binary",
    20   "Recdefs",
    21   "Fundefs",
    22   "Induction_Schema",
    23   "InductiveInvariant_examples",
    24   "LocaleTest2",
    25   "Records",
    26   "MonoidGroup",
    27   "BinEx",
    28   "Hex_Bin_Examples",
    29   "Antiquote",
    30   "Multiquote",
    31   "PER",
    32   "NatSum",
    33   "ThreeDivides",
    34   "Intuitionistic",
    35   "CTL",
    36   "Arith_Examples",
    37   "BT",
    38   "Tree23",
    39   "MergeSort",
    40   "Lagrange",
    41   "Groebner_Examples",
    42   "MT",
    43   "Unification",
    44   "Primrec",
    45   "Tarski",
    46   "Classical",
    47   "set",
    48   "Meson_Test",
    49   "Termination",
    50   "Coherent",
    51   "PresburgerEx",
    52   "ReflectionEx",
    53   "BinEx",
    54   "Sqrt",
    55   "Sqrt_Script",
    56   "Transfer_Ex",
    57   "Arithmetic_Series_Complex",
    58   "HarmonicSeries",
    59   "Refute_Examples",
    60   "Quickcheck_Examples",
    61   "Landau",
    62   "Execute_Choice",
    63   "Summation",
    64   "Gauge_Integration",
    65   "Dedekind_Real"
    66 ];
    67 
    68 HTML.with_charset "utf-8" (no_document use_thys)
    69   ["Hebrew", "Chinese", "Serbian"];
    70 
    71 (setmp_noncritical proofs 2 (setmp_noncritical Multithreading.max_threads 1 use_thy))
    72   "Hilbert_Classical";
    73 
    74 use_thy "SVC_Oracle";
    75 if getenv "SVC_HOME" = "" then ()
    76 else use_thy "svc_test";
    77 
    78 (*requires zChaff (or some other reasonably fast SAT solver)*)
    79 if getenv "ZCHAFF_HOME" = "" then ()
    80 else use_thy "Sudoku";
    81 
    82 (*requires a proof-generating SAT solver (zChaff or MiniSAT)*)
    83 (*global side-effects ahead!*)
    84 try use_thy "SAT_Examples";   (* FIXME try!? (not really a proper test) *)