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