Non-equality of a value of type
Function:
(defun ne-sint-slong (x y) (declare (xargs :guard (and (sintp x) (slongp y)))) (ne-slong-slong (slong-from-sint x) y))
Theorem:
(defthm sintp-of-ne-sint-slong (sintp (ne-sint-slong x y)))
Theorem:
(defthm ne-sint-slong-of-sint-fix-x (equal (ne-sint-slong (sint-fix x) y) (ne-sint-slong x y)))
Theorem:
(defthm ne-sint-slong-sint-equiv-congruence-on-x (implies (sint-equiv x x-equiv) (equal (ne-sint-slong x y) (ne-sint-slong x-equiv y))) :rule-classes :congruence)
Theorem:
(defthm ne-sint-slong-of-slong-fix-y (equal (ne-sint-slong x (slong-fix y)) (ne-sint-slong x y)))
Theorem:
(defthm ne-sint-slong-slong-equiv-congruence-on-y (implies (slong-equiv y y-equiv) (equal (ne-sint-slong x y) (ne-sint-slong x y-equiv))) :rule-classes :congruence)