3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-10 09:48:05 +00:00

fix compiler warnings

This commit is contained in:
Nikolaj Bjorner 2025-01-12 13:39:13 -08:00
parent 85356c5548
commit 8d2b9b41fd
3 changed files with 5 additions and 3 deletions

View file

@ -28,7 +28,7 @@ class lp_bound_propagator {
// works for rows of the form x - y + sum of fixed = 0
map<mpq, unsigned, obj_hash<mpq>, default_eq<mpq>> m_row2index_neg;
const vector<column_type>* m_column_types;
const vector<column_type>* m_column_types = nullptr;
// returns true iff there is only one non-fixed column in the row
bool only_one_nfixed(unsigned r, unsigned& x) {
x = UINT_MAX;