Level 2 Contradiction Rule 1 and Idempotence Rule, Single Direction.
(aig-and-pass2a x y) → (mv status arg1 arg2)
Function:
(defun aig-and-pass2a (x y) (declare (xargs :guard t)) (let ((__function__ 'aig-and-pass2a)) (declare (ignorable __function__)) (b* (((unless (and (not (aig-atom-p x)) (not (eq (cdr x) nil)))) (mv :fail x y)) (a (car x)) (b (cdr x)) ((when (or (aig-negation-p a y) (aig-negation-p b y))) (mv :subterm nil nil)) ((when (or (hons-equal a y) (hons-equal b y))) (mv :subterm x x))) (mv :fail x y))))
Theorem:
(defthm aig-and-pass2a-correct (b* (((mv ?status ?arg1 ?arg2) (aig-and-pass2a x y))) (equal (and (aig-eval arg1 env) (aig-eval arg2 env)) (and (aig-eval x env) (aig-eval y env)))) :rule-classes nil)
Theorem:
(defthm aig-and-pass2a-never-reduced (b* (((mv ?status ?arg1 ?arg2) (aig-and-pass2a x y))) (not (equal status :reduced))))
Theorem:
(defthm aig-and-pass2a-subterm-convention (b* (((mv ?status ?arg1 ?arg2) (aig-and-pass2a x y))) (implies (equal status :subterm) (equal arg2 arg1))))
Theorem:
(defthm aig-and-pass2a-normalize-status (b* (((mv ?status ?arg1 ?arg2) (aig-and-pass2a x y))) (implies (and (not (equal status :subterm)) (not (equal status :reduced))) (and (equal status :fail) (equal arg1 x) (equal arg2 y)))))