src/HOL/ex/Mutil.ML
author paulson
Thu, 04 Apr 1996 11:45:01 +0200
changeset 1642 21db0cf9a1a4
parent 1633 9cb70937b426
child 1673 d22110ddd0af
permissions -rw-r--r--
Using new "Times" infix
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1621
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
     1
(*  Title:      HOL/ex/Mutil
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
     2
    ID:         $Id$
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
     4
    Copyright   1996  University of Cambridge
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
     5
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
     6
The Mutilated Checkerboard Problem, formalized inductively
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
     7
*)
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
     8
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
     9
open Mutil;
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    10
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    11
(*SHOULD NOT BE NECESSARY!*)
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    12
Addsimps [ball_rew,mem_Sigma_iff];
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    13
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    14
(** Basic properties of evnodd **)
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    15
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    16
goalw thy [evnodd_def]
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    17
    "(i,j): evnodd A b = ((i,j): A  &  (i+j) mod 2 = b)";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    18
by (Simp_tac 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    19
qed "evnodd_iff";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    20
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    21
goalw thy [evnodd_def] "evnodd A b <= A";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    22
by (rtac Int_lower1 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    23
qed "evnodd_subset";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    24
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    25
(* finite X ==> finite(evnodd X b) *)
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    26
bind_thm("finite_evnodd", evnodd_subset RS finite_subset);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    27
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    28
goalw thy [evnodd_def] "evnodd (A Un B) b = evnodd A b Un evnodd B b";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    29
by (fast_tac eq_cs 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    30
qed "evnodd_Un";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    31
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    32
goalw thy [evnodd_def] "evnodd (A - B) b = evnodd A b - evnodd B b";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    33
by (fast_tac eq_cs 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    34
qed "evnodd_Diff";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    35
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    36
goalw thy [evnodd_def]
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    37
    "evnodd (insert (i,j) C) b = \
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    38
\    (if (i+j) mod 2 = b then insert (i,j) (evnodd C b) else evnodd C b)";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    39
by (asm_full_simp_tac (!simpset addsimps [evnodd_def] 
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    40
             setloop (split_tac [expand_if] THEN' step_tac eq_cs)) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    41
qed "evnodd_insert";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    42
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    43
goalw thy [evnodd_def] "evnodd {} b = {}";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    44
by (Simp_tac 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    45
qed "evnodd_empty";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    46
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    47
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    48
(*** Dominoes ***)
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    49
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    50
goal thy "!!d. d:domino ==> finite d";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    51
by (fast_tac (set_cs addSIs [finite_insertI, finite_emptyI] addEs [domino.elim]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    52
qed "domino_finite";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    53
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    54
goal thy "!!d. [| d:domino; b<2 |] ==> EX i' j'. evnodd d b = {(i',j')}";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    55
by (eresolve_tac [domino.elim] 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    56
by (res_inst_tac [("k1", "i+j")] (mod2_cases RS disjE) 2);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    57
by (res_inst_tac [("k1", "i+j")] (mod2_cases RS disjE) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    58
by (REPEAT_FIRST assume_tac);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    59
(*Four similar cases: case (i+j) mod 2 = b, 2#-b, ...*)
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    60
by (REPEAT (asm_simp_tac (!simpset addsimps
1626
12560b3ebf2c Moved even/odd lemmas from ex/Mutil to Arith
paulson
parents: 1621
diff changeset
    61
                          [evnodd_insert, evnodd_empty, mod_Suc] 
1621
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    62
                          setloop split_tac [expand_if]) 1
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    63
           THEN fast_tac less_cs 1));
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    64
qed "domino_singleton";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    65
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    66
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    67
(*** Tilings ***)
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    68
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    69
(** The union of two disjoint tilings is a tiling **)
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    70
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    71
goal thy "!!t. t: tiling A ==> \
1633
9cb70937b426 Simplified proof of tiling_UnI
paulson
parents: 1626
diff changeset
    72
\              u: tiling A --> t Int u = {} --> t Un u : tiling A";
1621
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    73
by (etac tiling.induct 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    74
by (simp_tac (!simpset addsimps tiling.intrs) 1);
1633
9cb70937b426 Simplified proof of tiling_UnI
paulson
parents: 1626
diff changeset
    75
by (fast_tac (set_cs addIs tiling.intrs
9cb70937b426 Simplified proof of tiling_UnI
paulson
parents: 1626
diff changeset
    76
	             addss (HOL_ss addsimps [Un_assoc,
9cb70937b426 Simplified proof of tiling_UnI
paulson
parents: 1626
diff changeset
    77
					     subset_empty_iff RS sym])) 1);
9cb70937b426 Simplified proof of tiling_UnI
paulson
parents: 1626
diff changeset
    78
bind_thm ("tiling_UnI", result() RS mp RS mp);
1621
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    79
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    80
goal thy "!!t. t:tiling domino ==> finite t";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    81
by (eresolve_tac [tiling.induct] 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    82
by (rtac finite_emptyI 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    83
by (fast_tac (set_cs addIs [domino_finite, finite_UnI]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    84
qed "tiling_domino_finite";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    85
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    86
goal thy "!!t. t: tiling domino ==> card(evnodd t 0) = card(evnodd t 1)";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    87
by (eresolve_tac [tiling.induct] 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    88
by (simp_tac (!simpset addsimps [evnodd_def]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    89
by (res_inst_tac [("b1","0")] (domino_singleton RS exE) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    90
by (Simp_tac 2 THEN assume_tac 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    91
by (res_inst_tac [("b1","1")] (domino_singleton RS exE) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    92
by (Simp_tac 2 THEN assume_tac 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    93
by (step_tac HOL_cs 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    94
by (subgoal_tac "ALL p b. p : evnodd a b --> p ~: evnodd ta b" 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    95
by (asm_simp_tac (!simpset addsimps [evnodd_Un, Un_insert_left, 
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    96
                                     tiling_domino_finite,
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    97
                                     evnodd_subset RS finite_subset,
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    98
                                     card_insert_disjoint]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
    99
by (fast_tac (set_cs addSDs [evnodd_subset RS subsetD] addEs [equalityE]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   100
qed "tiling_domino_0_1";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   101
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   102
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   103
val [below_0, below_Suc] = nat_recs below_def;
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   104
Addsimps [below_0];
1626
12560b3ebf2c Moved even/odd lemmas from ex/Mutil to Arith
paulson
parents: 1621
diff changeset
   105
(*below_Suc should NOT be added, or Sigma_Suc1,2 cannot be used*)
1621
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   106
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   107
goal thy "(i: below k) = (i<k)";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   108
by (res_inst_tac [("x", "i")] spec 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   109
by (nat_ind_tac "k" 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   110
by (Simp_tac 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   111
by (asm_simp_tac (!simpset addsimps [below_Suc]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   112
by (fast_tac set_cs 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   113
qed "below_less_iff";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   114
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1633
diff changeset
   115
goal thy "(below (Suc n)) Times B = ({n} Times B) Un ((below n) Times B)";
1621
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   116
by (simp_tac (!simpset addsimps [below_Suc]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   117
by (fast_tac (prod_cs addIs [equalityI]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   118
qed "Sigma_Suc1";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   119
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1633
diff changeset
   120
goal thy "A Times (below (Suc n)) = (A Times {n}) Un (A Times (below n))";
1621
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   121
by (simp_tac (!simpset addsimps [below_Suc]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   122
by (fast_tac (prod_cs addIs [equalityI]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   123
qed "Sigma_Suc2";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   124
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1633
diff changeset
   125
goal thy "{i} Times (below (n + n)) : tiling domino";
1621
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   126
by (nat_ind_tac "n" 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   127
by (simp_tac (!simpset addsimps tiling.intrs) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   128
by (asm_simp_tac (!simpset addsimps [Un_assoc RS sym, Sigma_Suc2]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   129
by (resolve_tac tiling.intrs 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   130
by (assume_tac 2);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   131
by (subgoal_tac    (*seems the easiest way of turning one to the other*)
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1633
diff changeset
   132
    "({i} Times {Suc(n1+n1)}) Un ({i} Times {n1+n1}) = \
1621
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   133
\    {(i, n1+n1), (i, Suc(n1+n1))}" 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   134
by (fast_tac (prod_cs addIs [equalityI]) 2);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   135
by (asm_simp_tac (!simpset addsimps [domino.horiz]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   136
by (fast_tac (prod_cs addIs [equalityI, lessI] addEs [less_irrefl, less_asym]
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   137
                      addDs [below_less_iff RS iffD1]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   138
qed "dominoes_tile_row";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   139
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1633
diff changeset
   140
goal thy "(below m) Times (below (n + n)) : tiling domino";
1621
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   141
by (nat_ind_tac "m" 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   142
by (simp_tac (!simpset addsimps (below_0::tiling.intrs)) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   143
by (asm_simp_tac (!simpset addsimps [Sigma_Suc1]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   144
by (fast_tac (prod_cs addIs [equalityI, tiling_UnI, dominoes_tile_row] 
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   145
                      addEs [below_less_iff RS iffD1 RS less_irrefl]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   146
qed "dominoes_tile_matrix";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   147
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   148
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1633
diff changeset
   149
goal thy "!!m n. [| t = (below (Suc m + Suc m))  Times              \
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1633
diff changeset
   150
\                       (below (Suc n + Suc n));                    \
1621
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   151
\                   t' = t - {(0,0)} - {(Suc(m+m), Suc(n+n))}       \
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   152
\                |] ==> t' ~: tiling domino";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   153
by (rtac notI 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   154
by (dtac tiling_domino_0_1 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   155
by (subgoal_tac "card(evnodd t' 0) < card(evnodd t' 1)" 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   156
by (Asm_full_simp_tac 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   157
by (subgoal_tac "t : tiling domino" 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   158
(*Requires a small simpset that won't move the Suc applications*)
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   159
by (asm_simp_tac (HOL_ss addsimps [dominoes_tile_matrix]) 2);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   160
by (subgoal_tac "(m+m)+(n+n) = (m+n)+(m+n)" 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   161
by (asm_simp_tac (!simpset addsimps add_ac) 2);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   162
by (asm_full_simp_tac 
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   163
    (!simpset addsimps [evnodd_Diff, evnodd_insert, evnodd_empty, 
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   164
                        mod_less, tiling_domino_0_1 RS sym]) 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   165
by (rtac less_trans 1);
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   166
by (REPEAT
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   167
    (rtac card_Diff 1 
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   168
     THEN
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   169
     asm_simp_tac (!simpset addsimps [tiling_domino_finite, finite_evnodd]) 1 
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   170
     THEN
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   171
     asm_simp_tac (!simpset addsimps [mod_less, evnodd_iff, below_less_iff]) 1));
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   172
qed "mutil_not_tiling";
d92f42acdb26 New mutilated checkerboard example
paulson
parents:
diff changeset
   173