File: clock-to-inv.lisp

package info (click to toggle)
acl2 8.5dfsg-5
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 991,452 kB
  • sloc: lisp: 15,567,759; javascript: 22,820; cpp: 13,929; ansic: 12,092; perl: 7,150; java: 4,405; xml: 3,884; makefile: 3,507; sh: 3,187; ruby: 2,633; ml: 763; python: 746; yacc: 723; awk: 295; csh: 186; php: 171; lex: 154; tcl: 49; asm: 23; haskell: 17
file content (465 lines) | stat: -rw-r--r-- 16,818 bytes parent folder | download
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
(in-package "ACL2")

#|

 clock-to-inv.lisp
 ~~~~~~~~~~~~~~~~~

Author: Sandip Ray
Date: Tue Jan 20 17:33:20 2004

In this book, we define a macro called clock-to-inv to convert from clock
function style proofs to inductive invariant style proofs. Both total and
partial correctness are concerned. The macro functionally instantiates the
generic theorems about clocks and invariants to produce the final theorems.

|#

(set-match-free-default :once)

(include-book "ordinals/e0-ordinal" :dir :system)
(set-well-founded-relation e0-ord-<)

;; (defun natp (n)
;;   (and (integerp n)
;;        (<= 0 n)))

(in-theory (disable natp))

;; The macro clock-to-inv below works exactly as you would expect, functionally
;; instantiating the generic functions to get the concrete theorems.

(defmacro clock-to-inv (name mode &key
                             (pre 'pre)
                             (next 'next)
                             (run 'run)
                             (external 'external)
                             (post 'post)
                             (clock 'clock))
  (declare (xargs :guard (and (symbolp name)
                              (keywordp mode)
                              (symbolp next)
                              (symbolp run)
                              (symbolp pre)
                              (symbolp post)
                              (symbolp clock))))


  ;; We create the invariant as name-inv, and create the concrete theorems as
  ;; name-thm for the corresponding abstract theorem. The user needs to check
  ;; that there are no name clashes.

  (let ((next next)
        (pre pre)
        (post post)
        (clock clock)
        (inv (packn (list name '-inv)))
        (m (packn (list name '-m))))

    (if (eq mode :total)

        ;; the theorems for total functions.

        (let* ((m-is-ordinal (packn (list name '-m-is-ordinal)))
               (m-decreases (packn (list name '-m-decreases)))
               (pre-has-inv (packn (list name '-pre-has-inv)))
               (inv-persists (packn (list name '-inv-persists)))
               (inv-and-external-implies-post
                (packn (list name '-inv-and-external-implies-post))))

        `(encapsulate

          (((,inv *) => *)
           ((,m *) => *))

          (local (include-book "c2i-total"))

          (local
           (defun-sk exists-pre-state (s)
             (exists (init i)
                     (and (,pre init)
                          (natp i)
                          (< i (,clock init))
                          (equal s (,run init i))))))

          (local (in-theory (disable mv-nth)))

          (local
           (defun ,inv (s)
             (and (exists-pre-state s)
                  (not (,external s)))))

          (local
           (defun find-external (s n)
             (declare (xargs :measure (nfix n)))
             (if (or (zp n) (,external s)) 0
               (1+ (find-external (,next s) (1- n))))))


          (local
           (defun ,m (s)
             (mv-let (p i)
                     (exists-pre-state-witness s)
                     (find-external s (- (,clock p) i)))))


          (local
           (defthm m-expands
             (equal (,m s)
                    (find-external
                     s
                     (- (,clock
                         (mv-nth
                          0
                          (exists-pre-state-witness s)))
                        (mv-nth 1 (exists-pre-state-witness s)))))))

          (local (in-theory (disable ,m)))

          ;; I don't need them any more.
          (local (in-theory (disable ,next ,pre ,post ,clock)))

          (defthm ,pre-has-inv
            (implies (,pre s)
                     (,inv s))
            :otf-flg t
            :hints (("Goal"
                     :in-theory (disable total-pre-has-total-inv)
                     :use ((:functional-instance
                            total-pre-has-total-inv
                            (total-pre ,pre)
                            (total-next ,next)
                            (total-run ,run)
                            (total-post ,post)
                            (total-clock-fn ,clock)
                            (total-inv ,inv)
                            (m ,m)
                            (total-external ,external)
                            (exists-total-pre-state-witness
                             exists-pre-state-witness)
                            (exists-total-pre-state exists-pre-state)
                            (find-total-external find-external))))))



           (defthm ,inv-persists
             (implies (and (,inv s)
                           (not (,external (,next s))))
                      (,inv (,next s)))
             :hints (("Goal"
                      :in-theory
                      (disable total-inv-implies-total-next-total-inv)
                       :use ((:functional-instance
                              total-inv-implies-total-next-total-inv
                              (total-pre ,pre)
                              (total-next ,next)
                              (total-run ,run)
                              (total-post ,post)
                              (total-clock-fn ,clock)
                              (total-inv ,inv)
                              (m ,m)
                              (total-external ,external)
                              (exists-total-pre-state-witness
                               exists-pre-state-witness)
                              (exists-total-pre-state exists-pre-state)
                              (find-total-external find-external))))))



          (defthm ,inv-and-external-implies-post
            (implies (and (,inv s)
                          (,external (,next s)))
                     (,post (,next s)))
             :hints (("Goal"
                      :in-theory
                      (disable total-inv-and-total-external-implies-total-post)
                     :use ((:functional-instance
                            total-inv-and-total-external-implies-total-post
                            (total-pre ,pre)
                            (total-next ,next)
                            (total-run ,run)
                            (total-post ,post)
                            (total-clock-fn ,clock)
                            (total-inv ,inv)
                            (m ,m)
                            (total-external ,external)
                            (exists-total-pre-state-witness exists-pre-state-witness)
                            (exists-total-pre-state exists-pre-state)
                            (find-total-external find-external))))))

          (defthm ,m-is-ordinal
            (e0-ordinalp (,m s))
            :otf-flg t
            :hints (("Goal"
                     :in-theory (disable m-is-an-ordinal)
                     :use ((:functional-instance
                            m-is-an-ordinal
                            (total-pre ,pre)
                            (total-next ,next)
                            (total-run ,run)
                            (total-post ,post)
                            (total-clock-fn ,clock)
                            (total-inv ,inv)
                            (m ,m)
                            (total-external ,external)
                            (exists-total-pre-state-witness
                             exists-pre-state-witness)
                            (exists-total-pre-state exists-pre-state)
                            (find-total-external find-external))))))


          (defthm ,m-decreases
            (implies (and (,inv s)
                          (not (,external (,next s))))
                     (e0-ord-< (,m (,next s))
                               (,m s)))
            :hints (("Goal"
                     :in-theory (disable exists-pre-state
                                         internal-steps-decrease-m)
                     :use ((:functional-instance
                            internal-steps-decrease-m
                            (total-pre ,pre)
                            (total-next ,next)
                            (total-run ,run)
                            (total-post ,post)
                            (total-clock-fn ,clock)
                            (total-inv ,inv)
                            (m ,m)
                            (total-external ,external)
                            (exists-total-pre-state-witness
                             exists-pre-state-witness)
                            (exists-total-pre-state exists-pre-state)
                            (find-total-external find-external))))))))

      ;; Not total. So use the partial conditions and also prove fewer
      ;; theorems.

             (let* ((pre-has-inv (packn (list name '-pre-has-inv)))
                    (inv-persists (packn (list name '-inv-persists)))
                    (inv-and-external-implies-post
                     (packn (list name '-inv-and-external-implies-post))))

               `(encapsulate

                 (((,inv *) => *))

                  (local (include-book "c2i-partial"))

                  (local
                   (defun-sk exists-pre-state (s)
                     (exists (init i)
                             (and (,pre init)
                                  (natp i)
                                  (< i (,clock init))
                                  (equal s (,run init i))))))

                  (local
                   (defun-sk no-external-run (s)
                     (forall i (not (,external (,run s i))))))

                  (local
                   (defthm no-external-run-expanded
                     (implies (,external (,run s i))
                              (,external (,run s (no-external-run-witness s))))
                     :hints (("Goal"
                              :in-theory (disable no-external-run-necc)
                              :use ((:instance no-external-run-necc))))))

                   (local (in-theory (disable mv-nth)))

                   (local
                    (defun ,inv (s)
                      (if (no-external-run s) T
                        (and (exists-pre-state s)
                             (not (,external s))))))

                   (local (in-theory (disable ,pre ,inv
                                              ,clock ,post)))

                   (defthm ,pre-has-inv
                     (implies (,pre s)
                              (,inv s))
                     :hints (("Goal"
                              :in-theory (disable partial-pre-has-partial-inv)
                              :use ((:functional-instance
                                     partial-pre-has-partial-inv
                                     (partial-pre ,pre)
                                     (partial-next ,next)
                                     (partial-run ,run)
                                     (partial-post ,post)
                                     (partial-clock-fn ,clock)
                                     (partial-inv ,inv)
                                     (partial-external ,external)
                                     (exists-partial-pre-state-witness
                                      exists-pre-state-witness)
                                     (exists-partial-pre-state exists-pre-state)
                                     (no-partial-external-partial-run
                                      no-external-run)
                                     (no-partial-external-partial-run-witness
                                      no-external-run-witness))))))



                   (defthm ,inv-persists
                     (implies (and (,inv s)
                                   (not (,external (,next s))))
                              (,inv (,next s)))
                     :hints (("Goal"
                              :in-theory
                              (disable
                               partial-inv-implies-partial-next-partial-inv)
                              :use ((:functional-instance
                                     partial-inv-implies-partial-next-partial-inv
                                     (partial-pre ,pre)
                                     (partial-next ,next)
                                     (partial-run ,run)
                                     (partial-post ,post)
                                     (partial-clock-fn ,clock)
                                     (partial-inv ,inv)
                                     (partial-external ,external)
                                     (exists-partial-pre-state-witness
                                      exists-pre-state-witness)
                                     (exists-partial-pre-state exists-pre-state)
                                     (no-partial-external-partial-run
                                      no-external-run)
                                     (no-partial-external-partial-run-witness
                                      no-external-run-witness))))))



                   (defthm ,inv-and-external-implies-post
                     (implies (and (,inv s)
                                   (,external (,next s)))
                              (,post (,next s)))
                     :hints
                     (("Goal"
                       :in-theory
                       (disable
                        partial-inv-and-partial-external-implies-partial-post)
                       :use ((:functional-instance
                              partial-inv-and-partial-external-implies-partial-post
                              (partial-pre ,pre)
                              (partial-next ,next)
                              (partial-run ,run)
                              (partial-post ,post)
                              (partial-clock-fn ,clock)
                              (partial-inv ,inv)
                              (partial-external ,external)
                              (exists-partial-pre-state-witness
                               exists-pre-state-witness)
                              (exists-partial-pre-state exists-pre-state)
                              (no-partial-external-partial-run no-external-run)
                              (no-partial-external-partial-run-witness
                               no-external-run-witness)))))))))))


;; Testing:

;; Example 1: Total correctness

(local
 (encapsulate
  ()

  (local (defun nextt (s) s))
  (local (defun pret (s) (declare (ignore s)) nil))
  (local (defun postt (s) (declare (ignore s)) nil))
  (local (defun externalt (s) (declare (ignore s)) nil))
  (defun clkt (s) (declare (ignore s)) 0)

  (local
   (defun runt (s n)
     (if (zp n) s (runt (nextt s) (1- n)))))

  (local
   (defthm standard-theorem-1
     (implies (pret s)
              (externalt (runt s (clkt s))))))

  (local
   (defthm standard-theorem-2
     (implies (pret s)
              (postt (runt s (clkt s))))))

  (local
   (defthm pre-not-external
     (implies (pret s)
              (not (externalt s)))))

  (local
   (defthm natp-true
     (natp (clkt s))))

  (local
   (defthm standard-thm-3
     (implies (and (pret s)
                   (externalt (runt s n)))
              (<= (clkt s) n))))


  (local
   (clock-to-inv try-total
                 :total
                 :pre pret
                 :next nextt
                 :external externalt
                 :post postt
                 :run runt
                 :clock clkt))))



;; Exampl2 2: Partial correctness

(set-match-free-default :all)

(local
 (encapsulate
  ()

  (local (defun nextp (s) s))
  (local (defun prep (s) (declare (ignore s)) nil))
  (local (defun postp (s) (declare (ignore s)) nil))
  (local (defun externalp (s) (declare (ignore s)) nil))
  (local (defun clkp (s) (declare (ignore s)) 0))

  (local
   (defun runp (s n)
     (if (zp n) s (runp (nextp s) (1- n)))))

  (local
   (defthm standard-theorem-1p
     (implies (and (prep s)
                   (externalp (runp s i)))
              (externalp (runp s (clkp s))))))

  (local
   (defthm standard-theorem-2p
     (implies (and (prep s)
                   (externalp (runp s i)))
              (postp (runp s (clkp s))))))

  (local
   (defthm pre-not-externalp
     (implies (prep s)
              (not (externalp s)))))

  (local
   (defthm natp-truep
     (natp (clkp s))))

  (local
   (defthm standard-thm-3p
     (implies (and (prep s)
                   (externalp (runp s n)))
              (<= (clkp s) n))))

  (local
   (clock-to-inv try-partial
                 :partial
                 :pre prep
                 :next nextp
                 :external externalp
                 :post postp
                 :run runp
                 :clock clkp))))