Nominal/Ex/Let.thy
author Christian Urban <urbanc@in.tum.de>
Wed, 04 Jan 2012 17:42:16 +0000
changeset 3105 1b0d230445ce
parent 2971 d629240f0f63
child 3071 11f6a561eb4b
child 3183 313e6f2cdd89
permissions -rw-r--r--
added an FCB for res (will not define evry function, but is a good datapoint)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2120
diff changeset
     1
theory Let
2454
9ffee4eb1ae1 renamed NewParser to Nominal2
Christian Urban <urbanc@in.tum.de>
parents: 2449
diff changeset
     2
imports "../Nominal2" 
1600
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     3
begin
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     4
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     5
atom_decl name
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     6
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     7
nominal_datatype trm =
2436
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2120
diff changeset
     8
  Var "name"
3885dc2669f9 cleaned up (almost completely) the examples
Christian Urban <urbanc@in.tum.de>
parents: 2120
diff changeset
     9
| App "trm" "trm"
2950
0911cb7bf696 changed bind to binds in specifications; bind will cause trouble with Monad_Syntax
Christian Urban <urbanc@in.tum.de>
parents: 2943
diff changeset
    10
| Lam x::"name" t::"trm"  binds  x in t
0911cb7bf696 changed bind to binds in specifications; bind will cause trouble with Monad_Syntax
Christian Urban <urbanc@in.tum.de>
parents: 2943
diff changeset
    11
| Let as::"assn" t::"trm"   binds "bn as" in t
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    12
and assn =
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    13
  ANil
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    14
| ACons "name" "trm" "assn"
1600
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    15
binder
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    16
  bn
e33e37fd4c7d More reorganization.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    17
where
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    18
  "bn ANil = []"
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    19
| "bn (ACons x t as) = (atom x) # (bn as)"
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    20
2924
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    21
print_theorems
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    22
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    23
thm alpha_trm_raw_alpha_assn_raw_alpha_bn_raw.intros
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    24
thm bn_raw.simps
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    25
thm permute_bn_raw.simps
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    26
thm trm_assn.perm_bn_alpha
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    27
thm trm_assn.permute_bn
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    28
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    29
thm trm_assn.fv_defs
2924
Christian Urban <urbanc@in.tum.de>
parents: 2923
diff changeset
    30
thm trm_assn.eq_iff 
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    31
thm trm_assn.bn_defs
2922
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
    32
thm trm_assn.bn_inducts
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    33
thm trm_assn.perm_simps
2956
7e1c309bf820 more on NBE
Christian Urban <urbanc@in.tum.de>
parents: 2950
diff changeset
    34
thm trm_assn.permute_bn
2492
5ac9a74d22fd post-processed eq_iff and supp threormes according to the fv-supp equality
Christian Urban <urbanc@in.tum.de>
parents: 2490
diff changeset
    35
thm trm_assn.induct
5ac9a74d22fd post-processed eq_iff and supp threormes according to the fv-supp equality
Christian Urban <urbanc@in.tum.de>
parents: 2490
diff changeset
    36
thm trm_assn.inducts
2490
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    37
thm trm_assn.distinct
320775fa47ca some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2454
diff changeset
    38
thm trm_assn.supp
2493
2e174807c891 added postprocessed fresh-lemmas for constructors
Christian Urban <urbanc@in.tum.de>
parents: 2492
diff changeset
    39
thm trm_assn.fresh
2617
e44551d067e6 properly exported strong exhaust theorem; cleaned up some examples
Christian Urban <urbanc@in.tum.de>
parents: 2562
diff changeset
    40
thm trm_assn.exhaust
e44551d067e6 properly exported strong exhaust theorem; cleaned up some examples
Christian Urban <urbanc@in.tum.de>
parents: 2562
diff changeset
    41
thm trm_assn.strong_exhaust
2931
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
    42
thm trm_assn.perm_bn_simps
2494
11133eb76f61 added Foo1 to explore a contrived example
Christian Urban <urbanc@in.tum.de>
parents: 2493
diff changeset
    43
2931
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
    44
lemma alpha_bn_inducts_raw[consumes 1]:
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    45
  "\<lbrakk>alpha_bn_raw a b; P3 ANil_raw ANil_raw;
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    46
 \<And>trm_raw trm_rawa assn_raw assn_rawa name namea.
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    47
    \<lbrakk>alpha_trm_raw trm_raw trm_rawa; alpha_bn_raw assn_raw assn_rawa;
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    48
     P3 assn_raw assn_rawa\<rbrakk>
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    49
    \<Longrightarrow> P3 (ACons_raw name trm_raw assn_raw)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    50
        (ACons_raw namea trm_rawa assn_rawa)\<rbrakk> \<Longrightarrow> P3 a b"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    51
  by (erule alpha_trm_raw_alpha_assn_raw_alpha_bn_raw.inducts(3)[of _ _ "\<lambda>x y. True" _ "\<lambda>x y. True", simplified]) auto
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    52
2931
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
    53
lemmas alpha_bn_inducts[consumes 1] = alpha_bn_inducts_raw[quot_lifted]
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    54
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    55
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    56
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    57
lemma alpha_bn_refl: "alpha_bn x x"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    58
  by (induct x rule: trm_assn.inducts(2))
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    59
     (rule TrueI, auto simp add: trm_assn.eq_iff)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    60
lemma alpha_bn_sym: "alpha_bn x y \<Longrightarrow> alpha_bn y x"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    61
  sorry
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    62
lemma alpha_bn_trans: "alpha_bn x y \<Longrightarrow> alpha_bn y z \<Longrightarrow> alpha_bn x z"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    63
  sorry
2922
a27215ab674e some experiments
Christian Urban <urbanc@in.tum.de>
parents: 2921
diff changeset
    64
2923
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    65
lemma bn_inj[rule_format]:
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    66
  assumes a: "alpha_bn x y"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    67
  shows "bn x = bn y \<longrightarrow> x = y"
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    68
  by (rule alpha_bn_inducts[OF a]) (simp_all add: trm_assn.bn_defs)
6d46f7ea1661 Prove bn injectivity and experiment more with Let
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2922
diff changeset
    69
2931
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
    70
lemma bn_inj2:
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
    71
  assumes a: "alpha_bn x y"
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
    72
  shows "\<And>q r. (q \<bullet> bn x) = (r \<bullet> bn y) \<Longrightarrow> permute_bn q x = permute_bn r y"
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
    73
using a
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
    74
apply(induct rule: alpha_bn_inducts)
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
    75
apply(simp add: trm_assn.perm_bn_simps)
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
    76
apply(simp add: trm_assn.perm_bn_simps)
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
    77
apply(simp add: trm_assn.bn_defs)
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
    78
apply(simp add: atom_eqvt)
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
    79
done
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
    80
2932
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    81
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    82
function
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    83
  apply_assn :: "(trm \<Rightarrow> nat) \<Rightarrow> assn \<Rightarrow> nat"
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    84
where
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    85
  "apply_assn f ANil = (0 :: nat)"
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    86
| "apply_assn f (ACons x t as) = max (f t) (apply_assn f as)"
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    87
apply(case_tac x)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    88
apply(case_tac b rule: trm_assn.exhaust(2))
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    89
apply(simp_all)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    90
apply(blast)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    91
done
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    92
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    93
termination by lexicographic_order
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    94
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    95
lemma [eqvt]:
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    96
  "p \<bullet> (apply_assn f a) = apply_assn (p \<bullet> f) (p \<bullet> a)"
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    97
  apply(induct f a rule: apply_assn.induct)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    98
  apply simp_all
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
    99
  apply(perm_simp)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   100
  apply rule
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   101
  apply(perm_simp)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   102
  apply simp
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   103
  done
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   104
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   105
lemma alpha_bn_apply_assn:
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   106
  assumes "alpha_bn as bs"
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   107
  shows "apply_assn f as = apply_assn f bs"
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   108
  using assms
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   109
  apply (induct rule: alpha_bn_inducts)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   110
  apply simp_all
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   111
  done
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   112
2931
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   113
nominal_primrec
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   114
    height_trm :: "trm \<Rightarrow> nat"
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   115
where
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   116
  "height_trm (Var x) = 1"
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   117
| "height_trm (App l r) = max (height_trm l) (height_trm r)"
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   118
| "height_trm (Lam v b) = 1 + (height_trm b)"
2932
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   119
| "height_trm (Let as b) = max (apply_assn height_trm as) (height_trm b)"
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   120
  apply (simp only: eqvt_def height_trm_graph_def)
2931
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   121
  apply (rule, perm_simp, rule, rule TrueI)
2932
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   122
  apply (case_tac x rule: trm_assn.exhaust(1))
2931
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   123
  apply (auto)[4]
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   124
  apply (drule_tac x="assn" in meta_spec)
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   125
  apply (drule_tac x="trm" in meta_spec)
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   126
  apply (simp add: alpha_bn_refl)
2932
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   127
  apply(simp_all)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   128
  apply (erule_tac c="()" in Abs_lst1_fcb2)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   129
  apply (simp_all add: pure_fresh fresh_star_def eqvt_at_def)[4]
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   130
  apply (erule conjE)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   131
  apply (subst alpha_bn_apply_assn)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   132
  apply assumption
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   133
  apply (rule arg_cong) back
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   134
  apply (erule_tac c="()" in Abs_lst_fcb2)
2931
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   135
  apply (simp_all add: pure_fresh fresh_star_def)[3]
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   136
  apply (simp_all add: eqvt_at_def)[2]
2932
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   137
  done
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   138
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   139
definition "height_assn = apply_assn height_trm"
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   140
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   141
function
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   142
  apply_assn2 :: "(trm \<Rightarrow> trm) \<Rightarrow> assn \<Rightarrow> assn"
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   143
where
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   144
  "apply_assn2 f ANil = ANil"
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   145
| "apply_assn2 f (ACons x t as) = ACons x (f t) (apply_assn2 f as)"
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   146
  apply(case_tac x)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   147
  apply(case_tac b rule: trm_assn.exhaust(2))
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   148
  apply(simp_all)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   149
  apply(blast)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   150
  done
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   151
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   152
termination by lexicographic_order
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   153
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   154
lemma [eqvt]:
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   155
  "p \<bullet> (apply_assn2 f a) = apply_assn2 (p \<bullet> f) (p \<bullet> a)"
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   156
  apply(induct f a rule: apply_assn2.induct)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   157
  apply simp_all
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   158
  apply(perm_simp)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   159
  apply rule
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   160
  done
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   161
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   162
lemma bn_apply_assn2: "bn (apply_assn2 f as) = bn as"
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   163
  apply (induct as rule: trm_assn.inducts(2))
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   164
  apply (rule TrueI)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   165
  apply (simp_all add: trm_assn.bn_defs)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   166
  done
2931
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   167
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   168
nominal_primrec
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   169
    subst  :: "name \<Rightarrow> trm \<Rightarrow> trm \<Rightarrow> trm"
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   170
where
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   171
  "subst s t (Var x) = (if (s = x) then t else (Var x))"
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   172
| "subst s t (App l r) = App (subst s t l) (subst s t r)"
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   173
| "atom v \<sharp> (s, t) \<Longrightarrow> subst s t (Lam v b) = Lam v (subst s t b)"
2932
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   174
| "set (bn as) \<sharp>* (s, t) \<Longrightarrow> subst s t (Let as b) = Let (apply_assn2 (subst s t) as) (subst s t b)"
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   175
  apply (simp only: eqvt_def subst_graph_def)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   176
  apply (rule, perm_simp, rule)
2931
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   177
  apply (rule TrueI)
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   178
  apply (case_tac x)
2932
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   179
  apply (rule_tac y="c" and c="(a,b)" in trm_assn.strong_exhaust(1))
2931
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   180
  apply (auto simp add: fresh_star_def)[3]
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   181
  apply (drule_tac x="assn" in meta_spec)
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   182
  apply (simp add: Abs1_eq_iff alpha_bn_refl)
2938
Christian Urban <urbanc@in.tum.de>
parents: 2932
diff changeset
   183
  apply simp_all[7]
Christian Urban <urbanc@in.tum.de>
parents: 2932
diff changeset
   184
  prefer 2
Christian Urban <urbanc@in.tum.de>
parents: 2932
diff changeset
   185
  apply(simp)
Christian Urban <urbanc@in.tum.de>
parents: 2932
diff changeset
   186
  apply(simp)
Christian Urban <urbanc@in.tum.de>
parents: 2932
diff changeset
   187
  apply(erule conjE)+
2932
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   188
  apply (erule_tac c="(sa, ta)" in Abs_lst1_fcb2)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   189
  apply (simp add: Abs_fresh_iff)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   190
  apply (simp add: fresh_star_def)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   191
  apply (simp_all add: fresh_star_Pair_elim perm_supp_eq eqvt_at_def)[2]
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   192
  apply (simp add: bn_apply_assn2)
2938
Christian Urban <urbanc@in.tum.de>
parents: 2932
diff changeset
   193
  apply(erule conjE)+
Christian Urban <urbanc@in.tum.de>
parents: 2932
diff changeset
   194
  apply(rule conjI)
2931
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   195
  apply (erule_tac c="(sa, ta)" in Abs_lst_fcb2)
2932
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   196
  apply (simp add: fresh_star_def Abs_fresh_iff)
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   197
  apply assumption+
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   198
  apply (simp_all add: fresh_star_Pair_elim perm_supp_eq eqvt_at_def trm_assn.fv_bn_eqvt)[2]
2931
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   199
  apply (erule alpha_bn_inducts)
2932
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   200
  apply simp_all
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   201
  done
2931
aaef9dec5e1d side-by-side tests of lets with single assignment; deep-binder case works if the recursion is avoided using an auxiliary function
Christian Urban <urbanc@in.tum.de>
parents: 2926
diff changeset
   202
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   203
lemma lets_bla:
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   204
  "x \<noteq> z \<Longrightarrow> y \<noteq> z \<Longrightarrow> x \<noteq> y \<Longrightarrow>(Let (ACons x (Var y) ANil) (Var x)) \<noteq> (Let (ACons x (Var z) ANil) (Var x))"
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   205
  by (simp add: trm_assn.eq_iff)
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   206
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   207
lemma lets_ok:
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   208
  "(Let (ACons x (Var y) ANil) (Var x)) = (Let (ACons y (Var y) ANil) (Var y))"
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   209
  apply (simp add: trm_assn.eq_iff Abs_eq_iff )
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   210
  apply (rule_tac x="(x \<leftrightarrow> y)" in exI)
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   211
  apply (simp_all add: alphas atom_eqvt supp_at_base fresh_star_def trm_assn.bn_defs trm_assn.supp)
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   212
  done
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   213
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   214
lemma lets_ok3:
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   215
  "x \<noteq> y \<Longrightarrow>
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   216
   (Let (ACons x (App (Var y) (Var x)) (ACons y (Var y) ANil)) (App (Var x) (Var y))) \<noteq>
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   217
   (Let (ACons y (App (Var x) (Var y)) (ACons x (Var x) ANil)) (App (Var x) (Var y)))"
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   218
  apply (simp add: trm_assn.eq_iff)
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   219
  done
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   220
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   221
lemma lets_not_ok1:
1685
721d92623c9d Lets finally abstract lists.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1658
diff changeset
   222
  "x \<noteq> y \<Longrightarrow>
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   223
   (Let (ACons x (Var x) (ACons y (Var y) ANil)) (App (Var x) (Var y))) \<noteq>
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   224
   (Let (ACons y (Var x) (ACons x (Var y) ANil)) (App (Var x) (Var y)))"
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   225
  apply (simp add: alphas trm_assn.eq_iff trm_assn.supp fresh_star_def atom_eqvt Abs_eq_iff trm_assn.bn_defs)
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   226
  done
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   227
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   228
lemma lets_nok:
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   229
  "x \<noteq> y \<Longrightarrow> x \<noteq> z \<Longrightarrow> z \<noteq> y \<Longrightarrow>
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   230
   (Let (ACons x (App (Var z) (Var z)) (ACons y (Var z) ANil)) (App (Var x) (Var y))) \<noteq>
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   231
   (Let (ACons y (Var z) (ACons x (App (Var z) (Var z)) ANil)) (App (Var x) (Var y)))"
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   232
  apply (simp add: alphas trm_assn.eq_iff fresh_star_def trm_assn.bn_defs Abs_eq_iff trm_assn.supp trm_assn.distinct)
1602
a7e60da429e2 Move Let properties to ExLet
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1600
diff changeset
   233
  done
2670
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   234
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   235
lemma
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   236
  fixes a b c :: name
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   237
  assumes x: "a \<noteq> c" and y: "b \<noteq> c"
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   238
  shows "\<exists>p.([atom a], Var c) \<approx>lst (op =) supp p ([atom b], Var c)"
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   239
  apply (rule_tac x="(a \<leftrightarrow> b)" in exI)
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   240
  apply (simp add: alphas trm_assn.supp supp_at_base x y fresh_star_def atom_eqvt)
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   241
  by (metis Rep_name_inverse atom_name_def flip_fresh_fresh fresh_atom fresh_perm x y)
3c493c951388 alpha_abs_let_stronger is not true in the same form
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2630
diff changeset
   242
2932
e8ab80062061 Did the proofs of height and subst for Let with list-like binders. Having apply_assns allows proving things by alpha_bn
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2931
diff changeset
   243
end