Using Z3 version 2.18, I am trying to simplify formulas such as:
- (and (> (- (- x 1) 1) 0) (> x 0))
- (or (> (- (- x 1) 1) 0) (> x 0))
hoping to get something like: (> x 2) and (> x 0).
I am running Z3 with the following input file where F is one of the above formulas:
(set-option set-param "STRONG_CONTEXT_SIMPLIFIER" "true")
(declare-const x Int)
(simplify F)
It works well with the disjunction where I get the following output:
(let (($x35 (<= x 0)))
(not $x35))
However, with the conjunction, I get:
(not (or (<= x 0) (<= x 2)))
Is there a way to force Z3 to simplify even more the above formula ? I would hope to be able to get (not (<= x 2)).
PS: Is there a way to force Z3 to inline its output (i.e. having (not (<= x 0)) instead of (let (($x35 (<= x 0))) (not $x35)))
Thanks, Gus