Eldarica says `unsat` for the following example, whereas both z3 and cvc4 say `sat`, so I'm just wondering how Eldarica handles it. ``` (declare-const c Int) (assert (and (= c (div 5 0)) (not (= c 0)) )) (check-sat) (get-model) ```