src/ZF/Coind/Language.thy
author haftmann
Fri, 17 Jun 2005 16:12:49 +0200
changeset 16417 9bc16273c2d4
parent 12595 0480d02221b8
child 35762 af3ff2ba4c54
permissions -rw-r--r--
migrated theory headers to new format
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
     1
(*  Title:      ZF/Coind/Language.thy
915
6dae0daf57b7 New example by Jacob Frost, tidied by lcp
lcp
parents:
diff changeset
     2
    ID:         $Id$
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
     3
    Author:     Jacob Frost, Cambridge University Computer Laboratory
915
6dae0daf57b7 New example by Jacob Frost, tidied by lcp
lcp
parents:
diff changeset
     4
    Copyright   1995  University of Cambridge
6dae0daf57b7 New example by Jacob Frost, tidied by lcp
lcp
parents:
diff changeset
     5
*)
6dae0daf57b7 New example by Jacob Frost, tidied by lcp
lcp
parents:
diff changeset
     6
16417
9bc16273c2d4 migrated theory headers to new format
haftmann
parents: 12595
diff changeset
     7
theory Language imports Main begin
915
6dae0daf57b7 New example by Jacob Frost, tidied by lcp
lcp
parents:
diff changeset
     8
932
b7ab04253326 Got rid of exvarU and constU by
lcp
parents: 915
diff changeset
     9
consts
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
    10
  Const :: i                    (* Abstract type of constants *)
12595
0480d02221b8 conversion to Isar
paulson
parents: 11354
diff changeset
    11
  c_app :: "[i,i] => i"         (* Abstract constructor for fun application*)
0480d02221b8 conversion to Isar
paulson
parents: 11354
diff changeset
    12
915
6dae0daf57b7 New example by Jacob Frost, tidied by lcp
lcp
parents:
diff changeset
    13
12595
0480d02221b8 conversion to Isar
paulson
parents: 11354
diff changeset
    14
text{*these really can't be definitions without losing the abstraction*}
0480d02221b8 conversion to Isar
paulson
parents: 11354
diff changeset
    15
axioms
0480d02221b8 conversion to Isar
paulson
parents: 11354
diff changeset
    16
  constNEE:  "c \<in> Const ==> c \<noteq> 0"
0480d02221b8 conversion to Isar
paulson
parents: 11354
diff changeset
    17
  c_appI:    "[| c1 \<in> Const; c2 \<in> Const |] ==> c_app(c1,c2) \<in> Const"
915
6dae0daf57b7 New example by Jacob Frost, tidied by lcp
lcp
parents:
diff changeset
    18
6dae0daf57b7 New example by Jacob Frost, tidied by lcp
lcp
parents:
diff changeset
    19
6dae0daf57b7 New example by Jacob Frost, tidied by lcp
lcp
parents:
diff changeset
    20
consts
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
    21
  Exp   :: i                    (* Datatype of expressions *)
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
    22
  ExVar :: i                    (* Abstract type of variables *)
6112
5e4871c5136b datatype package improvements
paulson
parents: 2874
diff changeset
    23
5e4871c5136b datatype package improvements
paulson
parents: 2874
diff changeset
    24
datatype
12595
0480d02221b8 conversion to Isar
paulson
parents: 11354
diff changeset
    25
  "Exp" = e_const ("c \<in> Const")
0480d02221b8 conversion to Isar
paulson
parents: 11354
diff changeset
    26
        | e_var ("x \<in> ExVar")
0480d02221b8 conversion to Isar
paulson
parents: 11354
diff changeset
    27
        | e_fn ("x \<in> ExVar","e \<in> Exp")
0480d02221b8 conversion to Isar
paulson
parents: 11354
diff changeset
    28
        | e_fix ("x1 \<in> ExVar","x2 \<in> ExVar","e \<in> Exp")
0480d02221b8 conversion to Isar
paulson
parents: 11354
diff changeset
    29
        | e_app ("e1 \<in> Exp","e2 \<in> Exp")
915
6dae0daf57b7 New example by Jacob Frost, tidied by lcp
lcp
parents:
diff changeset
    30
6dae0daf57b7 New example by Jacob Frost, tidied by lcp
lcp
parents:
diff changeset
    31
end