mirror of
https://github.com/Z3Prover/z3
synced 2025-08-09 12:50:32 +00:00
fixing typo
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f7d9cdd18b
commit
fb998485f1
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ namespace xr {
|
||||||
for (const auto& clause : m_xorclauses) {
|
for (const auto& clause : m_xorclauses) {
|
||||||
bool eval = false;
|
bool eval = false;
|
||||||
for (bool_var v : clause)
|
for (bool_var v : clause)
|
||||||
eval ^= m[v];
|
eval ^= (l_true == m[v]);
|
||||||
if (eval != clause.m_rhs)
|
if (eval != clause.m_rhs)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue