Built with Alectryon, running Coq+SerAPI v8.10.0+0.7.0. Coq sources are in this panel; goals and messages will appear in the other. Bubbles () indicate interactive fragments: hover for details, tap to reveal contents. Use Ctrl+↑ Ctrl+↓ to navigate, Ctrl+🖱️ to focus.
(************************************************************************) (* * The Coq Proof Assistant / The Coq Development Team *) (* v * INRIA, CNRS and contributors - Copyright 1999-2018 *) (* <O___,, * (see CREDITS file for the list of authors) *) (* \VV/ **************************************************************) (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) (* * (see LICENSE file for the text of the license) *) (************************************************************************) Require Import Coq.Arith.EqNat. Require Import Coq.NArith.BinNat. Require Import Coq.NArith.Nnat. Require Export Coq.Init.Byte. Local Set Implicit Arguments. Definition eqb (a b : byte) : bool := let '(a0, (a1, (a2, (a3, (a4, (a5, (a6, a7))))))) := to_bits a in let '(b0, (b1, (b2, (b3, (b4, (b5, (b6, b7))))))) := to_bits b in (Bool.eqb a0 b0 && Bool.eqb a1 b1 && Bool.eqb a2 b2 && Bool.eqb a3 b3 && Bool.eqb a4 b4 && Bool.eqb a5 b5 && Bool.eqb a6 b6 && Bool.eqb a7 b7)%bool. Module Export ByteNotations. Export ByteSyntaxNotations. Infix "=?" := eqb (at level 70) : byte_scope. End ByteNotations.x, y:bytex = y -> (x =? y)%byte = trueintro; subst y; destruct x; reflexivity. Defined.x, y:bytex = y -> (x =? y)%byte = truex, y:byteH:(x =? y)%byte = truex = yx, y:byteH:(x =? y)%byte = truex = yx, y:byteH:(x =? y)%byte = trueof_bits (to_bits x) = of_bits (to_bits y)x, y:byte(let '(a0, (a1, (a2, (a3, (a4, (a5, (a6, a7))))))) := to_bits x in let '(b0, (b1, (b2, (b3, (b4, (b5, (b6, b7))))))) := to_bits y in (Bool.eqb a0 b0 && Bool.eqb a1 b1 && Bool.eqb a2 b2 && Bool.eqb a3 b3 && Bool.eqb a4 b4 && Bool.eqb a5 b5 && Bool.eqb a6 b6 && Bool.eqb a7 b7)%bool) = true -> of_bits (to_bits x) = of_bits (to_bits y)repeat match goal with | [ H : and _ _ |- _ ] => destruct H | [ H : prod _ _ |- _ ] => destruct H | [ H : context[andb _ _ = true] |- _ ] => rewrite Bool.andb_true_iff in H | [ H : context[Bool.eqb _ _ = true] |- _ ] => rewrite Bool.eqb_true_iff in H | _ => progress subst | _ => reflexivity end. Qed.x, y:(bool * (bool * (bool * (bool * (bool * (bool * (bool * bool)))))))%typeH:(let '(a0, (a1, (a2, (a3, (a4, (a5, (a6, a7))))))) := x in let '(b0, (b1, (b2, (b3, (b4, (b5, (b6, b7))))))) := y in (Bool.eqb a0 b0 && Bool.eqb a1 b1 && Bool.eqb a2 b2 && Bool.eqb a3 b3 && Bool.eqb a4 b4 && Bool.eqb a5 b5 && Bool.eqb a6 b6 && Bool.eqb a7 b7)%bool) = trueof_bits x = of_bits yx, y:byte(x =? y)%byte = false -> x <> yintros H H'; pose proof (byte_dec_lb H'); congruence. Qed. Definition byte_eq_dec (x y : byte) : {x = y} + {x <> y} := (if eqb x y as beq return eqb x y = beq -> _ then fun pf => left (byte_dec_bl x y pf) else fun pf => right (eqb_false pf)) eq_refl. Section nat. Definition to_nat (x : byte) : nat := match x with | x00 => 0 | x01 => 1 | x02 => 2 | x03 => 3 | x04 => 4 | x05 => 5 | x06 => 6 | x07 => 7 | x08 => 8 | x09 => 9 | x0a => 10 | x0b => 11 | x0c => 12 | x0d => 13 | x0e => 14 | x0f => 15 | x10 => 16 | x11 => 17 | x12 => 18 | x13 => 19 | x14 => 20 | x15 => 21 | x16 => 22 | x17 => 23 | x18 => 24 | x19 => 25 | x1a => 26 | x1b => 27 | x1c => 28 | x1d => 29 | x1e => 30 | x1f => 31 | x20 => 32 | x21 => 33 | x22 => 34 | x23 => 35 | x24 => 36 | x25 => 37 | x26 => 38 | x27 => 39 | x28 => 40 | x29 => 41 | x2a => 42 | x2b => 43 | x2c => 44 | x2d => 45 | x2e => 46 | x2f => 47 | x30 => 48 | x31 => 49 | x32 => 50 | x33 => 51 | x34 => 52 | x35 => 53 | x36 => 54 | x37 => 55 | x38 => 56 | x39 => 57 | x3a => 58 | x3b => 59 | x3c => 60 | x3d => 61 | x3e => 62 | x3f => 63 | x40 => 64 | x41 => 65 | x42 => 66 | x43 => 67 | x44 => 68 | x45 => 69 | x46 => 70 | x47 => 71 | x48 => 72 | x49 => 73 | x4a => 74 | x4b => 75 | x4c => 76 | x4d => 77 | x4e => 78 | x4f => 79 | x50 => 80 | x51 => 81 | x52 => 82 | x53 => 83 | x54 => 84 | x55 => 85 | x56 => 86 | x57 => 87 | x58 => 88 | x59 => 89 | x5a => 90 | x5b => 91 | x5c => 92 | x5d => 93 | x5e => 94 | x5f => 95 | x60 => 96 | x61 => 97 | x62 => 98 | x63 => 99 | x64 => 100 | x65 => 101 | x66 => 102 | x67 => 103 | x68 => 104 | x69 => 105 | x6a => 106 | x6b => 107 | x6c => 108 | x6d => 109 | x6e => 110 | x6f => 111 | x70 => 112 | x71 => 113 | x72 => 114 | x73 => 115 | x74 => 116 | x75 => 117 | x76 => 118 | x77 => 119 | x78 => 120 | x79 => 121 | x7a => 122 | x7b => 123 | x7c => 124 | x7d => 125 | x7e => 126 | x7f => 127 | x80 => 128 | x81 => 129 | x82 => 130 | x83 => 131 | x84 => 132 | x85 => 133 | x86 => 134 | x87 => 135 | x88 => 136 | x89 => 137 | x8a => 138 | x8b => 139 | x8c => 140 | x8d => 141 | x8e => 142 | x8f => 143 | x90 => 144 | x91 => 145 | x92 => 146 | x93 => 147 | x94 => 148 | x95 => 149 | x96 => 150 | x97 => 151 | x98 => 152 | x99 => 153 | x9a => 154 | x9b => 155 | x9c => 156 | x9d => 157 | x9e => 158 | x9f => 159 | xa0 => 160 | xa1 => 161 | xa2 => 162 | xa3 => 163 | xa4 => 164 | xa5 => 165 | xa6 => 166 | xa7 => 167 | xa8 => 168 | xa9 => 169 | xaa => 170 | xab => 171 | xac => 172 | xad => 173 | xae => 174 | xaf => 175 | xb0 => 176 | xb1 => 177 | xb2 => 178 | xb3 => 179 | xb4 => 180 | xb5 => 181 | xb6 => 182 | xb7 => 183 | xb8 => 184 | xb9 => 185 | xba => 186 | xbb => 187 | xbc => 188 | xbd => 189 | xbe => 190 | xbf => 191 | xc0 => 192 | xc1 => 193 | xc2 => 194 | xc3 => 195 | xc4 => 196 | xc5 => 197 | xc6 => 198 | xc7 => 199 | xc8 => 200 | xc9 => 201 | xca => 202 | xcb => 203 | xcc => 204 | xcd => 205 | xce => 206 | xcf => 207 | xd0 => 208 | xd1 => 209 | xd2 => 210 | xd3 => 211 | xd4 => 212 | xd5 => 213 | xd6 => 214 | xd7 => 215 | xd8 => 216 | xd9 => 217 | xda => 218 | xdb => 219 | xdc => 220 | xdd => 221 | xde => 222 | xdf => 223 | xe0 => 224 | xe1 => 225 | xe2 => 226 | xe3 => 227 | xe4 => 228 | xe5 => 229 | xe6 => 230 | xe7 => 231 | xe8 => 232 | xe9 => 233 | xea => 234 | xeb => 235 | xec => 236 | xed => 237 | xee => 238 | xef => 239 | xf0 => 240 | xf1 => 241 | xf2 => 242 | xf3 => 243 | xf4 => 244 | xf5 => 245 | xf6 => 246 | xf7 => 247 | xf8 => 248 | xf9 => 249 | xfa => 250 | xfb => 251 | xfc => 252 | xfd => 253 | xfe => 254 | xff => 255 end. Definition of_nat (x : nat) : option byte := match x with | 0 => Some x00 | 1 => Some x01 | 2 => Some x02 | 3 => Some x03 | 4 => Some x04 | 5 => Some x05 | 6 => Some x06 | 7 => Some x07 | 8 => Some x08 | 9 => Some x09 | 10 => Some x0a | 11 => Some x0b | 12 => Some x0c | 13 => Some x0d | 14 => Some x0e | 15 => Some x0f | 16 => Some x10 | 17 => Some x11 | 18 => Some x12 | 19 => Some x13 | 20 => Some x14 | 21 => Some x15 | 22 => Some x16 | 23 => Some x17 | 24 => Some x18 | 25 => Some x19 | 26 => Some x1a | 27 => Some x1b | 28 => Some x1c | 29 => Some x1d | 30 => Some x1e | 31 => Some x1f | 32 => Some x20 | 33 => Some x21 | 34 => Some x22 | 35 => Some x23 | 36 => Some x24 | 37 => Some x25 | 38 => Some x26 | 39 => Some x27 | 40 => Some x28 | 41 => Some x29 | 42 => Some x2a | 43 => Some x2b | 44 => Some x2c | 45 => Some x2d | 46 => Some x2e | 47 => Some x2f | 48 => Some x30 | 49 => Some x31 | 50 => Some x32 | 51 => Some x33 | 52 => Some x34 | 53 => Some x35 | 54 => Some x36 | 55 => Some x37 | 56 => Some x38 | 57 => Some x39 | 58 => Some x3a | 59 => Some x3b | 60 => Some x3c | 61 => Some x3d | 62 => Some x3e | 63 => Some x3f | 64 => Some x40 | 65 => Some x41 | 66 => Some x42 | 67 => Some x43 | 68 => Some x44 | 69 => Some x45 | 70 => Some x46 | 71 => Some x47 | 72 => Some x48 | 73 => Some x49 | 74 => Some x4a | 75 => Some x4b | 76 => Some x4c | 77 => Some x4d | 78 => Some x4e | 79 => Some x4f | 80 => Some x50 | 81 => Some x51 | 82 => Some x52 | 83 => Some x53 | 84 => Some x54 | 85 => Some x55 | 86 => Some x56 | 87 => Some x57 | 88 => Some x58 | 89 => Some x59 | 90 => Some x5a | 91 => Some x5b | 92 => Some x5c | 93 => Some x5d | 94 => Some x5e | 95 => Some x5f | 96 => Some x60 | 97 => Some x61 | 98 => Some x62 | 99 => Some x63 | 100 => Some x64 | 101 => Some x65 | 102 => Some x66 | 103 => Some x67 | 104 => Some x68 | 105 => Some x69 | 106 => Some x6a | 107 => Some x6b | 108 => Some x6c | 109 => Some x6d | 110 => Some x6e | 111 => Some x6f | 112 => Some x70 | 113 => Some x71 | 114 => Some x72 | 115 => Some x73 | 116 => Some x74 | 117 => Some x75 | 118 => Some x76 | 119 => Some x77 | 120 => Some x78 | 121 => Some x79 | 122 => Some x7a | 123 => Some x7b | 124 => Some x7c | 125 => Some x7d | 126 => Some x7e | 127 => Some x7f | 128 => Some x80 | 129 => Some x81 | 130 => Some x82 | 131 => Some x83 | 132 => Some x84 | 133 => Some x85 | 134 => Some x86 | 135 => Some x87 | 136 => Some x88 | 137 => Some x89 | 138 => Some x8a | 139 => Some x8b | 140 => Some x8c | 141 => Some x8d | 142 => Some x8e | 143 => Some x8f | 144 => Some x90 | 145 => Some x91 | 146 => Some x92 | 147 => Some x93 | 148 => Some x94 | 149 => Some x95 | 150 => Some x96 | 151 => Some x97 | 152 => Some x98 | 153 => Some x99 | 154 => Some x9a | 155 => Some x9b | 156 => Some x9c | 157 => Some x9d | 158 => Some x9e | 159 => Some x9f | 160 => Some xa0 | 161 => Some xa1 | 162 => Some xa2 | 163 => Some xa3 | 164 => Some xa4 | 165 => Some xa5 | 166 => Some xa6 | 167 => Some xa7 | 168 => Some xa8 | 169 => Some xa9 | 170 => Some xaa | 171 => Some xab | 172 => Some xac | 173 => Some xad | 174 => Some xae | 175 => Some xaf | 176 => Some xb0 | 177 => Some xb1 | 178 => Some xb2 | 179 => Some xb3 | 180 => Some xb4 | 181 => Some xb5 | 182 => Some xb6 | 183 => Some xb7 | 184 => Some xb8 | 185 => Some xb9 | 186 => Some xba | 187 => Some xbb | 188 => Some xbc | 189 => Some xbd | 190 => Some xbe | 191 => Some xbf | 192 => Some xc0 | 193 => Some xc1 | 194 => Some xc2 | 195 => Some xc3 | 196 => Some xc4 | 197 => Some xc5 | 198 => Some xc6 | 199 => Some xc7 | 200 => Some xc8 | 201 => Some xc9 | 202 => Some xca | 203 => Some xcb | 204 => Some xcc | 205 => Some xcd | 206 => Some xce | 207 => Some xcf | 208 => Some xd0 | 209 => Some xd1 | 210 => Some xd2 | 211 => Some xd3 | 212 => Some xd4 | 213 => Some xd5 | 214 => Some xd6 | 215 => Some xd7 | 216 => Some xd8 | 217 => Some xd9 | 218 => Some xda | 219 => Some xdb | 220 => Some xdc | 221 => Some xdd | 222 => Some xde | 223 => Some xdf | 224 => Some xe0 | 225 => Some xe1 | 226 => Some xe2 | 227 => Some xe3 | 228 => Some xe4 | 229 => Some xe5 | 230 => Some xe6 | 231 => Some xe7 | 232 => Some xe8 | 233 => Some xe9 | 234 => Some xea | 235 => Some xeb | 236 => Some xec | 237 => Some xed | 238 => Some xee | 239 => Some xef | 240 => Some xf0 | 241 => Some xf1 | 242 => Some xf2 | 243 => Some xf3 | 244 => Some xf4 | 245 => Some xf5 | 246 => Some xf6 | 247 => Some xf7 | 248 => Some xf8 | 249 => Some xf9 | 250 => Some xfa | 251 => Some xfb | 252 => Some xfc | 253 => Some xfd | 254 => Some xfe | 255 => Some xff | _ => None end.x, y:byte(x =? y)%byte = false -> x <> yx:byteof_nat (to_nat x) = Some xdestruct x; reflexivity. Qed.x:byteof_nat (to_nat x) = Some xx:naty:byteof_nat x = Some y -> to_nat y = xx:naty:byteof_nat x = Some y -> to_nat y = xall: repeat match goal with | _ => reflexivity | _ => progress subst | [ H : Some ?a = Some ?b |- _ ] => assert (a = b) by refine match H with eq_refl => eq_refl end; clear H | [ H : None = Some _ |- _ ] => solve [ inversion H ] end. Qed.y:byteH:Some "000"%byte = Some yto_nat y = 0y:byteH:Some "001"%byte = Some yto_nat y = 1y:byteH:Some "002"%byte = Some yto_nat y = 2y:byteH:Some "003"%byte = Some yto_nat y = 3y:byteH:Some "004"%byte = Some yto_nat y = 4y:byteH:Some "005"%byte = Some yto_nat y = 5y:byteH:Some "006"%byte = Some yto_nat y = 6y:byteH:Some "007"%byte = Some yto_nat y = 7y:byteH:Some "008"%byte = Some yto_nat y = 8y:byteH:Some "009"%byte = Some yto_nat y = 9y:byteH:Some "010"%byte = Some yto_nat y = 10y:byteH:Some "011"%byte = Some yto_nat y = 11y:byteH:Some "012"%byte = Some yto_nat y = 12y:byteH:Some "013"%byte = Some yto_nat y = 13y:byteH:Some "014"%byte = Some yto_nat y = 14y:byteH:Some "015"%byte = Some yto_nat y = 15y:byteH:Some "016"%byte = Some yto_nat y = 16y:byteH:Some "017"%byte = Some yto_nat y = 17y:byteH:Some "018"%byte = Some yto_nat y = 18y:byteH:Some "019"%byte = Some yto_nat y = 19y:byteH:Some "020"%byte = Some yto_nat y = 20y:byteH:Some "021"%byte = Some yto_nat y = 21y:byteH:Some "022"%byte = Some yto_nat y = 22y:byteH:Some "023"%byte = Some yto_nat y = 23y:byteH:Some "024"%byte = Some yto_nat y = 24y:byteH:Some "025"%byte = Some yto_nat y = 25y:byteH:Some "026"%byte = Some yto_nat y = 26y:byteH:Some "027"%byte = Some yto_nat y = 27y:byteH:Some "028"%byte = Some yto_nat y = 28y:byteH:Some "029"%byte = Some yto_nat y = 29y:byteH:Some "030"%byte = Some yto_nat y = 30y:byteH:Some "031"%byte = Some yto_nat y = 31y:byteH:Some " "%byte = Some yto_nat y = 32y:byteH:Some "!"%byte = Some yto_nat y = 33y:byteH:Some """"%byte = Some yto_nat y = 34y:byteH:Some "#"%byte = Some yto_nat y = 35y:byteH:Some "$"%byte = Some yto_nat y = 36y:byteH:Some "%"%byte = Some yto_nat y = 37y:byteH:Some "&"%byte = Some yto_nat y = 38y:byteH:Some "'"%byte = Some yto_nat y = 39y:byteH:Some "("%byte = Some yto_nat y = 40y:byteH:Some ")"%byte = Some yto_nat y = 41y:byteH:Some "*"%byte = Some yto_nat y = 42y:byteH:Some "+"%byte = Some yto_nat y = 43y:byteH:Some ","%byte = Some yto_nat y = 44y:byteH:Some "-"%byte = Some yto_nat y = 45y:byteH:Some "."%byte = Some yto_nat y = 46y:byteH:Some "/"%byte = Some yto_nat y = 47y:byteH:Some "0"%byte = Some yto_nat y = 48y:byteH:Some "1"%byte = Some yto_nat y = 49y:byteH:Some "2"%byte = Some yto_nat y = 50y:byteH:Some "3"%byte = Some yto_nat y = 51y:byteH:Some "4"%byte = Some yto_nat y = 52y:byteH:Some "5"%byte = Some yto_nat y = 53y:byteH:Some "6"%byte = Some yto_nat y = 54y:byteH:Some "7"%byte = Some yto_nat y = 55y:byteH:Some "8"%byte = Some yto_nat y = 56y:byteH:Some "9"%byte = Some yto_nat y = 57y:byteH:Some ":"%byte = Some yto_nat y = 58y:byteH:Some ";"%byte = Some yto_nat y = 59y:byteH:Some "<"%byte = Some yto_nat y = 60y:byteH:Some "="%byte = Some yto_nat y = 61y:byteH:Some ">"%byte = Some yto_nat y = 62y:byteH:Some "?"%byte = Some yto_nat y = 63y:byteH:Some "@"%byte = Some yto_nat y = 64y:byteH:Some "A"%byte = Some yto_nat y = 65y:byteH:Some "B"%byte = Some yto_nat y = 66y:byteH:Some "C"%byte = Some yto_nat y = 67y:byteH:Some "D"%byte = Some yto_nat y = 68y:byteH:Some "E"%byte = Some yto_nat y = 69y:byteH:Some "F"%byte = Some yto_nat y = 70y:byteH:Some "G"%byte = Some yto_nat y = 71y:byteH:Some "H"%byte = Some yto_nat y = 72y:byteH:Some "I"%byte = Some yto_nat y = 73y:byteH:Some "J"%byte = Some yto_nat y = 74y:byteH:Some "K"%byte = Some yto_nat y = 75y:byteH:Some "L"%byte = Some yto_nat y = 76y:byteH:Some "M"%byte = Some yto_nat y = 77y:byteH:Some "N"%byte = Some yto_nat y = 78y:byteH:Some "O"%byte = Some yto_nat y = 79y:byteH:Some "P"%byte = Some yto_nat y = 80y:byteH:Some "Q"%byte = Some yto_nat y = 81y:byteH:Some "R"%byte = Some yto_nat y = 82y:byteH:Some "S"%byte = Some yto_nat y = 83y:byteH:Some "T"%byte = Some yto_nat y = 84y:byteH:Some "U"%byte = Some yto_nat y = 85y:byteH:Some "V"%byte = Some yto_nat y = 86y:byteH:Some "W"%byte = Some yto_nat y = 87y:byteH:Some "X"%byte = Some yto_nat y = 88y:byteH:Some "Y"%byte = Some yto_nat y = 89y:byteH:Some "Z"%byte = Some yto_nat y = 90y:byteH:Some "["%byte = Some yto_nat y = 91y:byteH:Some "\"%byte = Some yto_nat y = 92y:byteH:Some "]"%byte = Some yto_nat y = 93y:byteH:Some "^"%byte = Some yto_nat y = 94y:byteH:Some "_"%byte = Some yto_nat y = 95y:byteH:Some "`"%byte = Some yto_nat y = 96y:byteH:Some "a"%byte = Some yto_nat y = 97y:byteH:Some "b"%byte = Some yto_nat y = 98y:byteH:Some "c"%byte = Some yto_nat y = 99y:byteH:Some "d"%byte = Some yto_nat y = 100y:byteH:Some "e"%byte = Some yto_nat y = 101y:byteH:Some "f"%byte = Some yto_nat y = 102y:byteH:Some "g"%byte = Some yto_nat y = 103y:byteH:Some "h"%byte = Some yto_nat y = 104y:byteH:Some "i"%byte = Some yto_nat y = 105y:byteH:Some "j"%byte = Some yto_nat y = 106y:byteH:Some "k"%byte = Some yto_nat y = 107y:byteH:Some "l"%byte = Some yto_nat y = 108y:byteH:Some "m"%byte = Some yto_nat y = 109y:byteH:Some "n"%byte = Some yto_nat y = 110y:byteH:Some "o"%byte = Some yto_nat y = 111y:byteH:Some "p"%byte = Some yto_nat y = 112y:byteH:Some "q"%byte = Some yto_nat y = 113y:byteH:Some "r"%byte = Some yto_nat y = 114y:byteH:Some "s"%byte = Some yto_nat y = 115y:byteH:Some "t"%byte = Some yto_nat y = 116y:byteH:Some "u"%byte = Some yto_nat y = 117y:byteH:Some "v"%byte = Some yto_nat y = 118y:byteH:Some "w"%byte = Some yto_nat y = 119y:byteH:Some "x"%byte = Some yto_nat y = 120y:byteH:Some "y"%byte = Some yto_nat y = 121y:byteH:Some "z"%byte = Some yto_nat y = 122y:byteH:Some "{"%byte = Some yto_nat y = 123y:byteH:Some "|"%byte = Some yto_nat y = 124y:byteH:Some "}"%byte = Some yto_nat y = 125y:byteH:Some "~"%byte = Some yto_nat y = 126y:byteH:Some "127"%byte = Some yto_nat y = 127y:byteH:Some "128"%byte = Some yto_nat y = 128y:byteH:Some "129"%byte = Some yto_nat y = 129y:byteH:Some "130"%byte = Some yto_nat y = 130y:byteH:Some "131"%byte = Some yto_nat y = 131y:byteH:Some "132"%byte = Some yto_nat y = 132y:byteH:Some "133"%byte = Some yto_nat y = 133y:byteH:Some "134"%byte = Some yto_nat y = 134y:byteH:Some "135"%byte = Some yto_nat y = 135y:byteH:Some "136"%byte = Some yto_nat y = 136y:byteH:Some "137"%byte = Some yto_nat y = 137y:byteH:Some "138"%byte = Some yto_nat y = 138y:byteH:Some "139"%byte = Some yto_nat y = 139y:byteH:Some "140"%byte = Some yto_nat y = 140y:byteH:Some "141"%byte = Some yto_nat y = 141y:byteH:Some "142"%byte = Some yto_nat y = 142y:byteH:Some "143"%byte = Some yto_nat y = 143y:byteH:Some "144"%byte = Some yto_nat y = 144y:byteH:Some "145"%byte = Some yto_nat y = 145y:byteH:Some "146"%byte = Some yto_nat y = 146y:byteH:Some "147"%byte = Some yto_nat y = 147y:byteH:Some "148"%byte = Some yto_nat y = 148y:byteH:Some "149"%byte = Some yto_nat y = 149y:byteH:Some "150"%byte = Some yto_nat y = 150y:byteH:Some "151"%byte = Some yto_nat y = 151y:byteH:Some "152"%byte = Some yto_nat y = 152y:byteH:Some "153"%byte = Some yto_nat y = 153y:byteH:Some "154"%byte = Some yto_nat y = 154y:byteH:Some "155"%byte = Some yto_nat y = 155y:byteH:Some "156"%byte = Some yto_nat y = 156y:byteH:Some "157"%byte = Some yto_nat y = 157y:byteH:Some "158"%byte = Some yto_nat y = 158y:byteH:Some "159"%byte = Some yto_nat y = 159y:byteH:Some "160"%byte = Some yto_nat y = 160y:byteH:Some "161"%byte = Some yto_nat y = 161y:byteH:Some "162"%byte = Some yto_nat y = 162y:byteH:Some "163"%byte = Some yto_nat y = 163y:byteH:Some "164"%byte = Some yto_nat y = 164y:byteH:Some "165"%byte = Some yto_nat y = 165y:byteH:Some "166"%byte = Some yto_nat y = 166y:byteH:Some "167"%byte = Some yto_nat y = 167y:byteH:Some "168"%byte = Some yto_nat y = 168y:byteH:Some "169"%byte = Some yto_nat y = 169y:byteH:Some "170"%byte = Some yto_nat y = 170y:byteH:Some "171"%byte = Some yto_nat y = 171y:byteH:Some "172"%byte = Some yto_nat y = 172y:byteH:Some "173"%byte = Some yto_nat y = 173y:byteH:Some "174"%byte = Some yto_nat y = 174y:byteH:Some "175"%byte = Some yto_nat y = 175y:byteH:Some "176"%byte = Some yto_nat y = 176y:byteH:Some "177"%byte = Some yto_nat y = 177y:byteH:Some "178"%byte = Some yto_nat y = 178y:byteH:Some "179"%byte = Some yto_nat y = 179y:byteH:Some "180"%byte = Some yto_nat y = 180y:byteH:Some "181"%byte = Some yto_nat y = 181y:byteH:Some "182"%byte = Some yto_nat y = 182y:byteH:Some "183"%byte = Some yto_nat y = 183y:byteH:Some "184"%byte = Some yto_nat y = 184y:byteH:Some "185"%byte = Some yto_nat y = 185y:byteH:Some "186"%byte = Some yto_nat y = 186y:byteH:Some "187"%byte = Some yto_nat y = 187y:byteH:Some "188"%byte = Some yto_nat y = 188y:byteH:Some "189"%byte = Some yto_nat y = 189y:byteH:Some "190"%byte = Some yto_nat y = 190y:byteH:Some "191"%byte = Some yto_nat y = 191y:byteH:Some "192"%byte = Some yto_nat y = 192y:byteH:Some "193"%byte = Some yto_nat y = 193y:byteH:Some "194"%byte = Some yto_nat y = 194y:byteH:Some "195"%byte = Some yto_nat y = 195y:byteH:Some "196"%byte = Some yto_nat y = 196y:byteH:Some "197"%byte = Some yto_nat y = 197y:byteH:Some "198"%byte = Some yto_nat y = 198y:byteH:Some "199"%byte = Some yto_nat y = 199y:byteH:Some "200"%byte = Some yto_nat y = 200y:byteH:Some "201"%byte = Some yto_nat y = 201y:byteH:Some "202"%byte = Some yto_nat y = 202y:byteH:Some "203"%byte = Some yto_nat y = 203y:byteH:Some "204"%byte = Some yto_nat y = 204y:byteH:Some "205"%byte = Some yto_nat y = 205y:byteH:Some "206"%byte = Some yto_nat y = 206y:byteH:Some "207"%byte = Some yto_nat y = 207y:byteH:Some "208"%byte = Some yto_nat y = 208y:byteH:Some "209"%byte = Some yto_nat y = 209y:byteH:Some "210"%byte = Some yto_nat y = 210y:byteH:Some "211"%byte = Some yto_nat y = 211y:byteH:Some "212"%byte = Some yto_nat y = 212y:byteH:Some "213"%byte = Some yto_nat y = 213y:byteH:Some "214"%byte = Some yto_nat y = 214y:byteH:Some "215"%byte = Some yto_nat y = 215y:byteH:Some "216"%byte = Some yto_nat y = 216y:byteH:Some "217"%byte = Some yto_nat y = 217y:byteH:Some "218"%byte = Some yto_nat y = 218y:byteH:Some "219"%byte = Some yto_nat y = 219y:byteH:Some "220"%byte = Some yto_nat y = 220y:byteH:Some "221"%byte = Some yto_nat y = 221y:byteH:Some "222"%byte = Some yto_nat y = 222y:byteH:Some "223"%byte = Some yto_nat y = 223y:byteH:Some "224"%byte = Some yto_nat y = 224y:byteH:Some "225"%byte = Some yto_nat y = 225y:byteH:Some "226"%byte = Some yto_nat y = 226y:byteH:Some "227"%byte = Some yto_nat y = 227y:byteH:Some "228"%byte = Some yto_nat y = 228y:byteH:Some "229"%byte = Some yto_nat y = 229y:byteH:Some "230"%byte = Some yto_nat y = 230y:byteH:Some "231"%byte = Some yto_nat y = 231y:byteH:Some "232"%byte = Some yto_nat y = 232y:byteH:Some "233"%byte = Some yto_nat y = 233y:byteH:Some "234"%byte = Some yto_nat y = 234y:byteH:Some "235"%byte = Some yto_nat y = 235y:byteH:Some "236"%byte = Some yto_nat y = 236y:byteH:Some "237"%byte = Some yto_nat y = 237y:byteH:Some "238"%byte = Some yto_nat y = 238y:byteH:Some "239"%byte = Some yto_nat y = 239y:byteH:Some "240"%byte = Some yto_nat y = 240y:byteH:Some "241"%byte = Some yto_nat y = 241y:byteH:Some "242"%byte = Some yto_nat y = 242y:byteH:Some "243"%byte = Some yto_nat y = 243y:byteH:Some "244"%byte = Some yto_nat y = 244y:byteH:Some "245"%byte = Some yto_nat y = 245y:byteH:Some "246"%byte = Some yto_nat y = 246y:byteH:Some "247"%byte = Some yto_nat y = 247y:byteH:Some "248"%byte = Some yto_nat y = 248y:byteH:Some "249"%byte = Some yto_nat y = 249y:byteH:Some "250"%byte = Some yto_nat y = 250y:byteH:Some "251"%byte = Some yto_nat y = 251y:byteH:Some "252"%byte = Some yto_nat y = 252y:byteH:Some "253"%byte = Some yto_nat y = 253y:byteH:Some "254"%byte = Some yto_nat y = 254y:byteH:Some "255"%byte = Some yto_nat y = 255x:naty:byteH:None = Some yto_nat y = S (S (S (S (S (S (S (S (S (S (S (S (S (...)))))))))))))x:naty:byteof_nat x = Some y <-> to_nat y = xsplit; intro; subst; (apply of_to_nat || apply to_of_nat); assumption. Qed.x:naty:byteof_nat x = Some y <-> to_nat y = xx:natoption_map to_nat (of_nat x) = (if Nat.leb x 255 then Some x else None)do 256 try destruct x as [|x]; reflexivity. Qed.x:natoption_map to_nat (of_nat x) = (if Nat.leb x 255 then Some x else None)x:byteto_nat x <= 255x:byteto_nat x <= 255x:byteoption_map to_nat (of_nat (to_nat x)) = (if Nat.leb (to_nat x) 255 then Some (to_nat x) else None) -> to_nat x <= 255x:byteSome (to_nat x) = (if Nat.leb (to_nat x) 255 then Some (to_nat x) else None) -> to_nat x <= 255x:byteH:Nat.leb (to_nat x) 255 = trueSome (to_nat x) = Some (to_nat x) -> to_nat x <= 255intro; assumption. Qed.x:byteH:to_nat x <= 255Some (to_nat x) = Some (to_nat x) -> to_nat x <= 255x:natof_nat x = None <-> 255 < xx:natof_nat x = None <-> 255 < xx:natoption_map to_nat (of_nat x) = (if Nat.leb x 255 then Some x else None) -> of_nat x = None <-> 255 < xx:natb:byteH:Nat.leb x 255 = trueSome (to_nat b) = Some x -> Some b = None <-> 255 < xx:natH:Nat.leb x 255 = falseNone = None -> None = None <-> 255 < xx:natb:byteH:Nat.leb x 255 = trueSome (to_nat b) = Some x -> Some b = None <-> 255 < xrewrite PeanoNat.Nat.lt_nge; intro H'; exfalso; apply H'; assumption.x:natb:byteH:x <= 255H0:Some (to_nat b) = Some x255 < x -> Some b = Nonex:natH:Nat.leb x 255 = falseNone = None -> None = None <-> 255 < xx:natH:Nat.leb x 255 = falseNone = None -> None = None <-> 255 < xrewrite PeanoNat.Nat.lt_nge; intro; assumption. } Qed. End nat. Section N. Local Open Scope N_scope. Definition to_N (x : byte) : N := match x with | x00 => 0 | x01 => 1 | x02 => 2 | x03 => 3 | x04 => 4 | x05 => 5 | x06 => 6 | x07 => 7 | x08 => 8 | x09 => 9 | x0a => 10 | x0b => 11 | x0c => 12 | x0d => 13 | x0e => 14 | x0f => 15 | x10 => 16 | x11 => 17 | x12 => 18 | x13 => 19 | x14 => 20 | x15 => 21 | x16 => 22 | x17 => 23 | x18 => 24 | x19 => 25 | x1a => 26 | x1b => 27 | x1c => 28 | x1d => 29 | x1e => 30 | x1f => 31 | x20 => 32 | x21 => 33 | x22 => 34 | x23 => 35 | x24 => 36 | x25 => 37 | x26 => 38 | x27 => 39 | x28 => 40 | x29 => 41 | x2a => 42 | x2b => 43 | x2c => 44 | x2d => 45 | x2e => 46 | x2f => 47 | x30 => 48 | x31 => 49 | x32 => 50 | x33 => 51 | x34 => 52 | x35 => 53 | x36 => 54 | x37 => 55 | x38 => 56 | x39 => 57 | x3a => 58 | x3b => 59 | x3c => 60 | x3d => 61 | x3e => 62 | x3f => 63 | x40 => 64 | x41 => 65 | x42 => 66 | x43 => 67 | x44 => 68 | x45 => 69 | x46 => 70 | x47 => 71 | x48 => 72 | x49 => 73 | x4a => 74 | x4b => 75 | x4c => 76 | x4d => 77 | x4e => 78 | x4f => 79 | x50 => 80 | x51 => 81 | x52 => 82 | x53 => 83 | x54 => 84 | x55 => 85 | x56 => 86 | x57 => 87 | x58 => 88 | x59 => 89 | x5a => 90 | x5b => 91 | x5c => 92 | x5d => 93 | x5e => 94 | x5f => 95 | x60 => 96 | x61 => 97 | x62 => 98 | x63 => 99 | x64 => 100 | x65 => 101 | x66 => 102 | x67 => 103 | x68 => 104 | x69 => 105 | x6a => 106 | x6b => 107 | x6c => 108 | x6d => 109 | x6e => 110 | x6f => 111 | x70 => 112 | x71 => 113 | x72 => 114 | x73 => 115 | x74 => 116 | x75 => 117 | x76 => 118 | x77 => 119 | x78 => 120 | x79 => 121 | x7a => 122 | x7b => 123 | x7c => 124 | x7d => 125 | x7e => 126 | x7f => 127 | x80 => 128 | x81 => 129 | x82 => 130 | x83 => 131 | x84 => 132 | x85 => 133 | x86 => 134 | x87 => 135 | x88 => 136 | x89 => 137 | x8a => 138 | x8b => 139 | x8c => 140 | x8d => 141 | x8e => 142 | x8f => 143 | x90 => 144 | x91 => 145 | x92 => 146 | x93 => 147 | x94 => 148 | x95 => 149 | x96 => 150 | x97 => 151 | x98 => 152 | x99 => 153 | x9a => 154 | x9b => 155 | x9c => 156 | x9d => 157 | x9e => 158 | x9f => 159 | xa0 => 160 | xa1 => 161 | xa2 => 162 | xa3 => 163 | xa4 => 164 | xa5 => 165 | xa6 => 166 | xa7 => 167 | xa8 => 168 | xa9 => 169 | xaa => 170 | xab => 171 | xac => 172 | xad => 173 | xae => 174 | xaf => 175 | xb0 => 176 | xb1 => 177 | xb2 => 178 | xb3 => 179 | xb4 => 180 | xb5 => 181 | xb6 => 182 | xb7 => 183 | xb8 => 184 | xb9 => 185 | xba => 186 | xbb => 187 | xbc => 188 | xbd => 189 | xbe => 190 | xbf => 191 | xc0 => 192 | xc1 => 193 | xc2 => 194 | xc3 => 195 | xc4 => 196 | xc5 => 197 | xc6 => 198 | xc7 => 199 | xc8 => 200 | xc9 => 201 | xca => 202 | xcb => 203 | xcc => 204 | xcd => 205 | xce => 206 | xcf => 207 | xd0 => 208 | xd1 => 209 | xd2 => 210 | xd3 => 211 | xd4 => 212 | xd5 => 213 | xd6 => 214 | xd7 => 215 | xd8 => 216 | xd9 => 217 | xda => 218 | xdb => 219 | xdc => 220 | xdd => 221 | xde => 222 | xdf => 223 | xe0 => 224 | xe1 => 225 | xe2 => 226 | xe3 => 227 | xe4 => 228 | xe5 => 229 | xe6 => 230 | xe7 => 231 | xe8 => 232 | xe9 => 233 | xea => 234 | xeb => 235 | xec => 236 | xed => 237 | xee => 238 | xef => 239 | xf0 => 240 | xf1 => 241 | xf2 => 242 | xf3 => 243 | xf4 => 244 | xf5 => 245 | xf6 => 246 | xf7 => 247 | xf8 => 248 | xf9 => 249 | xfa => 250 | xfb => 251 | xfc => 252 | xfd => 253 | xfe => 254 | xff => 255 end. Definition of_N (x : N) : option byte := match x with | 0 => Some x00 | 1 => Some x01 | 2 => Some x02 | 3 => Some x03 | 4 => Some x04 | 5 => Some x05 | 6 => Some x06 | 7 => Some x07 | 8 => Some x08 | 9 => Some x09 | 10 => Some x0a | 11 => Some x0b | 12 => Some x0c | 13 => Some x0d | 14 => Some x0e | 15 => Some x0f | 16 => Some x10 | 17 => Some x11 | 18 => Some x12 | 19 => Some x13 | 20 => Some x14 | 21 => Some x15 | 22 => Some x16 | 23 => Some x17 | 24 => Some x18 | 25 => Some x19 | 26 => Some x1a | 27 => Some x1b | 28 => Some x1c | 29 => Some x1d | 30 => Some x1e | 31 => Some x1f | 32 => Some x20 | 33 => Some x21 | 34 => Some x22 | 35 => Some x23 | 36 => Some x24 | 37 => Some x25 | 38 => Some x26 | 39 => Some x27 | 40 => Some x28 | 41 => Some x29 | 42 => Some x2a | 43 => Some x2b | 44 => Some x2c | 45 => Some x2d | 46 => Some x2e | 47 => Some x2f | 48 => Some x30 | 49 => Some x31 | 50 => Some x32 | 51 => Some x33 | 52 => Some x34 | 53 => Some x35 | 54 => Some x36 | 55 => Some x37 | 56 => Some x38 | 57 => Some x39 | 58 => Some x3a | 59 => Some x3b | 60 => Some x3c | 61 => Some x3d | 62 => Some x3e | 63 => Some x3f | 64 => Some x40 | 65 => Some x41 | 66 => Some x42 | 67 => Some x43 | 68 => Some x44 | 69 => Some x45 | 70 => Some x46 | 71 => Some x47 | 72 => Some x48 | 73 => Some x49 | 74 => Some x4a | 75 => Some x4b | 76 => Some x4c | 77 => Some x4d | 78 => Some x4e | 79 => Some x4f | 80 => Some x50 | 81 => Some x51 | 82 => Some x52 | 83 => Some x53 | 84 => Some x54 | 85 => Some x55 | 86 => Some x56 | 87 => Some x57 | 88 => Some x58 | 89 => Some x59 | 90 => Some x5a | 91 => Some x5b | 92 => Some x5c | 93 => Some x5d | 94 => Some x5e | 95 => Some x5f | 96 => Some x60 | 97 => Some x61 | 98 => Some x62 | 99 => Some x63 | 100 => Some x64 | 101 => Some x65 | 102 => Some x66 | 103 => Some x67 | 104 => Some x68 | 105 => Some x69 | 106 => Some x6a | 107 => Some x6b | 108 => Some x6c | 109 => Some x6d | 110 => Some x6e | 111 => Some x6f | 112 => Some x70 | 113 => Some x71 | 114 => Some x72 | 115 => Some x73 | 116 => Some x74 | 117 => Some x75 | 118 => Some x76 | 119 => Some x77 | 120 => Some x78 | 121 => Some x79 | 122 => Some x7a | 123 => Some x7b | 124 => Some x7c | 125 => Some x7d | 126 => Some x7e | 127 => Some x7f | 128 => Some x80 | 129 => Some x81 | 130 => Some x82 | 131 => Some x83 | 132 => Some x84 | 133 => Some x85 | 134 => Some x86 | 135 => Some x87 | 136 => Some x88 | 137 => Some x89 | 138 => Some x8a | 139 => Some x8b | 140 => Some x8c | 141 => Some x8d | 142 => Some x8e | 143 => Some x8f | 144 => Some x90 | 145 => Some x91 | 146 => Some x92 | 147 => Some x93 | 148 => Some x94 | 149 => Some x95 | 150 => Some x96 | 151 => Some x97 | 152 => Some x98 | 153 => Some x99 | 154 => Some x9a | 155 => Some x9b | 156 => Some x9c | 157 => Some x9d | 158 => Some x9e | 159 => Some x9f | 160 => Some xa0 | 161 => Some xa1 | 162 => Some xa2 | 163 => Some xa3 | 164 => Some xa4 | 165 => Some xa5 | 166 => Some xa6 | 167 => Some xa7 | 168 => Some xa8 | 169 => Some xa9 | 170 => Some xaa | 171 => Some xab | 172 => Some xac | 173 => Some xad | 174 => Some xae | 175 => Some xaf | 176 => Some xb0 | 177 => Some xb1 | 178 => Some xb2 | 179 => Some xb3 | 180 => Some xb4 | 181 => Some xb5 | 182 => Some xb6 | 183 => Some xb7 | 184 => Some xb8 | 185 => Some xb9 | 186 => Some xba | 187 => Some xbb | 188 => Some xbc | 189 => Some xbd | 190 => Some xbe | 191 => Some xbf | 192 => Some xc0 | 193 => Some xc1 | 194 => Some xc2 | 195 => Some xc3 | 196 => Some xc4 | 197 => Some xc5 | 198 => Some xc6 | 199 => Some xc7 | 200 => Some xc8 | 201 => Some xc9 | 202 => Some xca | 203 => Some xcb | 204 => Some xcc | 205 => Some xcd | 206 => Some xce | 207 => Some xcf | 208 => Some xd0 | 209 => Some xd1 | 210 => Some xd2 | 211 => Some xd3 | 212 => Some xd4 | 213 => Some xd5 | 214 => Some xd6 | 215 => Some xd7 | 216 => Some xd8 | 217 => Some xd9 | 218 => Some xda | 219 => Some xdb | 220 => Some xdc | 221 => Some xdd | 222 => Some xde | 223 => Some xdf | 224 => Some xe0 | 225 => Some xe1 | 226 => Some xe2 | 227 => Some xe3 | 228 => Some xe4 | 229 => Some xe5 | 230 => Some xe6 | 231 => Some xe7 | 232 => Some xe8 | 233 => Some xe9 | 234 => Some xea | 235 => Some xeb | 236 => Some xec | 237 => Some xed | 238 => Some xee | 239 => Some xef | 240 => Some xf0 | 241 => Some xf1 | 242 => Some xf2 | 243 => Some xf3 | 244 => Some xf4 | 245 => Some xf5 | 246 => Some xf6 | 247 => Some xf7 | 248 => Some xf8 | 249 => Some xf9 | 250 => Some xfa | 251 => Some xfb | 252 => Some xfc | 253 => Some xfd | 254 => Some xfe | 255 => Some xff | _ => None end.x:natH:~ x <= 255H0:None = NoneNone = None -> 255 < xx:byteof_N (to_N x) = Some xdestruct x; reflexivity. Qed.x:byteof_N (to_N x) = Some xx:Ny:byteof_N x = Some y -> to_N y = xcbv [of_N]; repeat match goal with | [ |- context[match ?x with _ => _ end] ] => is_var x; destruct x | _ => intro | _ => reflexivity | _ => progress subst | [ H : Some ?a = Some ?b |- _ ] => assert (a = b) by refine match H with eq_refl => eq_refl end; clear H | [ H : None = Some _ |- _ ] => solve [ inversion H ] end. Qed.x:Ny:byteof_N x = Some y -> to_N y = xx:Ny:byteof_N x = Some y <-> to_N y = xsplit; intro; subst; (apply of_to_N || apply to_of_N); assumption. Qed.x:Ny:byteof_N x = Some y <-> to_N y = xx:Noption_map to_N (of_N x) = (if x <=? 255 then Some x else None)cbv [of_N]; repeat match goal with | [ |- context[match ?x with _ => _ end] ] => is_var x; destruct x end; reflexivity. Qed.x:Noption_map to_N (of_N x) = (if x <=? 255 then Some x else None)x:byteto_N x <= 255x:byteto_N x <= 255x:byteoption_map to_N (of_N (to_N x)) = (if to_N x <=? 255 then Some (to_N x) else None) -> to_N x <= 255x:byteSome (to_N x) = (if to_N x <=? 255 then Some (to_N x) else None) -> to_N x <= 255x:byteH:(to_N x <=? 255) = trueSome (to_N x) = Some (to_N x) -> to_N x <= 255intro; assumption. Qed.x:byteH:to_N x <= 255Some (to_N x) = Some (to_N x) -> to_N x <= 255x:Nof_N x = None <-> 255 < xx:Nof_N x = None <-> 255 < xx:Noption_map to_N (of_N x) = (if x <=? 255 then Some x else None) -> of_N x = None <-> 255 < xx:Nb:byteH:(x <=? 255) = trueSome (to_N b) = Some x -> Some b = None <-> 255 < xx:NH:(x <=? 255) = falseNone = None -> None = None <-> 255 < xx:Nb:byteH:(x <=? 255) = trueSome (to_N b) = Some x -> Some b = None <-> 255 < xrewrite N.lt_nge; intro H'; exfalso; apply H'; assumption.x:Nb:byteH:x <= 255H0:Some (to_N b) = Some x255 < x -> Some b = Nonex:NH:(x <=? 255) = falseNone = None -> None = None <-> 255 < xx:NH:(x <=? 255) = falseNone = None -> None = None <-> 255 < xrewrite N.lt_nge; intro; assumption. } Qed.x:NH:~ x <= 255H0:None = NoneNone = None -> 255 < xx:byteto_N x = N.of_nat (to_nat x)destruct x; reflexivity. Qed.x:byteto_N x = N.of_nat (to_nat x)x:byteto_nat x = N.to_nat (to_N x)destruct x; reflexivity. Qed.x:byteto_nat x = N.to_nat (to_N x)x:Nof_N x = of_nat (N.to_nat x)x:Nof_N x = of_nat (N.to_nat x)x:Nb:byteH1:of_N x = Some bSome b = of_nat (N.to_nat x)x:NH1:of_N x = NoneNone = of_nat (N.to_nat x)x:Nb:byteH1:of_N x = Some bSome b = of_nat (N.to_nat x)destruct b; reflexivity.b:byteSome b = of_nat (N.to_nat (to_N b))x:NH1:of_N x = NoneNone = of_nat (N.to_nat x)x:NH1:of_N x = NoneNone = of_nat (N.to_nat x)x:NH1:(255 ?= x) = LtNone = of_nat (N.to_nat x)rewrite Nat2N.inj_compare, N2Nat.id; assumption. } Qed.x:NH1:(255 ?= x) = LtPeanoNat.Nat.compare 255 (N.to_nat x) = Ltx:natof_nat x = of_N (N.of_nat x)x:natof_nat x = of_N (N.of_nat x)x:natb:byteH1:of_nat x = Some bSome b = of_N (N.of_nat x)x:natH1:of_nat x = NoneNone = of_N (N.of_nat x)x:natb:byteH1:of_nat x = Some bSome b = of_N (N.of_nat x)destruct b; reflexivity.b:byteSome b = of_N (N.of_nat (to_nat b))x:natH1:of_nat x = NoneNone = of_N (N.of_nat x)x:natH1:of_nat x = NoneNone = of_N (N.of_nat x)x:natH1:PeanoNat.Nat.compare 255 x = LtNone = of_N (N.of_nat x)rewrite N2Nat.inj_compare, Nat2N.id; assumption. } Qed. End N.x:natH1:PeanoNat.Nat.compare 255 x = Lt(255 ?= N.of_nat x) = Lt