Recognizer for svtv-evaldata structures.
(svtv-evaldata-p x) → *
Function:
(defun svtv-evaldata-p (x) (declare (xargs :guard t)) (let ((__function__ 'svtv-evaldata-p)) (declare (ignorable __function__)) (and (consp x) (consp (cdr x)) (b* ((nextstate (car x)) (inputs (car (cdr x))) (initst (cdr (cdr x)))) (and (svex-alist-p nextstate) (svex-envlist-p inputs) (svex-env-p initst))))))
Theorem:
(defthm consp-when-svtv-evaldata-p (implies (svtv-evaldata-p x) (consp x)) :rule-classes :compound-recognizer)