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