alt-ergo icon indicating copy to clipboard operation
alt-ergo copied to clipboard

NIA reasonning too weak

Open iguerNL opened this issue 3 years ago • 0 comments

The following formula is unsat:

(declare-fun s () Int)
(declare-fun y () Int)
(declare-fun th () Int)

(assert (> s 0))
(assert (>= s (+ (* y s) 1)))
(assert (>= (* y s) 10))

(check-sat)

But Alt-Ergo returns "unkown" on it. When asked to produce a model, it loops (in the case-split engine)

iguerNL avatar Feb 06 '21 06:02 iguerNL