mirror of
https://github.com/Z3Prover/z3
synced 2025-04-30 12:25:51 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
04ac5f03f7
commit
78f4513441
3 changed files with 3 additions and 3 deletions
|
@ -108,7 +108,7 @@ public:
|
|||
void init_row_from_container(int i, const T & c, std::function<unsigned (unsigned)> column_fix, const mpq& sign) {
|
||||
auto & row = m_data[adjust_row(i)];
|
||||
lp_assert(row_is_initialized_correctly(row));
|
||||
for (const auto & p : c) {
|
||||
for (lp::lar_term::ival p : c) {
|
||||
unsigned j = adjust_column(column_fix(p.column().index()));
|
||||
row[j] = sign * p.coeff();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue