Basic constructor macro for eviscconfig structures.
(make-eviscconfig [:print-level <print-level>] [:print-length <print-length>] [:replacement-alist <replacement-alist>] [:hiding-cars <hiding-cars>])
This is the usual way to construct eviscconfig structures. It simply conses together a structure with the specified fields.
This macro generates a new eviscconfig structure from scratch. See also change-eviscconfig, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-eviscconfig (&rest args) (std::make-aggregate 'eviscconfig args '((:print-level) (:print-length) (:replacement-alist) (:hiding-cars)) 'make-eviscconfig nil))
Function:
(defun eviscconfig (print-level print-length replacement-alist hiding-cars) (declare (xargs :guard (and (acl2::maybe-natp print-level) (acl2::maybe-natp print-length)))) (declare (xargs :guard t)) (let ((acl2::__function__ 'eviscconfig)) (declare (ignorable acl2::__function__)) (b* ((print-level (mbe :logic (acl2::maybe-natp-fix print-level) :exec print-level)) (print-length (mbe :logic (acl2::maybe-natp-fix print-length) :exec print-length))) (cons :eviscconfig (cons (cons print-level print-length) (cons replacement-alist hiding-cars))))))