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