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