Event to record a deftreeops in the table.
(deftreeops-table-add grammar info) → event
Function:
(defun deftreeops-table-add (grammar info) (declare (xargs :guard (and (common-lisp::symbolp grammar) (deftreeops-table-valuep info)))) (let ((__function__ 'deftreeops-table-add)) (declare (ignorable __function__)) (cons 'table (cons 'deftreeops-table (cons (cons 'quote (cons grammar 'nil)) (cons (cons 'quote (cons info 'nil)) 'nil))))))
Theorem:
(defthm pseudo-event-formp-of-deftreeops-table-add (b* ((event (deftreeops-table-add grammar info))) (pseudo-event-formp event)) :rule-classes :rewrite)