File: types-misc.lisp

package info (click to toggle)
acl2 8.3dfsg-2
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 309,408 kB
  • sloc: lisp: 3,311,842; javascript: 22,569; cpp: 9,029; ansic: 7,872; perl: 6,501; xml: 3,838; java: 3,738; makefile: 3,383; ruby: 2,633; sh: 2,489; ml: 763; python: 741; yacc: 721; awk: 260; csh: 186; php: 171; lex: 154; tcl: 49; asm: 23; haskell: 17
file content (253 lines) | stat: -rw-r--r-- 6,760 bytes parent folder | download | duplicates (6)
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
;; Functions used by both defsum and deftuple.

(in-package "ACL2")

(include-book "theory-tools")

(program)




;; A keyword alist is just an alist.
;; Look up the keyword in the alist; return default if it is not present.
(defun kwassoc (x default alist)
  (cond ((atom alist) default)
        ((eq x (caar alist)) (cdar alist))
        (t (kwassoc x default (cdr alist)))))




;; Keyword alists are constructed by separating each
;; keyword along with the argument following it from the rest of the input.
(defun strip-keywords (list)
  (if (atom list)
      ;; Return the input in case it is an atom; for situations where a single
      ;; symbol is acceptible instead of a list
      (mv list nil)
    (if (keywordp (car list))
        (mv-let (slist keyalist)
                (strip-keywords (cddr list))
                (mv slist (cons (cons (car list) (cadr list)) keyalist)))
      (mv-let (slist keyalist)
              (strip-keywords (cdr list))
              (mv (cons (car list) slist) keyalist)))))




(defun munge-components (components)
  (if (atom components)
      nil
    (cons ;; first component
     (mv-let (compo kwalist)
             (strip-keywords (car components))
             (if (consp compo)
                 (if (consp (cdr compo))
                     ;; type recognizer first, name second
                     (list* (cadr compo) (car compo) kwalist)
                   ;; no type recognizer
                   (list* (car compo) nil kwalist))
               ;; just an atom, presumably no keywords either
               (list* compo nil kwalist)))
     (munge-components (cdr components)))))

;; Utility functions for manipulating symbols.

;; Append symbols with dashes in between
(defun appsyms1 (symbols)
  (if (atom symbols)
      nil
    (if (atom (cdr symbols))
        symbols
      (list* (car symbols) '- (appsyms1 (cdr symbols))))))

(defun packsyms1 (lst)
  (cond ((null lst) "")
        (t (concatenate 'string (symbol-name (car lst))
                        (packsyms1 (cdr lst))))))

(defun packsyms (lst)
  (intern (packsyms1 lst) "ACL2"))

(defun appsyms (symbols)
  (packsyms (appsyms1 symbols)))





;; Each component within a product has a name as well as possibly a type; it
;; may have keywords as well.

(defun component-name (component)
  (car component))

(defun component-type (component)
  (cadr component))

(defun component-kwalist (component)
  (cddr component))




;; Each product has a name, a keyword list, and a list of components.
(defun product-name (product)
  (caar product))

(defun product-components (product)
  (cdar product))

(defun product-kwalist (product)
  (cdr product))



;; just the argument names, given the components of a product

(defun components-names (components)
  (if (atom components)
      nil
    (cons (component-name (car components))
          (components-names (cdr components)))))




(defun accessor-name (product component)
  (appsyms (list (product-name product) (component-name component))))

;; List of accessor names for a product
(defun accessor-list (product components)
  (if (consp components)
      (cons (accessor-name product (car components))
            (accessor-list product (cdr components)))
    nil))




(defun tm-split-list (half rest first)
  (if (zp half)
      (mv (reverse first) rest)
    (tm-split-list (1- half) (cdr rest) (cons (car rest) first))))


(defun argtree (cons args)
  (cond ((endp args)
         nil)
        ((endp (cdr args))
         (car args))
        (t (mv-let (first second)
             (tm-split-list (floor (len args) 2) args nil)
             `(,cons ,(argtree cons first)
                     ,(argtree cons second))))))



(defun recog-consp-list (nargs obj)
  (if (zp nargs)
      `((eq ,obj nil))
    (if  (= nargs 1)
        '(t)
      (let ((flo (floor nargs 2)))
        (cons `(consp ,obj)
              (append (recog-consp-list flo `(car ,obj))
                      (recog-consp-list (- nargs flo)
                                        `(cdr ,obj))))))))




(defun tree-accessor (n total nest opt)
  (if (zp total)
      nil
    (if (= 1 total)
        nest
      (let ((flo (floor total 2)))
        (if (<= n flo)
            (tree-accessor n flo `(,(if (eq opt :safe)
                                        'safe-car
                                      'car)
                                   ,nest)
                           opt)
          (tree-accessor (- n flo) (- total flo)
                         `(,(if (eq opt :safe)
                                'safe-cdr
                              'cdr)
                           ,nest)
                         opt))))))



(logic)

;; Theorems needed for proving theorems about defsum and deftuple
;; structures:
(defthmd nth-open
  (implies (not (zp n))
           (equal (nth n x)
                  (nth (1- n) (cdr x)))))

;; (defthmd safe-nth-open
;;   (implies (and (not (zp n))
;;                 (true-listp x))
;;            (equal (safe-nth n x)
;;                   (safe-nth (1- n) (cdr x))))
;;   :hints (("Goal" :in-theory (enable safe-nth))))

;; (defthmd cancel-+1
;;   (implies (and (syntaxp (quotep y))
;;                 (acl2-numberp y)
;;                 (acl2-numberp x))
;;            (equal (equal (+ 1 x) y)
;;                   (equal x (+ -1 y)))))

;; (defthmd cancel-+k
;;   (implies (and (syntaxp (quotep y))
;;                 (syntaxp (quotep k))
;;                 (acl2-numberp k)
;;                 (acl2-numberp y)
;;                 (acl2-numberp x))
;;            (equal (equal (+ k x) y)
;;                   (equal x (+ (- k) y)))))

(defthmd true-listp-len-0
  (implies (true-listp x)
           (equal (equal (len x) 0)
                  (not x))))

(defthmd acl2-count-car-cdr-of-cons-linear
  (implies (consp x)
           (and (< (acl2-count (car x)) (acl2-count x))
                (< (acl2-count (cdr x)) (acl2-count x))))
  :rule-classes :linear)

(defthmd acl2-count-nth-of-cons-linear
  (implies (consp x)
           (< (acl2-count (nth n x))
              (acl2-count x)))
  :rule-classes (:rewrite :linear)
  :hints (("Goal" :induct (nth n x))))

(defthmd acl2-count-0-len-0
  (implies (equal (acl2-count x) 0)
           (< (len x) 1))
  :rule-classes :linear)

(defthmd acl2-count-nth-of-len-2-or-greater-linear
  (and (implies (consp x)
                (<= (+ 1 (acl2-count (nth n x)))
                    (acl2-count x)))
       (implies (<= 2 (len x))
                (< (+ 1 (acl2-count (nth n x)))
                   (acl2-count x))))
  :hints (("Goal" :induct (nth n x)
           :in-theory (enable acl2-count-0-len-0)))
  :rule-classes (:rewrite :linear))

(defthmd len-0-true-listp-not-x
  (implies (and x (true-listp x))
           (not (equal (len x) 0))))