Skip to content

Commit

Permalink
disable case1
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Aug 13, 2022
1 parent d80e2fb commit f014e30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/math/simplex/model_based_opt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ namespace opt {
bool use_case1 = abs_src_c == abs_dst_c && src_c.is_pos() != dst_c.is_pos() && !abs_src_c.is_one() && t_le == dst.m_type && t_le == src.m_type;
bool use_case2 = distance.is_nonpos() || abs_src_c.is_one() || abs_dst_c.is_one();

if (use_case1) {
if (use_case1 && false) {
//
// x*src_c + s <= 0
// -x*src_c + t <= 0
Expand Down

0 comments on commit f014e30

Please sign in to comment.