Skip to content

Commit

Permalink
Change a call in select_branching_object() from initial_lp_solve() to
Browse files Browse the repository at this point in the history
dual_simplex()

Back in the years Ted changed this call to initial_lp_solve() and there must
have been a reason for that, but it really seems that dual_simplex() is the
correct call here, so we changed it back.
  • Loading branch information
febattista authored and tkralphs committed Apr 13, 2024
1 parent 45932dc commit a9b69cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LP/lp_branch.c
Original file line number Diff line number Diff line change
Expand Up @@ -1634,7 +1634,7 @@ int select_branching_object(lp_prob *p, int *cuts, branch_obj **candidate)

} else {
load_basis(lp_data, cstat, rstat);
can->termcode[j] = initial_lp_solve(lp_data, can->iterd+j);
can->termcode[j] = dual_simplex(lp_data, can->iterd+j);
total_iters+=*(can->iterd+j);

}
Expand Down

0 comments on commit a9b69cd

Please sign in to comment.