File: queue8-l.lisp

package info (click to toggle)
acl2 8.6%2Bdfsg-2
  • links: PTS
  • area: main
  • in suites: trixie
  • size: 1,111,420 kB
  • sloc: lisp: 17,818,294; java: 125,359; python: 28,122; javascript: 23,458; cpp: 18,851; ansic: 11,569; perl: 7,678; xml: 5,591; sh: 3,976; makefile: 3,833; ruby: 2,633; yacc: 1,126; ml: 763; awk: 295; csh: 233; lex: 197; php: 178; tcl: 49; asm: 23; haskell: 17
file content (681 lines) | stat: -rw-r--r-- 24,618 bytes parent folder | download | duplicates (4)
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
;; Copyright (C) 2017, Regents of the University of Texas
;; Written by Cuong Chau
;; License: A 3-clause BSD license.  See the LICENSE file distributed with
;; ACL2.

;; Cuong Chau <ckcuong@cs.utexas.edu>
;; May 2019

(in-package "ADE")

(include-book "queue4-l")

(local (include-book "arithmetic/top" :dir :system))

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

;; ======================================================================

;;; Table of Contents:
;;;
;;; 1. DE Module Generator of QUEUE8-L
;;; 2. Multi-Step State Lemma
;;; 3. Single-Step-Update Property
;;; 4. Relationship Between the Input and Output Sequences

;; ======================================================================

;; 1. DE Module Generator of QUEUE8-L
;;
;; Construct a DE module generator for a queue of 8 links, QUEUE8-L, using the
;; link-joint model.  Prove the value and state lemmas for this module
;; generator.  Note that QUEUE8-L is a complex link.  It is constructed by
;; concatenating two instances of QUEUE4-L via a buffer joint.

(defconst *queue8-l$prim-go-num* 1)
(defconst *queue8-l$go-num* (+ *queue8-l$prim-go-num*
                               (* 2 *queue4-l$go-num*)))

(defun queue8-l$data-ins-len (data-size)
  (declare (xargs :guard (natp data-size)))
  (+ 2 (mbe :logic (nfix data-size)
            :exec  data-size)))

(defun queue8-l$ins-len (data-size)
  (declare (xargs :guard (natp data-size)))
  (+ (queue8-l$data-ins-len data-size)
     *queue8-l$go-num*))

;; DE module generator of QUEUE8-L

(module-generator
 queue8-l* (data-size)
 (si 'queue8-l data-size)
 (list* 'in-act 'out-act (append (sis 'data-in 0 data-size)
                                 (sis 'go 0 *queue8-l$go-num*)))
 (list* 'ready-in- 'ready-out
        (sis 'data-out 0 data-size))
 '(q4-l0 q4-l1)
 (list
  ;; LINKS
  ;; 4-link queue Q4-L0
  (list 'q4-l0
        (list* 'ready-in- 'q4-l0-ready-out
               (sis 'q4-l0-data-out 0 data-size))
        (si 'queue4-l data-size)
        (list* 'in-act 'trans-act
               (append (sis 'data-in 0 data-size)
                       (sis 'go
                            *queue8-l$prim-go-num*
                            *queue4-l$go-num*))))

  ;; 4-link queue Q4-L1
  (list 'q4-l1
        (list* 'q4-l1-ready-in- 'ready-out
               (sis 'data-out 0 data-size))
        (si 'queue4-l data-size)
        (list* 'trans-act 'out-act
               (append (sis 'q4-l1-data-in 0 data-size)
                       (sis 'go
                            (+ *queue8-l$prim-go-num*
                               *queue4-l$go-num*)
                            *queue4-l$go-num*))))

  ;; JOINT
  ;; Transfer data from Q4-L0 to Q4-L1
  (list 'trans-cntl
        '(trans-act)
        'joint-cntl
        (list 'q4-l0-ready-out 'q4-l1-ready-in- (si 'go 0)))
  (list 'trans-op
        (sis 'q4-l1-data-in 0 data-size)
        (si 'v-buf data-size)
        (sis 'q4-l0-data-out 0 data-size)))

 (declare (xargs :guard (natp data-size))))

(make-event
 `(progn
    ,@(state-accessors-gen 'queue8-l '(q4-l0 q4-l1) 0)))

;; DE netlist generator.  A generated netlist will contain an instance of
;; QUEUE8-L.

(defund queue8-l$netlist (data-size)
  (declare (xargs :guard (natp data-size)))
  (cons (queue8-l* data-size)
        (union$ (queue4-l$netlist data-size)
                :test 'equal)))

;; Recognizer for QUEUE8-L

(defund queue8-l& (netlist data-size)
  (declare (xargs :guard (and (alistp netlist)
                              (natp data-size))))
  (b* ((subnetlist (delete-to-eq (si 'queue8-l data-size) netlist)))
    (and (equal (assoc (si 'queue8-l data-size) netlist)
                (queue8-l* data-size))
         (joint-cntl& subnetlist)
         (v-buf& subnetlist data-size)
         (queue4-l& subnetlist data-size))))

;; Sanity check

(local
 (defthmd check-queue8-l$netlist-64
   (and (net-syntax-okp (queue8-l$netlist 64))
        (net-arity-okp (queue8-l$netlist 64))
        (queue8-l& (queue8-l$netlist 64) 64))))

;; Constraints on the state of QUEUE8-L

(defund queue8-l$st-format (st data-size)
  (b* ((q4-l0 (nth *queue8-l$q4-l0* st))
       (q4-l1 (nth *queue8-l$q4-l1* st)))
    (and (queue4-l$st-format q4-l0 data-size)
         (queue4-l$st-format q4-l1 data-size))))

(defthm queue8-l$st-format=>constraint
  (implies (queue8-l$st-format st data-size)
           (natp data-size))
  :hints (("Goal" :in-theory (enable queue8-l$st-format)))
  :rule-classes :forward-chaining)

(defund queue8-l$valid-st (st data-size)
  (b* ((q4-l0 (nth *queue8-l$q4-l0* st))
       (q4-l1 (nth *queue8-l$q4-l1* st)))
    (and (queue4-l$valid-st q4-l0 data-size)
         (queue4-l$valid-st q4-l1 data-size))))

(defthmd queue8-l$valid-st=>constraint
  (implies (queue8-l$valid-st st data-size)
           (natp data-size))
  :hints (("Goal" :in-theory (enable queue4-l$valid-st=>constraint
                                     queue8-l$valid-st)))
  :rule-classes :forward-chaining)

(defthmd queue8-l$valid-st=>st-format
  (implies (queue8-l$valid-st st data-size)
           (queue8-l$st-format st data-size))
  :hints (("Goal" :in-theory (e/d (queue4-l$valid-st=>st-format
                                   queue8-l$st-format
                                   queue8-l$valid-st)
                                  ()))))

;; Extract the input and output signals for QUEUE8-L

(progn
  ;; Extract the "in-act" signal

  (defund queue8-l$in-act (inputs)
    (nth 0 inputs))

  ;; Extract the "out-act" signal

  (defund queue8-l$out-act (inputs)
    (nth 1 inputs))

  ;; Extract the input data

  (defun queue8-l$data-in (inputs data-size)
    (declare (xargs :guard (and (true-listp inputs)
                                (natp data-size))))
    (take (mbe :logic (nfix data-size)
               :exec  data-size)
          (nthcdr 2 inputs)))

  (defthm len-queue8-l$data-in
    (equal (len (queue8-l$data-in inputs data-size))
           (nfix data-size)))

  (in-theory (disable queue8-l$data-in))

  ;; Extract the inputs for the Q4-L0 link

  (defund queue8-l$q4-l0-inputs (inputs st data-size)
    (b* ((in-act (queue8-l$in-act inputs))
         (data-in (queue8-l$data-in inputs data-size))
         (go-signals (nthcdr (queue8-l$data-ins-len data-size) inputs))

         (go-trans (nth 0 go-signals))
         (q4-l0-go-signals (take *queue4-l$go-num*
                                 (nthcdr *queue8-l$prim-go-num*
                                         go-signals)))

         (q4-l0 (nth *queue8-l$q4-l0* st))
         (q4-l1 (nth *queue8-l$q4-l1* st))

         (trans-act (joint-act (queue4-l$ready-out q4-l0)
                               (queue4-l$ready-in- q4-l1)
                               go-trans)))

      (list* in-act trans-act
             (append data-in q4-l0-go-signals))))

  ;; Extract the inputs for the Q4-L1 link

  (defund queue8-l$q4-l1-inputs (inputs st data-size)
    (b* ((out-act (queue8-l$out-act inputs))
         (go-signals (nthcdr (queue8-l$data-ins-len data-size) inputs))

         (go-trans (nth 0 go-signals))
         (q4-l1-go-signals (take *queue4-l$go-num*
                                 (nthcdr (+ *queue8-l$prim-go-num*
                                            *queue4-l$go-num*)
                                         go-signals)))

         (q4-l0 (nth *queue8-l$q4-l0* st))
         (q4-l1 (nth *queue8-l$q4-l1* st))

         (trans-act (joint-act (queue4-l$ready-out q4-l0)
                               (queue4-l$ready-in- q4-l1)
                               go-trans)))

      (list* trans-act out-act
             (append (queue4-l$data-out q4-l0)
                     q4-l1-go-signals))))

  ;; Extract the "ready-in-" signal

  (defund queue8-l$ready-in- (st)
    (b* ((q4-l0 (nth *queue8-l$q4-l0* st)))
      (queue4-l$ready-in- q4-l0)))

  (defthm booleanp-queue8-l$ready-in-
    (implies (queue8-l$valid-st st data-size)
             (booleanp (queue8-l$ready-in- st)))
    :hints (("Goal" :in-theory (enable queue8-l$valid-st
                                       queue8-l$ready-in-)))
    :rule-classes (:rewrite :type-prescription))

  ;; Extract the "ready-out" signal

  (defund queue8-l$ready-out (st)
    (b* ((q4-l1 (nth *queue8-l$q4-l1* st)))
      (queue4-l$ready-out q4-l1)))

  (defthm booleanp-queue8-l$ready-out
    (implies (queue8-l$valid-st st data-size)
             (booleanp (queue8-l$ready-out st)))
    :hints (("Goal" :in-theory (enable queue8-l$valid-st
                                       queue8-l$ready-out)))
    :rule-classes (:rewrite :type-prescription))

  ;; Extract the output data

  (defund queue8-l$data-out (st)
    (b* ((q4-l1 (nth *queue8-l$q4-l1* st)))
      (queue4-l$data-out q4-l1)))

  (defthm len-queue8-l$data-out-1
    (implies (queue8-l$st-format st data-size)
             (equal (len (queue8-l$data-out st))
                    data-size))
    :hints (("Goal" :in-theory (enable queue8-l$st-format
                                       queue8-l$data-out))))

  (defthm len-queue8-l$data-out-2
    (implies (queue8-l$valid-st st data-size)
             (equal (len (queue8-l$data-out st))
                    data-size))
    :hints (("Goal" :in-theory (enable queue8-l$valid-st
                                       queue8-l$data-out))))

  (defthm bvp-queue8-l$data-out
    (implies (and (queue8-l$valid-st st data-size)
                  (queue8-l$ready-out st))
             (bvp (queue8-l$data-out st)))
    :hints (("Goal" :in-theory (enable queue8-l$valid-st
                                       queue8-l$ready-out
                                       queue8-l$data-out))))

  (defun queue8-l$outputs (inputs st data-size)
    (declare (ignore inputs data-size))
    (list* (queue8-l$ready-in- st)
           (queue8-l$ready-out st)
           (queue8-l$data-out st)))
  )

;; The value lemma for QUEUE8-L

(defthm queue8-l$value
  (b* ((inputs (list* in-act out-act (append data-in go-signals))))
    (implies (and (queue8-l& netlist data-size)
                  (queue8-l$st-format st data-size))
             (equal (se (si 'queue8-l data-size) inputs st netlist)
                    (queue8-l$outputs inputs st data-size))))
  :hints (("Goal"
           :do-not-induct t
           :expand (:free (inputs data-size)
                          (se (si 'queue8-l data-size) inputs st netlist))
           :in-theory (e/d (de-rules
                            queue8-l&
                            queue8-l*$destructure
                            queue8-l$st-format
                            queue8-l$ready-in-
                            queue8-l$ready-out
                            queue8-l$data-out)
                           (de-module-disabled-rules)))))

;; This function specifies the next state of QUEUE8-L.

(defun queue8-l$step (inputs st data-size)
  (b* ((q4-l0 (nth *queue8-l$q4-l0* st))
       (q4-l1 (nth *queue8-l$q4-l1* st))

       (q4-l0-inputs (queue8-l$q4-l0-inputs inputs st data-size))
       (q4-l1-inputs (queue8-l$q4-l1-inputs inputs st data-size)))
    (list
     ;; Q4-L0
     (queue4-l$step q4-l0-inputs q4-l0 data-size)
     ;; Q4-L1
     (queue4-l$step q4-l1-inputs q4-l1 data-size))))

(defthm queue8-l$step-v-threefix-of-data-in-canceled
  (implies
   (and (true-listp data-in)
        (equal (len data-in) data-size))
   (equal (queue8-l$step (list* in-act out-act
                                (append (v-threefix data-in) go-signals))
                         st
                         data-size)
          (queue8-l$step (list* in-act out-act
                                (append data-in go-signals))
                         st
                         data-size)))
  :hints (("Goal" :in-theory (enable queue8-l$step
                                     queue8-l$data-in
                                     queue8-l$q4-l0-inputs
                                     queue8-l$q4-l1-inputs
                                     queue8-l$in-act
                                     queue8-l$out-act))))

;; The state lemma for QUEUE8-L

(defthm queue8-l$state
  (b* ((inputs (list* in-act out-act (append data-in go-signals))))
    (implies (and (queue8-l& netlist data-size)
                  (true-listp data-in)
                  (equal (len data-in) data-size)
                  (true-listp go-signals)
                  (equal (len go-signals) *queue8-l$go-num*)
                  (queue8-l$st-format st data-size))
             (equal (de (si 'queue8-l data-size) inputs st netlist)
                    (queue8-l$step inputs st data-size))))
  :hints (("Goal"
           :do-not-induct t
           :expand (:free (inputs data-size)
                          (de (si 'queue8-l data-size) inputs st netlist))
           :in-theory (e/d (de-rules
                            queue8-l&
                            queue8-l*$destructure
                            queue8-l$st-format
                            queue8-l$in-act
                            queue8-l$out-act
                            queue8-l$data-in
                            queue8-l$q4-l0-inputs
                            queue8-l$q4-l1-inputs)
                           (de-module-disabled-rules)))))

(in-theory (disable queue8-l$step))

;; ======================================================================

;; 2. Multi-Step State Lemma

;; Conditions on the inputs

(defund queue8-l$input-format (inputs st data-size)
  (b* ((in-act     (queue8-l$in-act inputs))
       (out-act    (queue8-l$out-act inputs))
       (data-in    (queue8-l$data-in inputs data-size))
       (go-signals (nthcdr (queue8-l$data-ins-len data-size) inputs))

       (ready-in- (queue8-l$ready-in- st))
       (ready-out (queue8-l$ready-out st)))
    (and
     (if ready-in-
         (not in-act)
       (booleanp in-act))
     (if (not ready-out)
         (not out-act)
       (booleanp out-act))
     (or (not in-act) (bvp data-in))
     (true-listp go-signals)
     (= (len go-signals) *queue8-l$go-num*)
     (equal inputs
            (list* in-act out-act (append data-in go-signals))))))

(local
 (defthm queue8-l$input-format=>q4-l0$input-format
   (implies (and (queue8-l$input-format inputs st data-size)
                 (queue8-l$valid-st st data-size))
            (queue4-l$input-format
             (queue8-l$q4-l0-inputs inputs st data-size)
             (nth *queue8-l$q4-l0* st)
             data-size))
   :hints (("Goal"
            :in-theory (e/d (queue4-l$valid-st=>constraint
                             queue4-l$input-format
                             queue4-l$in-act
                             queue4-l$out-act
                             queue4-l$data-in
                             queue8-l$input-format
                             queue8-l$valid-st
                             queue8-l$ready-in-
                             queue8-l$q4-l0-inputs)
                            ())))))

(local
 (defthm queue8-l$input-format=>q4-l1$input-format
   (implies (and (queue8-l$input-format inputs st data-size)
                 (queue8-l$valid-st st data-size))
            (queue4-l$input-format
             (queue8-l$q4-l1-inputs inputs st data-size)
             (nth *queue8-l$q4-l1* st)
             data-size))
   :hints (("Goal"
            :in-theory (e/d (joint-act
                             queue4-l$valid-st=>constraint
                             queue4-l$input-format
                             queue4-l$in-act
                             queue4-l$out-act
                             queue4-l$data-in
                             queue8-l$input-format
                             queue8-l$valid-st
                             queue8-l$ready-out
                             queue8-l$q4-l1-inputs)
                            ())))))

(defthm booleanp-queue8-l$in-act
  (implies (queue8-l$input-format inputs st data-size)
           (booleanp (queue8-l$in-act inputs)))
  :hints (("Goal" :in-theory (enable queue8-l$input-format
                                     queue8-l$in-act)))
  :rule-classes (:rewrite :type-prescription))

(defthm booleanp-queue8-l$out-act
  (implies (queue8-l$input-format inputs st data-size)
           (booleanp (queue8-l$out-act inputs)))
  :hints (("Goal" :in-theory (enable queue8-l$input-format
                                     queue8-l$out-act)))
  :rule-classes (:rewrite :type-prescription))

(simulate-lemma queue8-l :clink t)

;; ======================================================================

;; 3. Single-Step-Update Property

;; The extraction function for QUEUE8-L that extracts the future output
;; sequence from the current state.

(defund queue8-l$extract (st)
  (b* ((q4-l0 (nth *queue8-l$q4-l0* st))
       (q4-l1 (nth *queue8-l$q4-l1* st)))
    (append (queue4-l$extract q4-l0)
            (queue4-l$extract q4-l1))))

(defthm queue8-l$extract-not-empty
  (implies (and (queue8-l$ready-out st)
                (queue8-l$valid-st st data-size))
           (< 0 (len (queue8-l$extract st))))
  :hints (("Goal" :in-theory (e/d (queue8-l$valid-st
                                   queue8-l$extract
                                   queue8-l$ready-out)
                                  ())))
  :rule-classes :linear)

;; The extracted next-state function for QUEUE8-L.  Note that this function
;; avoids exploring the internal computation of QUEUE8-L.

(defund queue8-l$extracted-step (inputs st data-size)
  (b* ((data (queue8-l$data-in inputs data-size))
       (extracted-st (queue8-l$extract st))
       (n (1- (len extracted-st))))
    (cond
     ((equal (queue8-l$out-act inputs) t)
      (cond
       ((equal (queue8-l$in-act inputs) t)
        (cons data (take n extracted-st)))
       (t (take n extracted-st))))
     (t (cond
         ((equal (queue8-l$in-act inputs) t)
          (cons data extracted-st))
         (t extracted-st))))))

(local
 (defthm queue4-l$ready-out-lemma
   (implies (and (queue4-l$valid-st st data-size)
                 (equal (len (queue4-l$extract st)) 0))
            (not (queue4-l$ready-out st)))
   :hints (("Goal" :in-theory (enable queue4-l$valid-st
                                      queue4-l$extract
                                      queue4-l$ready-out)))))

;; The single-step-update property

(encapsulate
  ()

  (local
   (defthm queue8-l$q4-l0-data-in-rewrite
     (equal (queue4-l$data-in
             (queue8-l$q4-l0-inputs inputs st data-size)
             data-size)
            (queue8-l$data-in inputs data-size))
     :hints (("Goal"
              :in-theory (enable queue4-l$data-in
                                 queue8-l$data-in
                                 queue8-l$q4-l0-inputs)))))

  (local
   (defthm queue8-l$q4-l1-data-in-rewrite
     (b* ((q4-l0 (nth *queue8-l$q4-l0* st)))
       (implies (queue4-l$valid-st q4-l0 data-size)
                (equal (queue4-l$data-in
                        (queue8-l$q4-l1-inputs inputs st data-size)
                        data-size)
                       (queue4-l$data-out q4-l0))))
     :hints (("Goal"
              :in-theory (enable queue4-l$valid-st
                                 queue4-l$data-in
                                 queue4-l$data-out
                                 queue8-l$q4-l1-inputs)))))

  (local
   (defthm queue8-l$q4-l1-in-act-=-q4-l0-out-act
     (equal (queue4-l$in-act (queue8-l$q4-l1-inputs inputs st data-size))
            (queue4-l$out-act (queue8-l$q4-l0-inputs inputs st data-size)))
     :hints (("Goal" :in-theory (enable queue4-l$in-act
                                        queue4-l$out-act
                                        queue8-l$q4-l0-inputs
                                        queue8-l$q4-l1-inputs)))))

  (local
   (defthm queue8-l$q4-l0-in-act-rewrite
     (equal (queue4-l$in-act (queue8-l$q4-l0-inputs inputs st data-size))
            (queue8-l$in-act inputs))
     :hints (("Goal" :in-theory (enable queue4-l$in-act
                                        queue8-l$in-act
                                        queue8-l$q4-l0-inputs)))))

  (local
   (defthm queue8-l$q4-l1-out-act-rewrite
     (equal (queue4-l$out-act (queue8-l$q4-l1-inputs inputs st data-size))
            (queue8-l$out-act inputs))
     :hints (("Goal" :in-theory (enable queue4-l$out-act
                                        queue8-l$out-act
                                        queue8-l$q4-l1-inputs)))))

  (local
   (defthm queue8-l$extracted-step-correct-aux-1
     (equal (append x (cons e (queue4-l$extract st)))
            (append (append x (list e))
                    (queue4-l$extract st)))))

  (local
   (defthm queue8-l$extracted-step-correct-aux-2
     (equal (append x (cons e (take n (queue4-l$extract st))))
            (append (append x (list e))
                    (take n (queue4-l$extract st))))))

  (defthm queue8-l$extracted-step-correct
    (b* ((next-st (queue8-l$step inputs st data-size)))
      (implies (and (queue8-l$input-format inputs st data-size)
                    (queue8-l$valid-st st data-size))
               (equal (queue8-l$extract next-st)
                      (queue8-l$extracted-step inputs st data-size))))
    :hints (("Goal"
             :use queue8-l$input-format=>q4-l0$input-format
             :in-theory (e/d (queue4-l$valid-st=>constraint
                              queue4-l$extracted-step
                              queue8-l$extracted-step
                              queue8-l$input-format
                              queue8-l$valid-st
                              queue8-l$step
                              queue8-l$in-act
                              queue8-l$out-act
                              queue8-l$ready-in-
                              queue8-l$ready-out
                              queue8-l$extract)
                             (queue8-l$input-format=>q4-l0$input-format)))))
  )

;; ======================================================================

;; 4. Relationship Between the Input and Output Sequences

;; Prove that queue8-l$valid-st is an invariant.

(defthm queue8-l$valid-st-preserved
  (implies (and (queue8-l$input-format inputs st data-size)
                (queue8-l$valid-st st data-size))
           (queue8-l$valid-st (queue8-l$step inputs st data-size)
                            data-size))
  :hints (("Goal"
           :in-theory (e/d (queue8-l$valid-st
                            queue8-l$step)
                           ()))))

(encapsulate
  ()

  (local
   (defthm queue8-l$q4-l1-out-act-fire
     (implies (nth 1 inputs)
              (queue4-l$out-act (queue8-l$q4-l1-inputs inputs st data-size)))
     :hints (("Goal" :in-theory (enable queue4-l$out-act
                                        queue8-l$out-act
                                        queue8-l$q4-l1-inputs)))))

  (defthm queue8-l$extract-lemma-1
    (implies (and (queue8-l$input-format inputs st data-size)
                  (queue8-l$valid-st st data-size)
                  (queue8-l$out-act inputs))
             (equal (list (queue8-l$data-out st))
                    (nthcdr (1- (len (queue8-l$extract st)))
                            (queue8-l$extract st))))
    :hints (("Goal"
             :do-not-induct t
             :use queue8-l$input-format=>q4-l1$input-format
             :in-theory (e/d (queue4-l$valid-st=>constraint
                              queue8-l$input-format
                              queue8-l$valid-st
                              queue8-l$extract
                              queue8-l$out-act
                              queue8-l$ready-out
                              queue8-l$data-out)
                             (queue8-l$input-format=>q4-l1$input-format)))))

  (defthmd queue8-l$extract-lemma-2
    (implies (and (queue8-l$valid-st st data-size)
                  (queue8-l$ready-out st))
             (equal (list (queue8-l$data-out st))
                    (nthcdr (1- (len (queue8-l$extract st)))
                            (queue8-l$extract st))))
    :hints (("Goal" :in-theory (e/d (queue4-l$extract-lemma-2
                                     queue8-l$valid-st
                                     queue8-l$ready-out
                                     queue8-l$data-out
                                     queue8-l$extract)
                                    ()))))
  )

;; Extract the accepted input sequence

(seq-gen queue8-l in in-act -1
         (queue8-l$data-in inputs data-size)
         :clink t)

;; Extract the valid output sequence

(seq-gen queue8-l out out-act -1
         (queue8-l$data-out st)
         :netlist-data (nthcdr 2 outputs)
         :clink t)

;; The multi-step input-output relationship

(in-out-stream-lemma queue8-l :clink t)