Skip to content

Commit

Permalink
fix constructor initialization order
Browse files Browse the repository at this point in the history
  • Loading branch information
svigerske committed Nov 25, 2024
1 parent 52d1b58 commit 92852f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mip/HighsPrimalHeuristics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@

HighsPrimalHeuristics::HighsPrimalHeuristics(HighsMipSolver& mipsolver)
: mipsolver(mipsolver),
lp_iterations(0),
total_repair_lp(0),
total_repair_lp_feasible(0),
total_repair_lp_iterations(0),
lp_iterations(0),
randgen(mipsolver.options_mip_->random_seed) {
successObservations = 0;
numSuccessObservations = 0;
Expand Down

0 comments on commit 92852f6

Please sign in to comment.