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