(vl-dpiprop->string x) → *
Function:
(defun vl-dpiprop->string (x) (declare (xargs :guard (vl-dpiprop-p x))) (let ((__function__ 'vl-dpiprop->string)) (declare (ignorable __function__)) (case (vl-dpiprop-fix x) ((nil) "") (:vl-dpi-context "context") (:vl-dpi-pure "pure") (otherwise (progn$ (impossible) "")))))
Theorem:
(defthm vl-dpiprop->string-of-vl-dpiprop-fix-x (equal (vl-dpiprop->string (vl-dpiprop-fix x)) (vl-dpiprop->string x)))
Theorem:
(defthm vl-dpiprop->string-vl-dpiprop-equiv-congruence-on-x (implies (vl-dpiprop-equiv x x-equiv) (equal (vl-dpiprop->string x) (vl-dpiprop->string x-equiv))) :rule-classes :congruence)