src/FOLP/ex/ROOT.ML
author clasohm
Thu, 16 Sep 1993 12:20:38 +0200
changeset 0 a5a9c433f639
child 121 d392174734e9
permissions -rw-r--r--
Initial revision

(*  Title: 	FOLP/ex/ROOT
    ID:         $Id$
    Author: 	Lawrence C Paulson, Cambridge University Computer Laboratory
    Copyright   1992  University of Cambridge

Executes all examples for First-Order Logic. 
*)

writeln"Root file for FOLP examples";

proof_timing := true;

time_use     "ex/intro.ML";
time_use_thy "ex/nat";
time_use     "ex/foundn.ML";

writeln"\n** Intuitionistic examples **\n";
time_use     "ex/int.ML";

val thy = IFOLP.thy  and  tac = Int.fast_tac 1;
time_use     "ex/prop.ML";
time_use     "ex/quant.ML";
commit();

writeln"\n** Classical examples **\n";
time_use     "ex/cla.ML";
time_use_thy "ex/if";

val thy = FOLP.thy  and  tac = Cla.fast_tac FOLP_cs 1;
time_use     "ex/prop.ML";
time_use     "ex/quant.ML";

maketest"END: Root file for FOLP examples";