src/HOL/Typedef.thy
author haftmann
Tue, 26 Feb 2008 20:38:16 +0100
changeset 26151 4a9b8f15ce7f
parent 25535 4975b7529a14
child 26802 9eede540a5e8
permissions -rw-r--r--
class itself works around a problem with class interpretation in class finite
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/Typedef.thy
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, TU Munich
11743
wenzelm
parents: 11659
diff changeset
     4
*)
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
     5
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11770
diff changeset
     6
header {* HOL type definitions *}
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
     7
15131
c69542757a4d New theory header syntax.
nipkow
parents: 13421
diff changeset
     8
theory Typedef
15140
322485b816ac import -> imports
nipkow
parents: 15131
diff changeset
     9
imports Set
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 19459
diff changeset
    10
uses
9ffea7a8b31c added typecopy_package
haftmann
parents: 19459
diff changeset
    11
  ("Tools/typedef_package.ML")
9ffea7a8b31c added typecopy_package
haftmann
parents: 19459
diff changeset
    12
  ("Tools/typecopy_package.ML")
9ffea7a8b31c added typecopy_package
haftmann
parents: 19459
diff changeset
    13
  ("Tools/typedef_codegen.ML")
15131
c69542757a4d New theory header syntax.
nipkow
parents: 13421
diff changeset
    14
begin
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    15
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    16
ML {*
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    17
structure HOL = struct val thy = theory "HOL" end;
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    18
*}  -- "belongs to theory HOL"
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    19
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    20
locale type_definition =
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    21
  fixes Rep and Abs and A
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    22
  assumes Rep: "Rep x \<in> A"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    23
    and Rep_inverse: "Abs (Rep x) = x"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    24
    and Abs_inverse: "y \<in> A ==> Rep (Abs y) = y"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    25
  -- {* This will be axiomatized for each typedef! *}
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    26
begin
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    27
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    28
lemma Rep_inject:
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    29
  "(Rep x = Rep y) = (x = y)"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    30
proof
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    31
  assume "Rep x = Rep y"
23710
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    32
  then have "Abs (Rep x) = Abs (Rep y)" by (simp only:)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    33
  moreover have "Abs (Rep x) = x" by (rule Rep_inverse)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    34
  moreover have "Abs (Rep y) = y" by (rule Rep_inverse)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    35
  ultimately show "x = y" by simp
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    36
next
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    37
  assume "x = y"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    38
  thus "Rep x = Rep y" by (simp only:)
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    39
qed
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    40
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    41
lemma Abs_inject:
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    42
  assumes x: "x \<in> A" and y: "y \<in> A"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    43
  shows "(Abs x = Abs y) = (x = y)"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    44
proof
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    45
  assume "Abs x = Abs y"
23710
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    46
  then have "Rep (Abs x) = Rep (Abs y)" by (simp only:)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    47
  moreover from x have "Rep (Abs x) = x" by (rule Abs_inverse)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    48
  moreover from y have "Rep (Abs y) = y" by (rule Abs_inverse)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    49
  ultimately show "x = y" by simp
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    50
next
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    51
  assume "x = y"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    52
  thus "Abs x = Abs y" by (simp only:)
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    53
qed
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    54
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    55
lemma Rep_cases [cases set]:
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    56
  assumes y: "y \<in> A"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    57
    and hyp: "!!x. y = Rep x ==> P"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    58
  shows P
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    59
proof (rule hyp)
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    60
  from y have "Rep (Abs y) = y" by (rule Abs_inverse)
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    61
  thus "y = Rep (Abs y)" ..
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    62
qed
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    63
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    64
lemma Abs_cases [cases type]:
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    65
  assumes r: "!!y. x = Abs y ==> y \<in> A ==> P"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    66
  shows P
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    67
proof (rule r)
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    68
  have "Abs (Rep x) = x" by (rule Rep_inverse)
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    69
  thus "x = Abs (Rep x)" ..
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    70
  show "Rep x \<in> A" by (rule Rep)
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    71
qed
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    72
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    73
lemma Rep_induct [induct set]:
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    74
  assumes y: "y \<in> A"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    75
    and hyp: "!!x. P (Rep x)"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    76
  shows "P y"
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    77
proof -
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    78
  have "P (Rep (Abs y))" by (rule hyp)
23710
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    79
  moreover from y have "Rep (Abs y) = y" by (rule Abs_inverse)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    80
  ultimately show "P y" by simp
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    81
qed
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    82
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    83
lemma Abs_induct [induct type]:
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    84
  assumes r: "!!y. y \<in> A ==> P (Abs y)"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    85
  shows "P x"
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    86
proof -
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    87
  have "Rep x \<in> A" by (rule Rep)
23710
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    88
  then have "P (Abs (Rep x))" by (rule r)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    89
  moreover have "Abs (Rep x) = x" by (rule Rep_inverse)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    90
  ultimately show "P x" by simp
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    91
qed
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    92
23433
c2c10abd2a1e added lemmas
nipkow
parents: 23247
diff changeset
    93
lemma Rep_range:
24269
4b2aac7669b3 remove redundant assumption from Rep_range lemma
huffman
parents: 23710
diff changeset
    94
  shows "range Rep = A"
4b2aac7669b3 remove redundant assumption from Rep_range lemma
huffman
parents: 23710
diff changeset
    95
proof
4b2aac7669b3 remove redundant assumption from Rep_range lemma
huffman
parents: 23710
diff changeset
    96
  show "range Rep <= A" using Rep by (auto simp add: image_def)
4b2aac7669b3 remove redundant assumption from Rep_range lemma
huffman
parents: 23710
diff changeset
    97
  show "A <= range Rep"
23433
c2c10abd2a1e added lemmas
nipkow
parents: 23247
diff changeset
    98
  proof
c2c10abd2a1e added lemmas
nipkow
parents: 23247
diff changeset
    99
    fix x assume "x : A"
24269
4b2aac7669b3 remove redundant assumption from Rep_range lemma
huffman
parents: 23710
diff changeset
   100
    hence "x = Rep (Abs x)" by (rule Abs_inverse [symmetric])
4b2aac7669b3 remove redundant assumption from Rep_range lemma
huffman
parents: 23710
diff changeset
   101
    thus "x : range Rep" by (rule range_eqI)
23433
c2c10abd2a1e added lemmas
nipkow
parents: 23247
diff changeset
   102
  qed
c2c10abd2a1e added lemmas
nipkow
parents: 23247
diff changeset
   103
qed
c2c10abd2a1e added lemmas
nipkow
parents: 23247
diff changeset
   104
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
   105
end
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
   106
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
   107
use "Tools/typedef_package.ML"
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 19459
diff changeset
   108
use "Tools/typecopy_package.ML"
19459
2041d472fc17 seperated typedef codegen from main code
haftmann
parents: 16417
diff changeset
   109
use "Tools/typedef_codegen.ML"
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
   110
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 19459
diff changeset
   111
setup {*
25535
4975b7529a14 interpretation of typedefs
haftmann
parents: 24269
diff changeset
   112
  TypedefPackage.setup
4975b7529a14 interpretation of typedefs
haftmann
parents: 24269
diff changeset
   113
  #> TypecopyPackage.setup
20426
9ffea7a8b31c added typecopy_package
haftmann
parents: 19459
diff changeset
   114
  #> TypedefCodegen.setup
9ffea7a8b31c added typecopy_package
haftmann
parents: 19459
diff changeset
   115
*}
15260
a12e999a0113 Added setup for code generator.
berghofe
parents: 15140
diff changeset
   116
26151
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   117
text {* This class is just a workaround for classes without parameters;
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   118
  it shall disappear as soon as possible. *}
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   119
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   120
class itself = type + 
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   121
  fixes itself :: "'a itself"
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   122
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   123
setup {*
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   124
let fun add_itself tyco thy =
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   125
  let
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   126
    val vs = Name.names Name.context "'a"
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   127
      (replicate (Sign.arity_number thy tyco) @{sort type});
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   128
    val ty = Type (tyco, map TFree vs);
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   129
    val lhs = Const (@{const_name itself}, Term.itselfT ty);
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   130
    val rhs = Logic.mk_type ty;
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   131
    val eq = HOLogic.mk_Trueprop (HOLogic.mk_eq (lhs, rhs));
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   132
  in
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   133
    thy
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   134
    |> TheoryTarget.instantiation ([tyco], vs, @{sort itself})
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   135
    |> `(fn lthy => Syntax.check_term lthy eq)
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   136
    |-> (fn eq => Specification.definition (NONE, (("", []), eq)))
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   137
    |> snd
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   138
    |> Class.prove_instantiation_instance (K (Class.intro_classes_tac []))
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   139
    |> LocalTheory.exit
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   140
    |> ProofContext.theory_of
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   141
  end
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   142
in TypedefPackage.interpretation add_itself end
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   143
*}
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   144
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   145
instantiation bool :: itself
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   146
begin
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   147
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   148
definition "itself = TYPE(bool)"
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   149
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   150
instance ..
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   151
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
   152
end
26151
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   153
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   154
instantiation "fun" :: ("type", "type") itself
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   155
begin
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   156
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   157
definition "itself = TYPE('a \<Rightarrow> 'b)"
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   158
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   159
instance ..
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   160
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   161
end
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   162
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   163
instantiation "set" :: ("type") itself
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   164
begin
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   165
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   166
definition "itself = TYPE('a set)"
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   167
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   168
instance ..
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   169
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   170
end
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   171
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   172
hide (open) const itself
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   173
4a9b8f15ce7f class itself works around a problem with class interpretation in class finite
haftmann
parents: 25535
diff changeset
   174
end