Fixing function for matchstate structures.
(matchstate-fix x) → new-x
Function:
(defun matchstate-fix$inline (x) (declare (xargs :guard (matchstate-p x))) (let ((__function__ 'matchstate-fix)) (declare (ignorable __function__)) (mbe :logic (b* ((index (nfix (std::prod-car x))) (backrefs (backref-alist-fix (std::prod-cdr x)))) (std::prod-hons index backrefs)) :exec x)))
Theorem:
(defthm matchstate-p-of-matchstate-fix (b* ((new-x (matchstate-fix$inline x))) (matchstate-p new-x)) :rule-classes :rewrite)
Theorem:
(defthm matchstate-fix-when-matchstate-p (implies (matchstate-p x) (equal (matchstate-fix x) x)))
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)