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