Greater-than-or-equal-to relation of a value of type
Function:
(defun ge-ullong-slong (x y) (declare (xargs :guard (and (ullongp x) (slongp y)))) (ge-ullong-ullong x (ullong-from-slong y)))
Theorem:
(defthm sintp-of-ge-ullong-slong (sintp (ge-ullong-slong x y)))
Theorem:
(defthm ge-ullong-slong-of-ullong-fix-x (equal (ge-ullong-slong (ullong-fix x) y) (ge-ullong-slong x y)))
Theorem:
(defthm ge-ullong-slong-ullong-equiv-congruence-on-x (implies (ullong-equiv x x-equiv) (equal (ge-ullong-slong x y) (ge-ullong-slong x-equiv y))) :rule-classes :congruence)
Theorem:
(defthm ge-ullong-slong-of-slong-fix-y (equal (ge-ullong-slong x (slong-fix y)) (ge-ullong-slong x y)))
Theorem:
(defthm ge-ullong-slong-slong-equiv-congruence-on-y (implies (slong-equiv y y-equiv) (equal (ge-ullong-slong x y) (ge-ullong-slong x y-equiv))) :rule-classes :congruence)