Skip to content

Commit

Permalink
unsigned trials counter
Browse files Browse the repository at this point in the history
Co-authored-by: Antoine Prouvost <[email protected]>
  • Loading branch information
gasse and AntoinePrv committed Jun 17, 2021
1 parent d9019e0 commit 69375bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libecole/include/ecole/dynamics/primalsearch.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class PrimalSearchDynamics : public EnvironmentDynamics<VarIdsVals, std::optiona
int depth_start;
int depth_stop;

int trials_spent = 0; // to keep track of the number of trials during each search
unsigned int trials_spent = 0; // to keep track of the number of trials during each search
SCIP_HEUR* heur = nullptr; // to tell SCIP where primal solutions come from
SCIP_RESULT result = SCIP_DIDNOTRUN; // the final result of each search (several trials)
};
Expand Down

0 comments on commit 69375bf

Please sign in to comment.