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