src/CCL/ROOT.ML
author lcp
Thu, 12 Jan 1995 03:00:58 +0100
changeset 850 a744f9749885
parent 121 d392174734e9
child 997 a58082b8066c
permissions -rw-r--r--
Added constants Ord_alt, ++, **
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     1
(*  Title:      CCL/ROOT
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
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
Adds Classical Computational Logic to a database containing First-Order Logic.
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)";
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    10
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    11
(* Higher-Order Set Theory Extension to FOL *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    12
(*      used as basis for CCL               *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    13
121
d392174734e9 changed use_thy's parameter to exact theory name
clasohm
parents: 72
diff changeset
    14
use_thy "Set";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    15
use     "subset.ML";
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    16
use     "equalities.ML";
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    17
use     "mono.ML";
121
d392174734e9 changed use_thy's parameter to exact theory name
clasohm
parents: 72
diff changeset
    18
use_thy "Lfp";
d392174734e9 changed use_thy's parameter to exact theory name
clasohm
parents: 72
diff changeset
    19
use_thy "Gfp";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    20
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    21
(* CCL - a computational logic for an untyped functional language *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    22
(*                       with evaluation to weak head-normal form *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    23
121
d392174734e9 changed use_thy's parameter to exact theory name
clasohm
parents: 72
diff changeset
    24
use_thy "CCL";
d392174734e9 changed use_thy's parameter to exact theory name
clasohm
parents: 72
diff changeset
    25
use_thy "Term";
d392174734e9 changed use_thy's parameter to exact theory name
clasohm
parents: 72
diff changeset
    26
use_thy "Type";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    27
use     "coinduction.ML";
121
d392174734e9 changed use_thy's parameter to exact theory name
clasohm
parents: 72
diff changeset
    28
use_thy "Hered";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    29
121
d392174734e9 changed use_thy's parameter to exact theory name
clasohm
parents: 72
diff changeset
    30
use_thy "Trancl";
d392174734e9 changed use_thy's parameter to exact theory name
clasohm
parents: 72
diff changeset
    31
use_thy "Wfd";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    32
use     "genrec.ML";
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    33
use     "typecheck.ML";
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    34
use     "eval.ML";
121
d392174734e9 changed use_thy's parameter to exact theory name
clasohm
parents: 72
diff changeset
    35
use_thy "Fix";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    36
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    37
val CCL_build_completed = ();   (*indicate successful build*)