Skip to content

Commit

Permalink
disable bound validation in debug mode
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Nov 7, 2023
1 parent 3d99ed9 commit e6385f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/math/lp/lar_solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1927,7 +1927,7 @@ namespace lp {
ls.add_var_bound(tv, c.kind(), c.rhs());
}
void lar_solver::update_column_type_and_bound(unsigned j, lconstraint_kind kind, const mpq& right_side, u_dependency* dep) {
SASSERT(validate_bound(j, kind, right_side, dep));
// SASSERT(validate_bound(j, kind, right_side, dep));
TRACE(
"lar_solver_feas",
tout << "j" << j << " " << lconstraint_kind_string(kind) << " " << right_side << std::endl;
Expand Down

0 comments on commit e6385f8

Please sign in to comment.