Basic equivalence relation for boolean-result structures.
Function:
(defun boolean-result-equiv$inline (x y) (declare (xargs :guard (and (boolean-resultp x) (boolean-resultp y)))) (equal (boolean-result-fix x) (boolean-result-fix y)))
Theorem:
(defthm boolean-result-equiv-is-an-equivalence (and (booleanp (boolean-result-equiv x y)) (boolean-result-equiv x x) (implies (boolean-result-equiv x y) (boolean-result-equiv y x)) (implies (and (boolean-result-equiv x y) (boolean-result-equiv y z)) (boolean-result-equiv x z))) :rule-classes (:equivalence))
Theorem:
(defthm boolean-result-equiv-implies-equal-boolean-result-fix-1 (implies (boolean-result-equiv x x-equiv) (equal (boolean-result-fix x) (boolean-result-fix x-equiv))) :rule-classes (:congruence))
Theorem:
(defthm boolean-result-fix-under-boolean-result-equiv (boolean-result-equiv (boolean-result-fix x) x) :rule-classes (:rewrite :rewrite-quoted-constant))
Theorem:
(defthm equal-of-boolean-result-fix-1-forward-to-boolean-result-equiv (implies (equal (boolean-result-fix x) y) (boolean-result-equiv x y)) :rule-classes :forward-chaining)
Theorem:
(defthm equal-of-boolean-result-fix-2-forward-to-boolean-result-equiv (implies (equal x (boolean-result-fix y)) (boolean-result-equiv x y)) :rule-classes :forward-chaining)
Theorem:
(defthm boolean-result-equiv-of-boolean-result-fix-1-forward (implies (boolean-result-equiv (boolean-result-fix x) y) (boolean-result-equiv x y)) :rule-classes :forward-chaining)
Theorem:
(defthm boolean-result-equiv-of-boolean-result-fix-2-forward (implies (boolean-result-equiv x (boolean-result-fix y)) (boolean-result-equiv x y)) :rule-classes :forward-chaining)