mirror of
https://github.com/Z3Prover/z3
synced 2025-05-06 07:15:47 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ca9fbcf6f4
commit
ed9c0b84f6
2 changed files with 9 additions and 6 deletions
|
@ -33,7 +33,7 @@ namespace polysat {
|
|||
for (auto c1 : core) {
|
||||
if (!c1->is_ule())
|
||||
continue;
|
||||
if (!c1.is_currently_false(s))
|
||||
if (c1.is_currently_true(s))
|
||||
continue;
|
||||
auto c = c1.as_inequality();
|
||||
if (try_ugt_x(v, core, c))
|
||||
|
@ -70,7 +70,7 @@ namespace polysat {
|
|||
SASSERT(!crit1.is_currently_true(s));
|
||||
|
||||
LOG("critical " << m_rule << " " << crit1);
|
||||
LOG("consequent " << c << " value: " << c.bvalue(s) << " " << c.is_currently_false(s) << " " << core.contains(~c));
|
||||
LOG("consequent " << c << " value: " << c.bvalue(s) << " is-false: " << c.is_currently_false(s) << " " << core.contains(~c));
|
||||
|
||||
|
||||
// ensure new core is a conflict
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue