Raw constructor for glcp-obj-ctrex-p structures.
Syntax:
(glcp-obj-ctrex descrip genv obj-alist dont-care-spec)
This is the lowest-level constructor for glcp-obj-ctrex-p structures. It simply conses together a structure with the specified fields.
Note: It's generally better to use macros like make-glcp-obj-ctrex or change-glcp-obj-ctrex instead. These macros lead to more readable and robust code, because you don't have to remember the order of the fields.
The glcp-obj-ctrex-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see honsed-glcp-obj-ctrex instead.
This is an ordinary constructor function introduced by std::defaggregate.
Function:
(defun glcp-obj-ctrex (descrip genv obj-alist dont-care-spec) (declare (xargs :guard (and))) (cons (cons descrip genv) (cons obj-alist dont-care-spec)))