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