use predefined preferences categories;
authorwenzelm
Sat, 25 Apr 2009 21:28:05 +0200
changeset 30982 7882a1268a48
parent 30981 6b9b93816b30
child 30984 e6349035148a
use predefined preferences categories;
src/HOL/Tools/atp_manager.ML
--- a/src/HOL/Tools/atp_manager.ML	Sat Apr 25 21:28:05 2009 +0200
+++ b/src/HOL/Tools/atp_manager.ML	Sat Apr 25 21:28:05 2009 +0200
@@ -51,15 +51,17 @@
 fun set_timeout time = CRITICAL (fn () => timeout := time);
 
 val _ =
-  ProofGeneralPgip.add_preference "Proof"
+  ProofGeneralPgip.add_preference Preferences.category_proof
     (Preferences.string_pref atps
       "ATP: provers" "Default automatic provers (separated by whitespace)");
 
-val _ = ProofGeneralPgip.add_preference "Proof"
+val _ =
+  ProofGeneralPgip.add_preference Preferences.category_proof
     (Preferences.int_pref max_atps
       "ATP: maximum number" "How many provers may run in parallel");
 
-val _ = ProofGeneralPgip.add_preference "Proof"
+val _ =
+  ProofGeneralPgip.add_preference Preferences.category_proof
     (Preferences.int_pref timeout
       "ATP: timeout" "ATPs will be interrupted after this time (in seconds)");