Skip to content

Commit e6385f8

Browse files
disable bound validation in debug mode
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
1 parent 3d99ed9 commit e6385f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/math/lp/lar_solver.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1927,7 +1927,7 @@ namespace lp {
19271927
ls.add_var_bound(tv, c.kind(), c.rhs());
19281928
}
19291929
void lar_solver::update_column_type_and_bound(unsigned j, lconstraint_kind kind, const mpq& right_side, u_dependency* dep) {
1930-
SASSERT(validate_bound(j, kind, right_side, dep));
1930+
// SASSERT(validate_bound(j, kind, right_side, dep));
19311931
TRACE(
19321932
"lar_solver_feas",
19331933
tout << "j" << j << " " << lconstraint_kind_string(kind) << " " << right_side << std::endl;

0 commit comments

Comments
 (0)