Basic constructor macro for vl-propalways structures.
(make-vl-propalways [:strongp <strongp>] [:range <range>] [:prop <prop>])
This is the usual way to construct vl-propalways structures. It simply conses together a structure with the specified fields.
This macro generates a new vl-propalways structure from scratch. See also change-vl-propalways, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-vl-propalways (&rest args) (std::make-aggregate 'vl-propalways args '((:strongp) (:range) (:prop)) 'make-vl-propalways nil))
Function:
(defun vl-propalways (strongp range prop) (declare (xargs :guard (and (booleanp strongp) (vl-maybe-range-p range) (vl-propexpr-p prop)))) (declare (xargs :guard t)) (let ((__function__ 'vl-propalways)) (declare (ignorable __function__)) (b* ((strongp (mbe :logic (acl2::bool-fix strongp) :exec strongp)) (range (mbe :logic (vl-maybe-range-fix range) :exec range)) (prop (mbe :logic (vl-propexpr-fix prop) :exec prop))) (cons :vl-propalways (list strongp range prop)))))