src/CCL/ROOT.ML
author mengj
Fri, 18 Nov 2005 07:07:47 +0100
changeset 18197 082a2bd6f655
parent 17456 bcf7544875b2
child 20140 98acc6d0fab6
permissions -rw-r--r--
-- added combinator reduction axioms (typed and untyped) for HOL goals. -- combined make_nnf functions for HOL and FOL goals. -- hypothesis of goals are now also skolemized by inference.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9000
c20d58286a51 cleaned up;
wenzelm
parents: 6349
diff changeset
     1
(*  Title:      CCL/ROOT.ML
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     3
    Author:     Martin Coen, Cambridge University Computer Laboratory
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     4
    Copyright   1993  University of Cambridge
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
17456
bcf7544875b2 converted to Isar theory format;
wenzelm
parents: 9000
diff changeset
     6
Classical Computational Logic based on First-Order Logic.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     9
val banner = "Classical Computational Logic (in FOL)";
997
a58082b8066c Now sets eta_contract.
lcp
parents: 121
diff changeset
    10
writeln banner;
a58082b8066c Now sets eta_contract.
lcp
parents: 121
diff changeset
    11
a58082b8066c Now sets eta_contract.
lcp
parents: 121
diff changeset
    12
set eta_contract;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    13
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    14
(* CCL - a computational logic for an untyped functional language *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    15
(*                       with evaluation to weak head-normal form *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    16
121
d392174734e9 changed use_thy's parameter to exact theory name
clasohm
parents: 72
diff changeset
    17
use_thy "CCL";
d392174734e9 changed use_thy's parameter to exact theory name
clasohm
parents: 72
diff changeset
    18
use_thy "Hered";
d392174734e9 changed use_thy's parameter to exact theory name
clasohm
parents: 72
diff changeset
    19
use_thy "Wfd";
d392174734e9 changed use_thy's parameter to exact theory name
clasohm
parents: 72
diff changeset
    20
use_thy "Fix";