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