1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
; Milawa - A Reflective Theorem Prover
; Copyright (C) 2005-2009 Kookamara LLC
;
; Contact:
;
; Kookamara LLC
; 11410 Windermere Meadows
; Austin, TX 78759, USA
; http://www.kookamara.com/
;
; License: (An MIT/X11-style license)
;
; Permission is hereby granted, free of charge, to any person obtaining a
; copy of this software and associated documentation files (the "Software"),
; to deal in the Software without restriction, including without limitation
; the rights to use, copy, modify, merge, publish, distribute, sublicense,
; and/or sell copies of the Software, and to permit persons to whom the
; Software is furnished to do so, subject to the following conditions:
;
; The above copyright notice and this permission notice shall be included in
; all copies or substantial portions of the Software.
;
; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
; FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
; DEALINGS IN THE SOFTWARE.
;
; Original author: Jared Davis <jared@kookamara.com>
(in-package "MILAWA")
(include-book "mergesort")
(%interactive)
(%autoadmit ordered-mapp)
(%autoprove ordered-mapp-when-not-consp
(%restrict default ordered-mapp (equal x 'x)))
(%autoprove ordered-mapp-when-not-consp-of-cdr
(%restrict default ordered-mapp (equal x 'x)))
(%autoprove ordered-mapp-of-cons
(%restrict default ordered-mapp (equal x '(cons a x))))
(%autoprove booleanp-of-ordered-mapp
(%cdr-induction x))
(%autoprove ordered-mapp-of-cdr-when-ordered-mapp)
(%autoprove lemma-for-uniquep-when-ordered-mapp
(%cdr-induction x))
(%autoprove uniquep-of-domain-when-ordered-mapp
(%cdr-induction x)
(%enable default lemma-for-uniquep-when-ordered-mapp))
(%autoadmit merge-maps)
(%autoprove merge-maps-when-not-consp-left
(%restrict default merge-maps (and (equal x 'x) (equal y 'y))))
(%autoprove merge-maps-when-not-consp-right
(%restrict default merge-maps (and (equal x 'x) (equal y 'y))))
(%autoprove merge-maps-of-cons-and-cons
(%restrict default merge-maps (and (or (equal x '(cons a x))
(equal x '(cons b x)))
(or (equal y '(cons a y))
(equal y '(cons b y))))))
(%autoprove consp-of-merge-maps
(%restrict default merge-maps (and (equal x 'x) (equal y 'y))))
(%autoprove lookup-of-first-of-first)
(%autoprove lookup-when-not-first-of-first)
(%autoprove smaller-than-merge-maps
(%autoinduct merge-maps)
(%restrict default merge-maps (and (equal x 'x) (equal y 'y))))
(%autoprove ordered-mapp-of-merge-maps
(%autoinduct merge-maps x y)
(%restrict default merge-maps (and (equal x 'x) (equal y 'y))))
(%autoprove mapp-of-merge-maps
(%autoinduct merge-maps x y)
(%restrict default merge-maps (and (equal x 'x) (equal y 'y))))
(%autoprove lookup-of-merge-maps
(%autoinduct merge-maps x y)
(%restrict default merge-maps (and (equal x 'x) (equal y 'y)))
(%enable default
lemma-2-for-ordered-list-subsetp-property
lemma-for-uniquep-when-ordered-mapp))
(%autoadmit mergesort-map)
(%autoprove mergesort-map-when-not-consp
(%restrict default mergesort-map (equal x 'x)))
(%autoprove mergesort-map-when-not-consp-of-cdr
(%restrict default mergesort-map (equal x 'x)))
(%autoprove mapp-of-mergesort-map
(%autoinduct mergesort-map)
(%restrict default mergesort-map (equal x 'x)))
(%autoprove ordered-mapp-of-mergesort-map
(%autoinduct mergesort-map)
(%restrict default mergesort-map (equal x 'x)))
(verify-guards mergesort-map)
(%autoprove uniquep-of-domain-of-mergesort-map)
(%autoprove lemma-1-for-lookup-of-mergesort-map
(%use (%instance (%thm halve-list-lookup-property))))
(%autoprove lemma-2-for-lookup-of-mergesort-map
(%use (%instance (%thm halve-list-lookup-property))))
(%autoprove lookup-of-mergesort-map
(%autoinduct mergesort-map)
(%restrict default mergesort-map (equal x 'x))
(%enable default lemma-1-for-lookup-of-mergesort-map
lemma-2-for-lookup-of-mergesort-map))
(%autoprove submapp-of-mergesort-map-and-self-left
(%use (%instance (%thm submapp-badguy-membership-property)
(x (mergesort-map x))
(y x))))
(%autoprove submapp-of-mergesort-map-and-self-right
(%use (%instance (%thm submapp-badguy-membership-property)
(y (mergesort-map x))
(x x))))
(%autoprove submapp-of-mergesort-map-left)
(%autoprove submapp-of-mergesort-map-right)
(%autoadmit ordered-map-submapp)
(%autoprove ordered-map-submapp-when-not-consp-left
(%restrict default ordered-map-submapp (and (equal x 'x) (equal y 'y))))
(%autoprove ordered-map-submapp-when-not-consp-right
(%restrict default ordered-map-submapp (and (equal x 'x) (equal y 'y))))
(%autoprove ordered-map-submapp-of-cons-and-cons
(%restrict default ordered-map-submapp (and (or (equal x '(cons a x))
(equal x '(cons b x)))
(or (equal y '(cons a y))
(equal y '(cons b y))))))
(%autoprove booleanp-of-ordered-map-submapp
(%autoinduct ordered-map-submapp x y))
(%autoprove lemma-1-for-ordered-map-submapp-property)
(%autoprove lemma-2-for-ordered-map-submapp-property
(%enable default submapp))
(%autoprove lemma-3-for-ordered-map-submapp-property
(%disable default equal-of-lookups-when-submapp)
(%use (%instance (%thm equal-of-lookups-when-submapp)
(x x)
(y y)
(a (car (car x))))))
(%autoprove lemma-4-for-ordered-map-submapp-property-aux
(%autoinduct submapp1 dom x y)
(%restrict default submapp1 (equal domain 'dom)))
(%autoprove lemma-4-for-ordered-map-submapp-property
(%enable default
lemma-4-for-ordered-map-submapp-property-aux
lemma-for-uniquep-when-ordered-mapp
submapp))
(%autoprove lemma-5-for-ordered-map-submapp-property
(%disable default lemma-for-uniquep-when-ordered-mapp)
(%use (%instance (%thm lemma-for-uniquep-when-ordered-mapp)
(a (first (first x)))
(x y))))
(%autoprove lemma-6-for-ordered-map-submapp-property
(%disable default equal-of-lookups-when-submapp)
(%use (%instance (%thm equal-of-lookups-when-submapp)
(a (first (first x)))
(x x)
(y y)))
(%auto :strategy (cleanup split urewrite crewrite))
(%restrict default lookup (or (equal x 'x) (equal y 'y))))
(%autoprove lemma-7-for-ordered-map-submapp-property-aux
(%autoinduct submapp1 dom x y)
(%restrict default submapp1 (equal domain 'dom)))
(%autoprove lemma-7-for-ordered-map-submapp-property
(%enable default
submapp
lemma-for-uniquep-when-ordered-mapp)
(%use (%instance (%thm lemma-7-for-ordered-map-submapp-property-aux)
(dom (domain x)))))
(%autoprove ordered-map-submapp-property
(%autoinduct ordered-map-submapp x y)
(%enable default lemma-for-uniquep-when-ordered-mapp
lemma-1-for-ordered-map-submapp-property
lemma-2-for-ordered-map-submapp-property
lemma-3-for-ordered-map-submapp-property
lemma-4-for-ordered-map-submapp-property
lemma-5-for-ordered-map-submapp-property
lemma-6-for-ordered-map-submapp-property
lemma-7-for-ordered-map-submapp-property))
(%autoprove lemma-for-ordered-listp-when-ordered-mapp
(%restrict default << (and (equal x 'a) (equal y 'b))))
(%autoprove ordered-listp-when-ordered-mapp
(%cdr-induction x)
(%enable default lemma-for-ordered-listp-when-ordered-mapp))
(%autoprove ordered-listp-of-mergesort-map)
(%ensure-exactly-these-rules-are-missing "../../../utilities/mergesort")
|