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