We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the middle of simplex_solver_remove_constraint, I see:
no_columns: if (g_hash_table_lookup (solver->rows, marker) != NULL) simplex_solver_remove_row (solver, marker, TRUE); else variable_unref (marker);
But I can't find a corresponding ref that the unref would match up with.
And also, a few lines further down, I see:
if (v != marker) simplex_solver_remove_column (solver, v);
Even if we had a reference, should we really be dropping it before this use of marker ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the middle of simplex_solver_remove_constraint, I see:
no_columns:
if (g_hash_table_lookup (solver->rows, marker) != NULL)
simplex_solver_remove_row (solver, marker, TRUE);
else
variable_unref (marker);
But I can't find a corresponding ref that the unref would match up with.
And also, a few lines further down, I see:
Even if we had a reference, should we really be dropping it before this use of marker ?
The text was updated successfully, but these errors were encountered: