src/Sequents/ex/Modal/ROOT.ML
changeset 2832 dd5022d8a551
parent 2073 fb0655539d05
child 4446 097004a470fb
--- a/src/Sequents/ex/Modal/ROOT.ML	Thu Mar 20 18:27:23 1997 +0100
+++ b/src/Sequents/ex/Modal/ROOT.ML	Thu Mar 20 18:28:05 1997 +0100
@@ -4,25 +4,26 @@
     Copyright   1991  University of Cambridge
 *)
 
-Sequents_build_completed;    (*Cause examples to fail if Modal did*)
+Sequents_build_completed;    (*Cause examples to fail if Sequents 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/Modal/Tthms.ML";
+time_use "Modal/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/Modal/Tthms.ML";
-time_use "ex/Modal/S4thms.ML";
+time_use "Modal/Tthms.ML";
+time_use "Modal/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/Modal/Tthms.ML";
-time_use "ex/Modal/S4thms.ML";
-time_use "ex/Modal/S43thms.ML";
+time_use "Modal/Tthms.ML";
+time_use "Modal/S4thms.ML";
+time_use "Modal/S43thms.ML";
 
+cd "..";
 maketest"END: Root file for Modal examples";