mirror of
https://github.com/Z3Prover/z3
synced 2025-06-07 14:43:23 +00:00
fix the build
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
075cf106aa
commit
adfbc2d001
1 changed files with 1 additions and 1 deletions
|
@ -2541,7 +2541,7 @@ void read_row_cols(unsigned i, static_matrix<double, double>& A, std::ifstream &
|
||||||
lp_assert(r.size() == 4);
|
lp_assert(r.size() == 4);
|
||||||
unsigned j = atoi(r[1].c_str());
|
unsigned j = atoi(r[1].c_str());
|
||||||
double v = atof(r[3].c_str());
|
double v = atof(r[3].c_str());
|
||||||
A.add_new_element(i, j, v);
|
A.set(i, j, v);
|
||||||
} while (true);
|
} while (true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue