Closed BrunoDutertre closed 1 year ago
Yeah, this looks to me like a cvc5 bug, similar to the other issue. Here, step t37
concludes a unit clause with an or
term. If it instead was a clause with the two or
arguments ((cl (= e (o e0 e3)) (= e (o e0 e)))
) the proof would check without errors.
What version of cvc5 are you using? I can't reproduce this on the latest version (https://github.com/cvc5/cvc5/commit/6a0abb70032db7bd747724477ca63372e7c801eb), cvc5 adds an or
step after t37
:
(assume a1 (not (= e (o e0 e3))))
(step t37 (cl (or (= e (o e0 e3)) (= e (o e0 e)))) :rule and :premises (a0))
(step t38 (cl (= e (o e0 e3)) (= e (o e0 e))) :rule or :premises (t37))
(step t39 (cl (= e (o e0 e))) :rule resolution :premises (t38 a1))
I'm on commit d575cab3a2.
It's not fixed in https://github.com/cvc5/cvc5/commit/6a0abb70032db7bd747724477ca63372e7c801eb. The same thing happens on other examples.
Hi Bruno. In cvc5/cvc5@d575cab3a2 the fix I had done for this issue had not been merged into main yet. As of cvc5/cvc5@6a0abb7. I cannot reproduce with it this issue. Do you have other examples in which this is happening?
Yes, I have a few. ddSMT has been crunching on one of them for 5 days.
I see (now I'm a bit scared hehe). Can you please open an issue in the cvc5 repo when you have a benchmark you can share? I'll close the issue here since it's not a problem with Carcarca.
It could be a different issue. But the symptom is the same 'pivot was not eliminated`. I'll post to cvc5 when ddSMT is done.
Great, thanks!
I'm getting some errors again related to failed resolution steps. Here's a reduced example.
I got a proof from cvc5 as follows:
Then checking the proof fails:
Here's the relevant proof fragment:
Could be one of these confusing 'or' vs clause thing (a cvc5 bug), but I'm reporting it here for confirmation.