Nominal/Nominal2_FSet.thy
author Christian Urban <urbanc@in.tum.de>
Sat, 04 Sep 2010 06:23:31 +0800
changeset 2468 7b1470b55936
parent 2467 67b3933c3190
child 2471 894599a50af3
permissions -rw-r--r--
moved a proof to Abs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1534
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     1
theory Nominal2_FSet
2467
67b3933c3190 got rid of Nominal_Atoms (folded into Nominal2_Base)
Christian Urban <urbanc@in.tum.de>
parents: 2466
diff changeset
     2
imports "../Nominal-General/Nominal2_Base"
67b3933c3190 got rid of Nominal_Atoms (folded into Nominal2_Base)
Christian Urban <urbanc@in.tum.de>
parents: 2466
diff changeset
     3
        "../Nominal-General/Nominal2_Supp"
2302
c6db12ddb60c intermediate state
Christian Urban <urbanc@in.tum.de>
parents: 2178
diff changeset
     4
        "../Nominal-General/Nominal2_Eqvt" 
1806
Christian Urban <urbanc@in.tum.de>
parents: 1782
diff changeset
     5
        FSet 
1534
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     6
begin
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     7
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     8
lemma permute_rsp_fset[quot_respect]:
2447
76be909eaf04 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2340
diff changeset
     9
  shows "(op = ===> list_eq ===> list_eq) permute permute"
76be909eaf04 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2340
diff changeset
    10
  apply(simp)
76be909eaf04 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2340
diff changeset
    11
  apply(clarify)
2468
7b1470b55936 moved a proof to Abs
Christian Urban <urbanc@in.tum.de>
parents: 2467
diff changeset
    12
  apply(rule_tac p="-x" in permute_boolE)
7b1470b55936 moved a proof to Abs
Christian Urban <urbanc@in.tum.de>
parents: 2467
diff changeset
    13
  apply(perm_simp add: permute_minus_cancel)
2447
76be909eaf04 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2340
diff changeset
    14
  apply(simp)
1534
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    15
  done
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    16
2004
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    17
instantiation fset :: (pt) pt
1534
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    18
begin
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    19
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    20
quotient_definition
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    21
  "permute_fset :: perm \<Rightarrow> 'a fset \<Rightarrow> 'a fset"
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    22
is
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    23
  "permute :: perm \<Rightarrow> 'a list \<Rightarrow> 'a list"
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    24
1815
4135198bbb8a moved equivariance of map into Nominal2_Eqvt file
Christian Urban <urbanc@in.tum.de>
parents: 1806
diff changeset
    25
instance 
4135198bbb8a moved equivariance of map into Nominal2_Eqvt file
Christian Urban <urbanc@in.tum.de>
parents: 1806
diff changeset
    26
proof
1782
27fec5fcfe67 simplify instance proof
Brian Huffman <brianh@cs.pdx.edu>
parents: 1774
diff changeset
    27
  fix x :: "'a fset" and p q :: "perm"
27fec5fcfe67 simplify instance proof
Brian Huffman <brianh@cs.pdx.edu>
parents: 1774
diff changeset
    28
  show "0 \<bullet> x = x"
27fec5fcfe67 simplify instance proof
Brian Huffman <brianh@cs.pdx.edu>
parents: 1774
diff changeset
    29
    by (lifting permute_zero [where 'a="'a list"])
27fec5fcfe67 simplify instance proof
Brian Huffman <brianh@cs.pdx.edu>
parents: 1774
diff changeset
    30
  show "(p + q) \<bullet> x = p \<bullet> q \<bullet> x"
27fec5fcfe67 simplify instance proof
Brian Huffman <brianh@cs.pdx.edu>
parents: 1774
diff changeset
    31
    by (lifting permute_plus [where 'a="'a list"])
27fec5fcfe67 simplify instance proof
Brian Huffman <brianh@cs.pdx.edu>
parents: 1774
diff changeset
    32
qed
1534
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    33
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    34
end
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    35
2466
47c840599a6b cleaned a bit various thy-files in Nominal-General
Christian Urban <urbanc@in.tum.de>
parents: 2447
diff changeset
    36
lemma permute_fset[simp, eqvt]:
2004
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    37
  fixes S::"('a::pt) fset"
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    38
  shows "(p \<bullet> {||}) = ({||} ::('a::pt) fset)"
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    39
  and "p \<bullet> finsert x S = finsert (p \<bullet> x) (p \<bullet> S)"
1534
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    40
  by (lifting permute_list.simps)
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    41
1815
4135198bbb8a moved equivariance of map into Nominal2_Eqvt file
Christian Urban <urbanc@in.tum.de>
parents: 1806
diff changeset
    42
lemma fmap_eqvt[eqvt]: 
2004
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    43
  shows "p \<bullet> (fmap f S) = fmap (p \<bullet> f) (p \<bullet> S)"
1534
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    44
  by (lifting map_eqvt)
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    45
2340
b1549d391ea7 removed an "eqvt"-warning
Christian Urban <urbanc@in.tum.de>
parents: 2302
diff changeset
    46
lemma fset_to_set_eqvt [eqvt]: 
2004
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    47
  shows "p \<bullet> (fset_to_set S) = fset_to_set (p \<bullet> S)"
1534
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    48
  by (lifting set_eqvt)
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    49
2004
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    50
lemma fin_fset_to_set[simp]:
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    51
  shows "finite (fset_to_set S)"
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    52
  by (induct S) (simp_all)
1542
63e327e95abd Showed the instance: fset::(at) fs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1534
diff changeset
    53
1534
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    54
lemma supp_fset_to_set:
2004
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    55
  shows "supp (fset_to_set S) = supp S"
2340
b1549d391ea7 removed an "eqvt"-warning
Christian Urban <urbanc@in.tum.de>
parents: 2302
diff changeset
    56
  unfolding supp_def
b1549d391ea7 removed an "eqvt"-warning
Christian Urban <urbanc@in.tum.de>
parents: 2302
diff changeset
    57
  by (perm_simp) (simp add: fset_cong)
1534
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    58
2447
76be909eaf04 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2340
diff changeset
    59
lemma supp_fempty:
76be909eaf04 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2340
diff changeset
    60
  shows "supp {||} = {}"
76be909eaf04 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2340
diff changeset
    61
  unfolding supp_def
76be909eaf04 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2340
diff changeset
    62
  by simp
76be909eaf04 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2340
diff changeset
    63
2004
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    64
lemma supp_finsert:
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    65
  fixes x::"'a::fs"
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    66
  shows "supp (finsert x S) = supp x \<union> supp S"
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    67
  apply(subst supp_fset_to_set[symmetric])
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    68
  apply(simp add: supp_fset_to_set)
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    69
  apply(simp add: supp_of_fin_insert)
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    70
  apply(simp add: supp_fset_to_set)
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    71
  done
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    72
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    73
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    74
instance fset :: (fs) fs
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    75
  apply (default)
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    76
  apply (induct_tac x rule: fset_induct)
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    77
  apply (simp add: supp_fempty)
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    78
  apply (simp add: supp_finsert)
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    79
  apply (simp add: finite_supp)
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    80
  done
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    81
1534
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    82
lemma atom_fmap_cong:
2004
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    83
  shows "fmap atom x = fmap atom y \<longleftrightarrow> x = y"
1534
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    84
  apply(rule inj_fmap_eq_iff)
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    85
  apply(simp add: inj_on_def)
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    86
  done
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    87
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    88
lemma supp_fmap_atom:
2004
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    89
  shows "supp (fmap atom S) = supp S"
1818
37480540c1af made everything to compile
Christian Urban <urbanc@in.tum.de>
parents: 1815
diff changeset
    90
  unfolding supp_def
2004
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    91
  apply(perm_simp)
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
    92
  apply(simp add: atom_fmap_cong)
1568
2311a9fc4624 Strong induction for Type Schemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1542
diff changeset
    93
  done
2311a9fc4624 Strong induction for Type Schemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1542
diff changeset
    94
2311a9fc4624 Strong induction for Type Schemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1542
diff changeset
    95
lemma supp_at_fset:
1973
fc5ce7f22b74 use the more general type-class at_base
Christian Urban <urbanc@in.tum.de>
parents: 1933
diff changeset
    96
  fixes S::"('a::at_base) fset"
fc5ce7f22b74 use the more general type-class at_base
Christian Urban <urbanc@in.tum.de>
parents: 1933
diff changeset
    97
  shows "supp S = fset_to_set (fmap atom S)"
fc5ce7f22b74 use the more general type-class at_base
Christian Urban <urbanc@in.tum.de>
parents: 1933
diff changeset
    98
  apply (induct S)
1568
2311a9fc4624 Strong induction for Type Schemes.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1542
diff changeset
    99
  apply (simp add: supp_fempty)
2004
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
   100
  apply (simp add: supp_finsert)
1542
63e327e95abd Showed the instance: fset::(at) fs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1534
diff changeset
   101
  apply (simp add: supp_at_base)
63e327e95abd Showed the instance: fset::(at) fs
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 1534
diff changeset
   102
  done
1534
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   103
2178
e559513143e9 reversing the direction of fresh_star
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2004
diff changeset
   104
lemma fresh_star_atom:
2447
76be909eaf04 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2340
diff changeset
   105
  fixes a::"'a::at_base"
76be909eaf04 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2340
diff changeset
   106
  shows "fset_to_set S \<sharp>* a \<Longrightarrow> atom a \<sharp> fset_to_set S"
76be909eaf04 slight cleaning
Christian Urban <urbanc@in.tum.de>
parents: 2340
diff changeset
   107
  apply (induct S)
2178
e559513143e9 reversing the direction of fresh_star
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2004
diff changeset
   108
  apply (simp add: fresh_set_empty)
e559513143e9 reversing the direction of fresh_star
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2004
diff changeset
   109
  apply simp
e559513143e9 reversing the direction of fresh_star
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2004
diff changeset
   110
  apply (unfold fresh_def)
2466
47c840599a6b cleaned a bit various thy-files in Nominal-General
Christian Urban <urbanc@in.tum.de>
parents: 2447
diff changeset
   111
  apply (simp add: supp_of_fin_insert)
2178
e559513143e9 reversing the direction of fresh_star
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2004
diff changeset
   112
  apply (rule conjI)
e559513143e9 reversing the direction of fresh_star
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2004
diff changeset
   113
  apply (unfold fresh_star_def)
e559513143e9 reversing the direction of fresh_star
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2004
diff changeset
   114
  apply simp
e559513143e9 reversing the direction of fresh_star
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2004
diff changeset
   115
  apply (unfold fresh_def)
e559513143e9 reversing the direction of fresh_star
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2004
diff changeset
   116
  apply (simp add: supp_at_base supp_atom)
e559513143e9 reversing the direction of fresh_star
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2004
diff changeset
   117
  apply clarify
e559513143e9 reversing the direction of fresh_star
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2004
diff changeset
   118
  apply auto
e559513143e9 reversing the direction of fresh_star
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 2004
diff changeset
   119
  done
2004
b96e8cf86891 generalised the fs-instance lemma (not just fsets of atoms are finitely supported, but also fsets of finitely supported elements)
Christian Urban <urbanc@in.tum.de>
parents: 1973
diff changeset
   120
1534
984ea1299cd7 The nominal infrastructure for fset. 'fs' missing, but not needed so far.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   121
end