mirror of
https://github.com/Z3Prover/z3
synced 2025-06-07 06:33:23 +00:00
Fixed potential bug (warning on OSX).
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
1e774064bc
commit
bc25ea404f
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ namespace smt {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!r.get_base_var() == x && x > y) {
|
if (r.get_base_var() != x && x > y) {
|
||||||
std::swap(x, y);
|
std::swap(x, y);
|
||||||
k.neg();
|
k.neg();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue