Recognizer for truth5 bit structures.
(truth5-p x) → *
Function:
(defun truth5-p (x) (declare (xargs :guard t)) (let ((__function__ 'truth5-p)) (declare (ignorable __function__)) (mbe :logic (unsigned-byte-p 32 x) :exec (and (natp x) (< x 4294967296)))))
Theorem:
(defthm truth5-p-when-unsigned-byte-p (implies (unsigned-byte-p 32 x) (truth5-p x)))
Theorem:
(defthm unsigned-byte-p-when-truth5-p (implies (truth5-p x) (unsigned-byte-p 32 x)))
Theorem:
(defthm truth5-p-compound-recognizer (implies (truth5-p x) (natp x)) :rule-classes :compound-recognizer)