3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-16 13:58:45 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-11-15 09:27:25 -08:00
parent b566b5cead
commit fbd775e5f0

View file

@ -823,6 +823,10 @@ void EGaussian::eliminate_col(unsigned p, gauss_data& gqd) {
elim_called++;
// NSB code review: can't we use mat[row_i]
// and for (unsigned row_i = 0; row_i < mat.size(); ++row_i)
// replace occurrences of *rowI by mat[row_i]
//
while (rowI != end) {
//Row has a '1' in eliminating column, and it's not the row responsible
if (new_resp_row_n != row_i && (*rowI)[new_resp_col]) {