(aabf-logxor-ss a b man) → (mv xab new-man)
Function:
(defun aabf-logxor-ss (a b man) (declare (xargs :guard (and (true-listp a) (true-listp b)))) (declare (xargs :guard (and (aabflist-p a man) (aabflist-p b man)))) (let ((__function__ 'aabf-logxor-ss)) (declare (ignorable __function__)) (b* (((mv af ar aend) (aabf-first/rest/end a)) ((mv bf br bend) (aabf-first/rest/end b)) ((mv c man) (aabf-xor af bf man)) ((when (and aend bend)) (mv (list c) man))) (aabf-nest (aabf-scons c (aabf-logxor-ss ar br)) man))))
Theorem:
(defthm trivial-theorem-about-aabf-logxor-ss (b* nil (b* ((?ignore (aabf-logxor-ss a b man))) t)) :rule-classes nil)
Theorem:
(defthm true-listp-of-aabf-logxor-ss.xab (b* (((mv ?xab ?new-man) (aabf-logxor-ss a b man))) (true-listp xab)) :rule-classes :type-prescription)
Theorem:
(defthm aabf-extension-p-of-aabf-logxor-ss (b* (((mv ?xab ?new-man) (aabf-logxor-ss a b man))) (aabf-extension-p new-man man)))
Theorem:
(defthm aabf-p-of-aabf-logxor-ss (b* (((mv xab new-man) (aabf-logxor-ss a b man))) (implies (and (aabflist-p a man) (aabflist-p b man)) (and (aabflist-p xab new-man)))))
Theorem:
(defthm aabf-eval-of-aabf-logxor-ss (b* (((mv xab new-man) (aabf-logxor-ss a b man))) (implies (and (aabflist-p a man) (aabflist-p b man)) (and (equal (bools->int (aabflist-eval xab env new-man)) (logxor (bools->int (aabflist-eval a env man)) (bools->int (aabflist-eval b env man))))))))
Theorem:
(defthm aabf-pred-of-aabf-logxor-ss (b* (((mv xab new-man) (aabf-logxor-ss a b man))) (implies (and (aabflist-p a man) (aabflist-p b man) (aabflist-pred a man) (aabflist-pred b man)) (and (aabflist-pred xab new-man)))))