(sparseint$-plus x y) → sum
Function:
(defun sparseint$-plus$inline (x y) (declare (xargs :guard (and (sparseint$-p x) (sparseint$-p y)))) (declare (xargs :guard (and (sparseint$-height-correctp x) (sparseint$-height-correctp y)))) (let ((__function__ 'sparseint$-plus)) (declare (ignorable __function__)) (b* (((mv sum ?height) (sparseint$-plus-offset x (sparseint$-height x) 0 y (sparseint$-height y) 0))) sum)))
Theorem:
(defthm sparseint$-p-of-sparseint$-plus (b* ((sum (sparseint$-plus$inline x y))) (sparseint$-p sum)) :rule-classes :rewrite)
Theorem:
(defthm sparseint$-height-correctp-of-sparseint$-plus (b* ((?sum (sparseint$-plus$inline x y))) (implies (and (sparseint$-height-correctp x) (sparseint$-height-correctp y)) (sparseint$-height-correctp sum))))
Theorem:
(defthm sparseint$-val-of-sparseint$-plus (b* ((?sum (sparseint$-plus$inline x y))) (equal (sparseint$-val sum) (+ (sparseint$-val x) (sparseint$-val y)))))
Theorem:
(defthm sparseint$-plus$inline-of-sparseint$-fix-x (equal (sparseint$-plus$inline (sparseint$-fix x) y) (sparseint$-plus$inline x y)))
Theorem:
(defthm sparseint$-plus$inline-sparseint$-equiv-congruence-on-x (implies (sparseint$-equiv x x-equiv) (equal (sparseint$-plus$inline x y) (sparseint$-plus$inline x-equiv y))) :rule-classes :congruence)
Theorem:
(defthm sparseint$-plus$inline-of-sparseint$-fix-y (equal (sparseint$-plus$inline x (sparseint$-fix y)) (sparseint$-plus$inline x y)))
Theorem:
(defthm sparseint$-plus$inline-sparseint$-equiv-congruence-on-y (implies (sparseint$-equiv y y-equiv) (equal (sparseint$-plus$inline x y) (sparseint$-plus$inline x y-equiv))) :rule-classes :congruence)