Interplay between abs and div on integers
Would it be possible for COLIBRI to know about the fact that the absolute value and the division on integers can commute? that is, prove the code:
(set-logic ALL)
(set-info :smt-lib-version 2.6)
(declare-const x Int)
(declare-const y Int)
(assert
(not (= (colibri_abs_int (colibri_cdiv x y))
(colibri_cdiv (colibri_abs_int x) (colibri_abs_int y)))))
(check-sat)