src/Modal/ex/ROOT.ML
author clasohm
Tue, 24 Oct 1995 14:45:35 +0100
changeset 1294 1358dc040edb
parent 0 a5a9c433f639
child 1296 ae31bb7774a7
permissions -rw-r--r--
added calls of init_html and make_chart; added usage of qed

(*  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";