We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello again,
I found a case where eldarica returns unexpectedly UNSAT:
(declare-datatypes ((k 0)) (((k (y Int))))) (declare-datatypes ((e 0)) (((e (f (Array Int k)))))) (declare-datatypes ((g 0)) (((g (h (Array Int e)))))) (declare-fun j (g) Bool) (assert (forall ((r g)) (=> (> (y (select (f (select (h r) 0)) 0)) 0) (j r)))) (assert (forall ((r g)) (= (> (y (select (f (select (h r) 0)) 0)) 0) (j r)))) (check-sat)
Here is how I invoked eldarica:
$ ~/eldarica/eld -cloneArrays sat.smt2 unsat
When omitting option -cloneArrays we get sat as expected. I did not expect that this option changes the sat-result or is this intended behavior?
-cloneArrays
sat
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello again,
I found a case where eldarica returns unexpectedly UNSAT:
Here is how I invoked eldarica:
When omitting option
-cloneArrays
we getsat
as expected.I did not expect that this option changes the sat-result or is this intended behavior?
The text was updated successfully, but these errors were encountered: