src/Modal/ex/ROOT.ML
changeset 0 a5a9c433f639
child 1296 ae31bb7774a7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/Modal/ex/ROOT.ML	Thu Sep 16 12:20:38 1993 +0200
@@ -0,0 +1,28 @@
+(*  Title: 	Modal/ex/ROOT
+    ID:         $Id$
+    Author: 	Martin Coen
+    Copyright   1991  University of Cambridge
+*)
+
+Modal_build_completed;    (*Cause examples to fail if Modal did*)
+
+proof_timing := true;
+
+writeln "\nTheorems of T\n";
+fun try s = (writeln s; prove_goal T.thy s (fn _=> [T_Prover.solve_tac 2]));
+time_use "ex/Tthms.ML";
+
+writeln "\nTheorems of S4\n";
+fun try s = (writeln s; prove_goal S4.thy s (fn _=> [S4_Prover.solve_tac 2]));
+time_use "ex/Tthms.ML";
+time_use "ex/S4thms.ML";
+
+writeln "\nTheorems of S43\n";
+fun try s = (writeln s;
+             prove_goal S43.thy s (fn _=> [S43_Prover.solve_tac 2 ORELSE 
+                                           S43_Prover.solve_tac 3]));
+time_use "ex/Tthms.ML";
+time_use "ex/S4thms.ML";
+time_use "ex/S43thms.ML";
+
+maketest"END: Root file for Modal examples";