# HG changeset patch # User wenzelm # Date 1231275351 -3600 # Node ID 2071939cf0fc6a21aecbabbf0f76d9b4cd0e4f9f # Parent 68b45381123229fd117c5f4e2d821a696694f6fb more parallel loading; diff -r 68b453811232 -r 2071939cf0fc src/HOL/ex/ROOT.ML --- a/src/HOL/ex/ROOT.ML Tue Jan 06 21:17:43 2009 +0100 +++ b/src/HOL/ex/ROOT.ML Tue Jan 06 21:55:51 2009 +0100 @@ -11,12 +11,12 @@ "Word", "Eval_Examples", "Quickcheck", - "Term_Of_Syntax" + "Term_Of_Syntax", + "Codegenerator", + "Codegenerator_Pretty", + "NormalForm" ]; -no_document use_thy "Codegenerator"; -no_document use_thy "Codegenerator_Pretty"; - use_thys [ "Numeral", "ImperativeQuicksort", @@ -57,38 +57,37 @@ "Meson_Test", "Code_Antiq", "Termination", - "Coherent" + "Coherent", + "Dense_Linear_Order_Ex", + "PresburgerEx", + "Reflected_Presburger", + "Reflection", + "ReflectionEx" ]; -setmp Proofterm.proofs 2 time_use_thy "Hilbert_Classical"; +setmp Proofterm.proofs 2 use_thy "Hilbert_Classical"; -time_use_thy "Dense_Linear_Order_Ex"; -time_use_thy "PresburgerEx"; -time_use_thy "Reflected_Presburger"; -use_thys ["Reflection", "ReflectionEx"]; +use_thy "SVC_Oracle"; -time_use_thy "SVC_Oracle"; - -(*check if user has SVC installed*) fun svc_enabled () = getenv "SVC_HOME" <> ""; fun if_svc_enabled f x = if svc_enabled () then f x else (); if_svc_enabled time_use_thy "svc_test"; + (* requires a proof-generating SAT solver (zChaff or MiniSAT) to be *) (* installed: *) -try time_use_thy "SAT_Examples"; +try use_thy "SAT_Examples"; (* requires zChaff (or some other reasonably fast SAT solver) to be *) (* installed: *) if getenv "ZCHAFF_HOME" <> "" then - time_use_thy "Sudoku" + use_thy "Sudoku" else (); time_use_thy "Refute_Examples"; time_use_thy "Quickcheck_Examples"; -no_document time_use_thy "NormalForm"; HTML.with_charset "utf-8" (no_document use_thys) ["Hebrew", "Chinese"];