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