Constructor for values of type
(sllong-from-integer get) → y
Function:
(defun sllong-from-integer (get) (declare (xargs :guard (sllong-integerp get))) (let ((__function__ 'sllong-from-integer)) (declare (ignorable __function__)) (b* ((get (mbe :logic (sllong-integer-fix get) :exec get))) (cons :sllong (list get)))))
Theorem:
(defthm sllongp-of-sllong-from-integer (b* ((y (sllong-from-integer get))) (sllongp y)) :rule-classes :rewrite)
Theorem:
(defthm sllong-from-integer-of-sllong-integer-fix-get (equal (sllong-from-integer (sllong-integer-fix get)) (sllong-from-integer get)))
Theorem:
(defthm sllong-from-integer-sllong-integer-equiv-congruence-on-get (implies (sllong-integer-equiv get get-equiv) (equal (sllong-from-integer get) (sllong-from-integer get-equiv))) :rule-classes :congruence)