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