Nominal/Test.thy
author Christian Urban <urbanc@in.tum.de>
Mon, 08 Mar 2010 20:18:27 +0100
changeset 1368 c0cb30581f58
parent 1367 9bbf56cdeb88
child 1378 5c6c950812b1
permissions -rw-r--r--
added a test-file for compatibility
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
theory Test
1335
c3dfd4193b42 Experiments with proving weird transp
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1331
diff changeset
     2
imports "Parser" "../Attic/Prove"
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
begin
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
1320
447666754176 Another problem with permutations in alpha and possibly also in fv
Christian Urban <urbanc@in.tum.de>
parents: 1319
diff changeset
     5
text {* weirdo example from Peter Sewell's bestiary *}
447666754176 Another problem with permutations in alpha and possibly also in fv
Christian Urban <urbanc@in.tum.de>
parents: 1319
diff changeset
     6
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
     7
nominal_datatype weird =
1320
447666754176 Another problem with permutations in alpha and possibly also in fv
Christian Urban <urbanc@in.tum.de>
parents: 1319
diff changeset
     8
  WBind x::"name" y::"name" p1::"weird" p2::"weird" p3::"weird"
447666754176 Another problem with permutations in alpha and possibly also in fv
Christian Urban <urbanc@in.tum.de>
parents: 1319
diff changeset
     9
    bind x in p1, bind x in p2, bind y in p2, bind y in p3
1321
bfd9af005e23 preliinary test about alpha-weirdo
Christian Urban <urbanc@in.tum.de>
parents: 1320
diff changeset
    10
| WV "name"
bfd9af005e23 preliinary test about alpha-weirdo
Christian Urban <urbanc@in.tum.de>
parents: 1320
diff changeset
    11
| WP "weird" "weird"
1320
447666754176 Another problem with permutations in alpha and possibly also in fv
Christian Urban <urbanc@in.tum.de>
parents: 1319
diff changeset
    12
1321
bfd9af005e23 preliinary test about alpha-weirdo
Christian Urban <urbanc@in.tum.de>
parents: 1320
diff changeset
    13
thm permute_weird_raw.simps[no_vars]
1320
447666754176 Another problem with permutations in alpha and possibly also in fv
Christian Urban <urbanc@in.tum.de>
parents: 1319
diff changeset
    14
thm alpha_weird_raw.intros[no_vars]
447666754176 Another problem with permutations in alpha and possibly also in fv
Christian Urban <urbanc@in.tum.de>
parents: 1319
diff changeset
    15
thm fv_weird_raw.simps[no_vars]
447666754176 Another problem with permutations in alpha and possibly also in fv
Christian Urban <urbanc@in.tum.de>
parents: 1319
diff changeset
    16
1321
bfd9af005e23 preliinary test about alpha-weirdo
Christian Urban <urbanc@in.tum.de>
parents: 1320
diff changeset
    17
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    18
text {* example 1 *}
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    19
1316
0577afdb1732 Porting from Lift to Parser; until defining the Quotient type.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1309
diff changeset
    20
(* ML {* set show_hyps *} *)
0577afdb1732 Porting from Lift to Parser; until defining the Quotient type.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1309
diff changeset
    21
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    22
nominal_datatype lam =
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    23
  VAR "name"
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    24
| APP "lam" "lam"
1287
8557af71724e slight simplification of the raw-decl generation
Christian Urban <urbanc@in.tum.de>
parents: 1285
diff changeset
    25
| LET bp::"bp" t::"lam"   bind "bi bp" in t
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    26
and bp = 
1287
8557af71724e slight simplification of the raw-decl generation
Christian Urban <urbanc@in.tum.de>
parents: 1285
diff changeset
    27
  BP "name" "lam" 
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    28
binder
1295
0ecc775e5fce Link calls to Raw permutations, FV definition and alpha_definition into the parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1290
diff changeset
    29
  bi::"bp \<Rightarrow> atom set"
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    30
where
1295
0ecc775e5fce Link calls to Raw permutations, FV definition and alpha_definition into the parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1290
diff changeset
    31
  "bi (BP x t) = {atom x}"
1228
c179ad9d2446 declarartion of the raw datatype already works; raw binding functions throw an exception about mutual recursive types
Christian Urban <urbanc@in.tum.de>
parents: 1223
diff changeset
    32
1367
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
    33
(* compat should be
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
    34
compat (BP x t) pi (BP x' t')
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
    35
  \<equiv> alpha_trm t t' \<and> pi o x = x'
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
    36
*)
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
    37
1228
c179ad9d2446 declarartion of the raw datatype already works; raw binding functions throw an exception about mutual recursive types
Christian Urban <urbanc@in.tum.de>
parents: 1223
diff changeset
    38
typ lam_raw
c179ad9d2446 declarartion of the raw datatype already works; raw binding functions throw an exception about mutual recursive types
Christian Urban <urbanc@in.tum.de>
parents: 1223
diff changeset
    39
term VAR_raw
1283
6a133abb7633 generated the "binding list" from the input; at the moment it is only printed out as tracing; does not yet include the "bind itself binders"
Christian Urban <urbanc@in.tum.de>
parents: 1272
diff changeset
    40
term APP_raw
6a133abb7633 generated the "binding list" from the input; at the moment it is only printed out as tracing; does not yet include the "bind itself binders"
Christian Urban <urbanc@in.tum.de>
parents: 1272
diff changeset
    41
term LET_raw
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    42
term Test.BP_raw
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    43
thm bi_raw.simps
1295
0ecc775e5fce Link calls to Raw permutations, FV definition and alpha_definition into the parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1290
diff changeset
    44
thm permute_lam_raw_permute_bp_raw.simps
1319
d793ce9cd06f potential problem with the phd-example, where two permutations are generated, but only one is used
Christian Urban <urbanc@in.tum.de>
parents: 1313
diff changeset
    45
thm alpha_lam_raw_alpha_bp_raw.intros[no_vars]
d793ce9cd06f potential problem with the phd-example, where two permutations are generated, but only one is used
Christian Urban <urbanc@in.tum.de>
parents: 1313
diff changeset
    46
thm fv_lam_raw_fv_bp_raw.simps[no_vars]
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
    47
(*thm lam_bp_induct
1340
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
    48
thm lam_bp_perm
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
    49
thm lam_bp_fv
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
    50
thm lam_bp_bn
1342
2b98012307f7 Lift distinct.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1341
diff changeset
    51
thm lam_bp_inject
2b98012307f7 Lift distinct.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1341
diff changeset
    52
thm lam_bp_distinct*)
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    53
1261
853abc14c5c6 added IsaMakefile...but so far included only a test for the parser
Christian Urban <urbanc@in.tum.de>
parents: 1258
diff changeset
    54
text {* example 2 *}
853abc14c5c6 added IsaMakefile...but so far included only a test for the parser
Christian Urban <urbanc@in.tum.de>
parents: 1258
diff changeset
    55
1265
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
    56
nominal_datatype trm' =
961
0f88e04eb486 Variable takes a 'name'.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 954
diff changeset
    57
  Var "name"
1265
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
    58
| App "trm'" "trm'"
1272
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
    59
| Lam x::"name" t::"trm'"          bind x in t 
1265
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
    60
| Let p::"pat'" "trm'" t::"trm'"   bind "f p" in t
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
    61
and pat' =
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    62
  PN
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    63
| PS "name"
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    64
| PD "name" "name"
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    65
binder
1299
cbcd4997dac5 most tests work - the ones that do not I commented out
Christian Urban <urbanc@in.tum.de>
parents: 1298
diff changeset
    66
  f::"pat' \<Rightarrow> atom set"
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    67
where 
978
b44592adf235 Improper interface for datatype and function packages and proper interface lateron.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 973
diff changeset
    68
  "f PN = {}"
1299
cbcd4997dac5 most tests work - the ones that do not I commented out
Christian Urban <urbanc@in.tum.de>
parents: 1298
diff changeset
    69
| "f (PS x) = {atom x}"
cbcd4997dac5 most tests work - the ones that do not I commented out
Christian Urban <urbanc@in.tum.de>
parents: 1298
diff changeset
    70
| "f (PD x y) = {atom x, atom y}"
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    71
1367
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
    72
(* compat should be
1368
c0cb30581f58 added a test-file for compatibility
Christian Urban <urbanc@in.tum.de>
parents: 1367
diff changeset
    73
compat (PN) pi (PN) == True
c0cb30581f58 added a test-file for compatibility
Christian Urban <urbanc@in.tum.de>
parents: 1367
diff changeset
    74
compat (PS x) pi (PS x') == pi o x = x'
c0cb30581f58 added a test-file for compatibility
Christian Urban <urbanc@in.tum.de>
parents: 1367
diff changeset
    75
compat (PD p1 p2) pi (PD p1' p2') == compat p1 pi p1' & compat p2 pi p2'
1367
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
    76
*)
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
    77
1320
447666754176 Another problem with permutations in alpha and possibly also in fv
Christian Urban <urbanc@in.tum.de>
parents: 1319
diff changeset
    78
447666754176 Another problem with permutations in alpha and possibly also in fv
Christian Urban <urbanc@in.tum.de>
parents: 1319
diff changeset
    79
thm alpha_trm'_raw_alpha_pat'_raw.intros[no_vars]
447666754176 Another problem with permutations in alpha and possibly also in fv
Christian Urban <urbanc@in.tum.de>
parents: 1319
diff changeset
    80
thm fv_trm'_raw_fv_pat'_raw.simps[no_vars]
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    81
thm f_raw.simps
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
    82
(*thm trm'_pat'_induct
1340
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
    83
thm trm'_pat'_perm
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
    84
thm trm'_pat'_fv
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
    85
thm trm'_pat'_bn
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
    86
thm trm'_pat'_inject*)
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    87
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    88
nominal_datatype trm0 =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    89
  Var0 "name"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    90
| App0 "trm0" "trm0"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    91
| Lam0 x::"name" t::"trm0"          bind x in t 
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    92
| Let0 p::"pat0" "trm0" t::"trm0"   bind "f0 p" in t
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    93
and pat0 =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    94
  PN0
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    95
| PS0 "name"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
    96
| PD0 "pat0" "pat0"
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    97
binder
1299
cbcd4997dac5 most tests work - the ones that do not I commented out
Christian Urban <urbanc@in.tum.de>
parents: 1298
diff changeset
    98
  f0::"pat0 \<Rightarrow> atom set"
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    99
where 
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   100
  "f0 PN0 = {}"
1299
cbcd4997dac5 most tests work - the ones that do not I commented out
Christian Urban <urbanc@in.tum.de>
parents: 1298
diff changeset
   101
| "f0 (PS0 x) = {atom x}"
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   102
| "f0 (PD0 p1 p2) = (f0 p1) \<union> (f0 p2)"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   103
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   104
thm f0_raw.simps
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   105
(*thm trm0_pat0_induct
1340
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   106
thm trm0_pat0_perm
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   107
thm trm0_pat0_fv
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   108
thm trm0_pat0_bn*)
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   109
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   110
text {* example type schemes *}
1285
e3ac56d3b7af added example from my phd
Christian Urban <urbanc@in.tum.de>
parents: 1284
diff changeset
   111
1304
dc65319809cc Change type schemes to name set.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1302
diff changeset
   112
(* does not work yet
1302
d3101a5b9c4d Length fix for nested recursions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1299
diff changeset
   113
nominal_datatype t =
d3101a5b9c4d Length fix for nested recursions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1299
diff changeset
   114
  Var "name"
1265
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   115
| Fun "t" "t"
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   116
1302
d3101a5b9c4d Length fix for nested recursions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1299
diff changeset
   117
nominal_datatype tyS =
1299
cbcd4997dac5 most tests work - the ones that do not I commented out
Christian Urban <urbanc@in.tum.de>
parents: 1298
diff changeset
   118
  All xs::"name list" ty::"t_raw" bind xs in ty
cbcd4997dac5 most tests work - the ones that do not I commented out
Christian Urban <urbanc@in.tum.de>
parents: 1298
diff changeset
   119
*)
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   120
1316
0577afdb1732 Porting from Lift to Parser; until defining the Quotient type.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1309
diff changeset
   121
1299
cbcd4997dac5 most tests work - the ones that do not I commented out
Christian Urban <urbanc@in.tum.de>
parents: 1298
diff changeset
   122
nominal_datatype t = 
cbcd4997dac5 most tests work - the ones that do not I commented out
Christian Urban <urbanc@in.tum.de>
parents: 1298
diff changeset
   123
  Var "name" 
cbcd4997dac5 most tests work - the ones that do not I commented out
Christian Urban <urbanc@in.tum.de>
parents: 1298
diff changeset
   124
| Fun "t" "t"
cbcd4997dac5 most tests work - the ones that do not I commented out
Christian Urban <urbanc@in.tum.de>
parents: 1298
diff changeset
   125
and  tyS = 
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   126
  All xs::"name set" ty::"t" bind xs in ty
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   127
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   128
(* example 1 from Terms.thy *)
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   129
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   130
nominal_datatype trm1 =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   131
  Vr1 "name"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   132
| Ap1 "trm1" "trm1"
1290
a7e7ffb7f362 modified for new binding format - hope it is the intended one
Christian Urban <urbanc@in.tum.de>
parents: 1287
diff changeset
   133
| Lm1 x::"name" t::"trm1"       bind x in t 
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   134
| Lt1 p::"bp1" "trm1" t::"trm1" bind "bv1 p" in t 
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   135
and bp1 =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   136
  BUnit1
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   137
| BV1 "name"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   138
| BP1 "bp1" "bp1"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   139
binder
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   140
  bv1
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   141
where
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   142
  "bv1 (BUnit1) = {}"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   143
| "bv1 (BV1 x) = {atom x}"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   144
| "bv1 (BP1 bp1 bp2) = (bv1 bp1) \<union> (bv1 bp2)"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   145
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   146
thm bv1_raw.simps
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   147
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   148
(* example 2 from Terms.thy *)
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   149
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   150
nominal_datatype trm2 =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   151
  Vr2 "name"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   152
| Ap2 "trm2" "trm2"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   153
| Lm2 x::"name" t::"trm2"       bind x in t
1365
5682b7fa5e24 deleted comments about "weird"
Christian Urban <urbanc@in.tum.de>
parents: 1361
diff changeset
   154
| Lt2 r::"assign" t::"trm2"    bind "bv2 r" in t
5682b7fa5e24 deleted comments about "weird"
Christian Urban <urbanc@in.tum.de>
parents: 1361
diff changeset
   155
and assign = 
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   156
  As "name" "trm2"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   157
binder
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   158
  bv2
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   159
where
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   160
  "bv2 (As x t) = {atom x}"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   161
1367
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   162
(* compat should be
1368
c0cb30581f58 added a test-file for compatibility
Christian Urban <urbanc@in.tum.de>
parents: 1367
diff changeset
   163
compat (As x t) pi (As x' t') == pi o x = x' & alpha t t'
1367
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   164
*)
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   165
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   166
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   167
thm fv_trm2_raw_fv_assign_raw.simps[no_vars]
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   168
thm alpha_trm2_raw_alpha_assign_raw.intros[no_vars]
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   169
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   170
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   171
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   172
text {* example 3 from Terms.thy *}
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   173
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   174
nominal_datatype trm3 =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   175
  Vr3 "name"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   176
| Ap3 "trm3" "trm3"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   177
| Lm3 x::"name" t::"trm3"        bind x in t
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   178
| Lt3 r::"rassigns3" t::"trm3"   bind "bv3 r" in t
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   179
and rassigns3 =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   180
  ANil
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   181
| ACons "name" "trm3" "rassigns3"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   182
binder
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   183
  bv3
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   184
where
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   185
  "bv3 ANil = {}"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   186
| "bv3 (ACons x t as) = {atom x} \<union> (bv3 as)"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   187
1367
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   188
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   189
(* compat should be
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   190
compat (ANil) pi (PNil) \<equiv> TRue
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   191
compat (ACons x t ts) pi (ACons x' t' ts') \<equiv> pi o x = x' \<and> alpha t t' \<and> compat ts pi ts'
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   192
*)
9bbf56cdeb88 added compat definitions to some examples
Christian Urban <urbanc@in.tum.de>
parents: 1365
diff changeset
   193
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   194
(* example 4 from Terms.thy *)
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   195
1326
4bc9278a808d weird eqvt
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1322
diff changeset
   196
(* fv_eqvt does not work, we need to repaire defined permute functions
4bc9278a808d weird eqvt
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1322
diff changeset
   197
   defined fv and defined alpha... *)
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   198
nominal_datatype trm4 =
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   199
  Vr4 "name"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   200
| Ap4 "trm4" "trm4 list"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   201
| Lm4 x::"name" t::"trm4"  bind x in t
1302
d3101a5b9c4d Length fix for nested recursions.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1299
diff changeset
   202
1319
d793ce9cd06f potential problem with the phd-example, where two permutations are generated, but only one is used
Christian Urban <urbanc@in.tum.de>
parents: 1313
diff changeset
   203
thm alpha_trm4_raw_alpha_trm4_raw_list.intros[no_vars]
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   204
thm fv_trm4_raw_fv_trm4_raw_list.simps[no_vars]
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   205
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   206
(* example 5 from Terms.thy *)
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   207
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   208
nominal_datatype trm5 =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   209
  Vr5 "name"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   210
| Ap5 "trm5" "trm5"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   211
| Lt5 l::"lts" t::"trm5"  bind "bv5 l" in t
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   212
and lts =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   213
  Lnil
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   214
| Lcons "name" "trm5" "lts"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   215
binder
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   216
  bv5
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   217
where
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   218
  "bv5 Lnil = {}"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   219
| "bv5 (Lcons n t ltl) = {atom n} \<union> (bv5 ltl)"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   220
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   221
(* example 6 from Terms.thy *)
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   222
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   223
(* BV is not respectful, needs to fail*)
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   224
nominal_datatype trm6 =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   225
  Vr6 "name"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   226
| Lm6 x::"name" t::"trm6"         bind x in t
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   227
| Lt6 left::"trm6" right::"trm6"  bind "bv6 left" in right
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   228
binder
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   229
  bv6
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   230
where
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   231
  "bv6 (Vr6 n) = {}"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   232
| "bv6 (Lm6 n t) = {atom n} \<union> bv6 t"
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   233
| "bv6 (Lt6 l r) = bv6 l \<union> bv6 r"
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   234
(* example 7 from Terms.thy *)
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   235
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   236
(* BV is not respectful, needs to fail*)
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   237
nominal_datatype trm7 =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   238
  Vr7 "name"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   239
| Lm7 l::"name" r::"trm7"   bind l in r
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   240
| Lt7 l::"trm7" r::"trm7"   bind "bv7 l" in r
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   241
binder 
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   242
  bv7 
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   243
where
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   244
  "bv7 (Vr7 n) = {atom n}"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   245
| "bv7 (Lm7 n t) = bv7 t - {atom n}"
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   246
| "bv7 (Lt7 l r) = bv7 l \<union> bv7 r"
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   247
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   248
(* example 8 from Terms.thy *)
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   249
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   250
nominal_datatype foo8 =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   251
  Foo0 "name"
1283
6a133abb7633 generated the "binding list" from the input; at the moment it is only printed out as tracing; does not yet include the "bind itself binders"
Christian Urban <urbanc@in.tum.de>
parents: 1272
diff changeset
   252
| Foo1 b::"bar8" f::"foo8" bind "bv8 b" in f --"check fo error if this is called foo"
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   253
and bar8 =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   254
  Bar0 "name"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   255
| Bar1 "name" s::"name" b::"bar8" bind s in b
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   256
binder 
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   257
  bv8
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   258
where
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   259
  "bv8 (Bar0 x) = {}"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   260
| "bv8 (Bar1 v x b) = {atom v}"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   261
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   262
(* example 9 from Terms.thy *)
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   263
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   264
(* BV is not respectful, needs to fail*)
1251
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   265
nominal_datatype lam9 =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   266
  Var9 "name"
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   267
| Lam9 n::"name" l::"lam9" bind n in l
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   268
and bla9 =
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   269
  Bla9 f::"lam9" s::"lam9" bind "bv9 f" in s
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   270
binder
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   271
  bv9
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   272
where
11b8798dea5d parsing and definition of raw datatype and bv-function work (not very beautiful)
Christian Urban <urbanc@in.tum.de>
parents: 1232
diff changeset
   273
  "bv9 (Var9 x) = {}"
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   274
| "bv9 (Lam9 x b) = {atom x}"
954
c009d2535896 very rough example file for how nominal2 specification can be parsed
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   275
1285
e3ac56d3b7af added example from my phd
Christian Urban <urbanc@in.tum.de>
parents: 1284
diff changeset
   276
(* example from my PHD *)
e3ac56d3b7af added example from my phd
Christian Urban <urbanc@in.tum.de>
parents: 1284
diff changeset
   277
e3ac56d3b7af added example from my phd
Christian Urban <urbanc@in.tum.de>
parents: 1284
diff changeset
   278
atom_decl coname
1272
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   279
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   280
nominal_datatype phd =
1290
a7e7ffb7f362 modified for new binding format - hope it is the intended one
Christian Urban <urbanc@in.tum.de>
parents: 1287
diff changeset
   281
   Ax "name" "coname"
a7e7ffb7f362 modified for new binding format - hope it is the intended one
Christian Urban <urbanc@in.tum.de>
parents: 1287
diff changeset
   282
|  Cut n::"coname" t1::"phd" c::"coname" t2::"phd"              bind n in t1, bind c in t2
a7e7ffb7f362 modified for new binding format - hope it is the intended one
Christian Urban <urbanc@in.tum.de>
parents: 1287
diff changeset
   283
|  AndR c1::"coname" t1::"phd" c2::"coname" t2::"phd" "coname"  bind c1 in t1, bind c2 in t2
a7e7ffb7f362 modified for new binding format - hope it is the intended one
Christian Urban <urbanc@in.tum.de>
parents: 1287
diff changeset
   284
|  AndL1 n::"name" t::"phd" "name"                              bind n in t
a7e7ffb7f362 modified for new binding format - hope it is the intended one
Christian Urban <urbanc@in.tum.de>
parents: 1287
diff changeset
   285
|  AndL2 n::"name" t::"phd" "name"                              bind n in t
a7e7ffb7f362 modified for new binding format - hope it is the intended one
Christian Urban <urbanc@in.tum.de>
parents: 1287
diff changeset
   286
|  ImpL c::"coname" t1::"phd" n::"name" t2::"phd" "name"        bind c in t1, bind n in t2
1319
d793ce9cd06f potential problem with the phd-example, where two permutations are generated, but only one is used
Christian Urban <urbanc@in.tum.de>
parents: 1313
diff changeset
   287
|  ImpR c::"coname" n::"name" t::"phd" "coname"                 bind n in t, bind c in t
d793ce9cd06f potential problem with the phd-example, where two permutations are generated, but only one is used
Christian Urban <urbanc@in.tum.de>
parents: 1313
diff changeset
   288
d793ce9cd06f potential problem with the phd-example, where two permutations are generated, but only one is used
Christian Urban <urbanc@in.tum.de>
parents: 1313
diff changeset
   289
thm alpha_phd_raw.intros[no_vars]
d793ce9cd06f potential problem with the phd-example, where two permutations are generated, but only one is used
Christian Urban <urbanc@in.tum.de>
parents: 1313
diff changeset
   290
thm fv_phd_raw.simps[no_vars]
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   291
1285
e3ac56d3b7af added example from my phd
Christian Urban <urbanc@in.tum.de>
parents: 1284
diff changeset
   292
e3ac56d3b7af added example from my phd
Christian Urban <urbanc@in.tum.de>
parents: 1284
diff changeset
   293
(* example form Leroy 96 about modules; OTT *)
1284
212f3ab40cc2 streamlined parser
Christian Urban <urbanc@in.tum.de>
parents: 1283
diff changeset
   294
1272
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   295
nominal_datatype mexp =
1296
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   296
  Acc "path"
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   297
| Stru "body"
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   298
| Funct x::"name" "sexp" m::"mexp"    bind x in m
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   299
| FApp "mexp" "path"
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   300
| Ascr "mexp" "sexp"
1272
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   301
and body =
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   302
  Empty
1296
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   303
| Seq c::defn d::"body"     bind "cbinders c" in d
1272
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   304
and defn =  
1296
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   305
  Type "name" "tyty"
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   306
| Dty "name"
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   307
| DStru "name" "mexp"
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   308
| Val "name" "trmtrm"
1272
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   309
and sexp =
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   310
  Sig sbody
1296
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   311
| SFunc "name" "sexp" "sexp"
1272
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   312
and sbody = 
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   313
  SEmpty
1296
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   314
| SSeq C::spec D::sbody    bind "Cbinders C" in D
1272
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   315
and spec =
1296
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   316
  Type1 "name" 
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   317
| Type2 "name" "tyty"
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   318
| SStru "name" "sexp"
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   319
| SVal "name" "tyty"
1272
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   320
and tyty =
1296
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   321
  Tyref1 "name"
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   322
| Tyref2 "path" "tyty"
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   323
| Fun "tyty" "tyty"
1272
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   324
and path =
1296
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   325
  Sref1 "name"
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   326
| Sref2 "path" "name"
1272
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   327
and trmtrm =
1296
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   328
  Tref1 "name"
790940e90db2 some tuning
Christian Urban <urbanc@in.tum.de>
parents: 1295
diff changeset
   329
| Tref2 "path" "name"
1340
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   330
| Lam' v::"name" "tyty" M::"trmtrm"  bind v in M
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   331
| App' "trmtrm" "trmtrm"
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   332
| Let' "body" "trmtrm"
1272
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   333
binder
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   334
    cbinders :: "defn \<Rightarrow> atom set"
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   335
and Cbinders :: "spec \<Rightarrow> atom set"
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   336
where
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   337
  "cbinders (Type t T) = {atom t}"
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   338
| "cbinders (Dty t) = {atom t}"
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   339
| "cbinders (DStru x s) = {atom x}"
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   340
| "cbinders (Val v M) = {atom v}"
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   341
| "Cbinders (Type1 t) = {atom t}"
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   342
| "Cbinders (Type2 t T) = {atom t}"
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   343
| "Cbinders (SStru x S) = {atom x}"
6d140b2c751f added ott-example about Leroy96
Christian Urban <urbanc@in.tum.de>
parents: 1265
diff changeset
   344
| "Cbinders (SVal v T) = {atom v}"  
1265
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   345
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   346
(* core haskell *)
1340
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   347
print_theorems
1265
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   348
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   349
atom_decl var
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   350
atom_decl tvar
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   351
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   352
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   353
(* there are types, coercion types and regular types *)
1351
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   354
nominal_datatype tkind = 
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   355
  KStar
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   356
| KFun "tkind" "tkind"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   357
and ckind =
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   358
  CKEq "ty" "ty" 
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   359
and ty =
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   360
  TVar "tvar"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   361
| TC "string"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   362
| TApp "ty" "ty"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   363
| TFun "string" "ty list"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   364
| TAll tv::"tvar" "tkind" T::"ty"  bind tv in T
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   365
| TEq "ty" "ty" "ty"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   366
and co =
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   367
  CC "string"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   368
| CApp "co" "co"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   369
| CFun "string" "co list"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   370
| CAll tv::"tvar" "ckind" C::"co"  bind tv in C
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   371
| CEq "co" "co" "co"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   372
| CSym "co"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   373
| CCir "co" "co"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   374
| CLeft "co"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   375
| CRight "co"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   376
| CSim "co"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   377
| CRightc "co"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   378
| CLeftc "co"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   379
| CCoe "co" "co"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   380
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   381
1265
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   382
typedecl ty --"hack since ty is not yet defined"
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   383
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   384
abbreviation 
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   385
  "atoms A \<equiv> atom ` A"
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   386
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   387
nominal_datatype trm =
1351
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   388
  Var "var"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   389
| C "string"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   390
| LAM tv::"tvar" "kind" t::"trm"   bind tv in t 
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   391
| APP "trm" "ty"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   392
| Lam v::"var" "ty" t::"trm"       bind v in t
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   393
| App "trm" "trm"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   394
| Let x::"var" "ty" "trm" t::"trm" bind x in t
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   395
| Case "trm" "assoc list"
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   396
| Cast "trm" "ty"                   --"ty is supposed to be a coercion type only"
1265
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   397
and assoc = 
1351
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   398
  A p::"pat" t::"trm" bind "bv p" in t 
1265
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   399
and pat = 
1351
cffc5d78ab7f more proofs in Abs and work on Core Haskell
Christian Urban <urbanc@in.tum.de>
parents: 1332
diff changeset
   400
  K "string" "(tvar \<times> kind) list" "(var \<times> ty) list"
1265
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   401
binder
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   402
 bv :: "pat \<Rightarrow> atom set"
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   403
where
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   404
 "bv (K s ts vs) = (atoms (set (map fst ts))) \<union> (atoms (set (map fst vs)))"
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   405
1368
c0cb30581f58 added a test-file for compatibility
Christian Urban <urbanc@in.tum.de>
parents: 1367
diff changeset
   406
(*
c0cb30581f58 added a test-file for compatibility
Christian Urban <urbanc@in.tum.de>
parents: 1367
diff changeset
   407
compat (K s ts vs) pi (K s' ts' vs') ==
c0cb30581f58 added a test-file for compatibility
Christian Urban <urbanc@in.tum.de>
parents: 1367
diff changeset
   408
  s = s' & 
c0cb30581f58 added a test-file for compatibility
Christian Urban <urbanc@in.tum.de>
parents: 1367
diff changeset
   409
c0cb30581f58 added a test-file for compatibility
Christian Urban <urbanc@in.tum.de>
parents: 1367
diff changeset
   410
*)
c0cb30581f58 added a test-file for compatibility
Christian Urban <urbanc@in.tum.de>
parents: 1367
diff changeset
   411
c0cb30581f58 added a test-file for compatibility
Christian Urban <urbanc@in.tum.de>
parents: 1367
diff changeset
   412
1312
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   413
(*thm bv_raw.simps*)
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   414
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   415
(* example 3 from Peter Sewell's bestiary *)
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   416
nominal_datatype exp =
1340
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   417
  VarP "name"
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   418
| AppP "exp" "exp"
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   419
| LamP x::"name" e::"exp" bind x in e
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   420
| LetP x::"name" p::"pat" e1::"exp" e2::"exp" bind x in e2, bind "bp p" in e1
1312
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   421
and pat =
1319
d793ce9cd06f potential problem with the phd-example, where two permutations are generated, but only one is used
Christian Urban <urbanc@in.tum.de>
parents: 1313
diff changeset
   422
  PVar "name"
1312
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   423
| PUnit
1319
d793ce9cd06f potential problem with the phd-example, where two permutations are generated, but only one is used
Christian Urban <urbanc@in.tum.de>
parents: 1313
diff changeset
   424
| PPair "pat" "pat"
1312
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   425
binder
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   426
  bp :: "pat \<Rightarrow> atom set"
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   427
where
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   428
  "bp (PVar x) = {atom x}"
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   429
| "bp (PUnit) = {}"
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   430
| "bp (PPair p1 p2) = bp p1 \<union> bp p2"
1361
1e811e3424f3 With restricted_nominal=1, exp7 and exp8 work. Not sure about proving bn_rsp there.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1355
diff changeset
   431
thm alpha_exp_raw_alpha_pat_raw.intros
1312
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   432
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   433
(* example 6 from Peter Sewell's bestiary *)
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   434
nominal_datatype exp6 =
1312
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   435
  EVar name
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   436
| EPair exp6 exp6
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   437
| ELetRec x::name p::pat6 e1::exp6 e2::exp6 bind x in e1, bind x in e2, bind "bp6 p" in e1
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   438
and pat6 =
1340
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   439
  PVar' name
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   440
| PUnit'
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   441
| PPair' pat6 pat6
1312
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   442
binder
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   443
  bp6 :: "pat6 \<Rightarrow> atom set"
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   444
where
1340
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   445
  "bp6 (PVar' x) = {atom x}"
f201eb6acafc Lift BV,FV,Permutations and injection :).
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1338
diff changeset
   446
| "bp6 (PUnit') = {}"
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   447
| "bp6 (PPair' p1 p2) = bp6 p1 \<union> bp6 p2"
1361
1e811e3424f3 With restricted_nominal=1, exp7 and exp8 work. Not sure about proving bn_rsp there.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1355
diff changeset
   448
thm alpha_exp6_raw_alpha_pat6_raw.intros
1312
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   449
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   450
(* example 7 from Peter Sewell's bestiary *)
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   451
nominal_datatype exp7 =
1312
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   452
  EVar name
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   453
| EUnit
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   454
| EPair exp7 exp7
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   455
| ELetRec l::lrbs e::exp7 bind "b7s l" in e, bind "b7s l" in l
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   456
and lrb =
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   457
  Assign name exp7
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   458
and lrbs =
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   459
  Single lrb
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   460
| More lrb lrbs
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   461
binder
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   462
  b7 :: "lrb \<Rightarrow> atom set" and
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   463
  b7s :: "lrbs \<Rightarrow> atom set"
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   464
where
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   465
  "b7 (Assign x e) = {atom x}"
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   466
| "b7s (Single a) = b7 a"
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   467
| "b7s (More a as) = (b7 a) \<union> (b7s as)"
1361
1e811e3424f3 With restricted_nominal=1, exp7 and exp8 work. Not sure about proving bn_rsp there.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1355
diff changeset
   468
thm alpha_exp7_raw_alpha_lrb_raw_alpha_lrbs_raw.intros
1312
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   469
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   470
(* example 8 from Peter Sewell's bestiary *)
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   471
nominal_datatype exp8 =
1312
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   472
  EVar name
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   473
| EUnit
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   474
| EPair exp8 exp8
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   475
| ELetRec l::lrbs8 e::exp8 bind "b_lrbs8 l" in e, bind "b_lrbs8 l" in l
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   476
and fnclause =
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   477
  K x::name p::pat8 e::exp8 bind "b_pat p" in e
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   478
and fnclauses =
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   479
  S fnclause
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   480
| ORs fnclause fnclauses
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   481
and lrb8 =
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   482
  Clause fnclauses
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   483
and lrbs8 =
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   484
  Single lrb8
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   485
| More lrb8 lrbs8
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   486
and pat8 =
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   487
  PVar name
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   488
| PUnit
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   489
| PPair pat8 pat8
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   490
binder
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   491
  b_lrbs8 :: "lrbs8 \<Rightarrow> atom set" and
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   492
  b_pat :: "pat8 \<Rightarrow> atom set" and
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   493
  b_fnclauses :: "fnclauses \<Rightarrow> atom set" and
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   494
  b_fnclause :: "fnclause \<Rightarrow> atom set" and
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   495
  b_lrb8 :: "lrb8 \<Rightarrow> atom set"
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   496
where
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   497
  "b_lrbs8 (Single l) = b_lrb8 l"
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   498
| "b_lrbs8 (More l ls) = b_lrb8 l \<union> b_lrbs8 ls"
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   499
| "b_pat (PVar x) = {atom x}"
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   500
| "b_pat (PUnit) = {}"
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   501
| "b_pat (PPair p1 p2) = b_pat p1 \<union> b_pat p2"
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   502
| "b_fnclauses (S fc) = (b_fnclause fc)"
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   503
| "b_fnclauses (ORs fc fcs) = (b_fnclause fc) \<union> (b_fnclauses fcs)"
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   504
| "b_lrb8 (Clause fcs) = (b_fnclauses fcs)"
1341
c25f797c7e6e Added lifting of pseudo-injectivity, commented out the code again and enabled the weird examples.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1340
diff changeset
   505
| "b_fnclause (K x pat exp8) = {atom x}"
1361
1e811e3424f3 With restricted_nominal=1, exp7 and exp8 work. Not sure about proving bn_rsp there.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1355
diff changeset
   506
thm alpha_exp8_raw_alpha_fnclause_raw_alpha_fnclauses_raw_alpha_lrb8_raw_alpha_lrbs8_raw_alpha_pat8_raw.intros
1312
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   507
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   508
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   509
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   510
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   511
(* example 9 from Peter Sewell's bestiary *)
b0eae8c93314 added some more examples from Peter Sewell's bestiary
Christian Urban <urbanc@in.tum.de>
parents: 1304
diff changeset
   512
(* run out of steam at the moment *)
1265
fc8f5897b00a first attempt to make sense out of the core-haskell definition
Christian Urban <urbanc@in.tum.de>
parents: 1261
diff changeset
   513
961
0f88e04eb486 Variable takes a 'name'.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 954
diff changeset
   514
end
1223
160343d86a6f "raw"-ified the term-constructors and types given in the specification
Christian Urban <urbanc@in.tum.de>
parents: 1194
diff changeset
   515
160343d86a6f "raw"-ified the term-constructors and types given in the specification
Christian Urban <urbanc@in.tum.de>
parents: 1194
diff changeset
   516
1228
c179ad9d2446 declarartion of the raw datatype already works; raw binding functions throw an exception about mutual recursive types
Christian Urban <urbanc@in.tum.de>
parents: 1223
diff changeset
   517