mirror of
https://github.com/Z3Prover/z3
synced 2025-06-23 22:33:40 +00:00
deal with compiler warnings, from MacOS CI build
This commit is contained in:
parent
7eceeff349
commit
f29a596070
13 changed files with 19 additions and 25 deletions
|
@ -158,13 +158,13 @@ public:
|
|||
bool is_normalized() const {
|
||||
lpvar min_var = -1;
|
||||
mpq c;
|
||||
for (const auto & p : *this) {
|
||||
for (ival p : *this) {
|
||||
if (p.column() < min_var) {
|
||||
min_var = p.column();
|
||||
}
|
||||
}
|
||||
lar_term r;
|
||||
for (const auto & p : *this) {
|
||||
for (ival p : *this) {
|
||||
if (p.column() == min_var) {
|
||||
return p.coeff().is_one();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue