We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cc1a78 commit c01ec3bCopy full SHA for c01ec3b
src/expressions.lisp
@@ -61,7 +61,7 @@ constant values are mapped to `+constant+`."
61
62
; arithmetic
63
((+)
64
- (sum-linear-expressions-list (mapcar 'parse-linear-expression (rest expr))))
+ (apply 'sum-linear-expressions (mapcar 'parse-linear-expression (rest expr))))
65
66
((*)
67
(let ((factors (mapcar #'parse-linear-expression (rest expr)))
src/external-formats.lisp
@@ -240,7 +240,7 @@ boundaries are supported."
240
(let* ((var (field 3 line :symbol))
241
;; LB UB intp
242
(attrs (gethash var var-info (list 0 nil nil)))
243
- (bound-type (field 1 line :name-string)))
+ (bound-type (string-upcase (field 1 line :name-string))))
244
(setf (gethash var var-info)
245
(cond
246
((string= bound-type "LO")
0 commit comments