Skip to content

Commit

Permalink
Adaptive Search Error Projection by default
Browse files Browse the repository at this point in the history
  • Loading branch information
richoux committed Jul 5, 2022
1 parent c9a4ba4 commit 624ae6e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions include/solver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,7 @@ namespace ghost
std::make_unique<algorithms::AdaptiveSearchVariableHeuristic>(),
std::make_unique<algorithms::AdaptiveSearchVariableCandidatesHeuristic>(),
std::make_unique<algorithms::AdaptiveSearchValueHeuristic>(),
std::make_unique<algorithms::CulpritSearchErrorProjection>() );
//std::make_unique<algorithms::AdaptiveSearchErrorProjection>() );
std::make_unique<algorithms::AdaptiveSearchErrorProjection>() );
// SearchUnit search_unit( _model_builder.build_model(),
// _options,
// std::make_unique<algorithms::AntidoteSearchVariableHeuristic>(),
Expand Down Expand Up @@ -341,7 +340,7 @@ namespace ghost
std::make_unique<algorithms::AdaptiveSearchVariableHeuristic>(),
std::make_unique<algorithms::AdaptiveSearchVariableCandidatesHeuristic>(),
std::make_unique<algorithms::AdaptiveSearchValueHeuristic>(),
std::make_unique<algorithms::CulpritSearchErrorProjection>() );
std::make_unique<algorithms::AdaptiveSearchErrorProjection>() );
// units.emplace_back( _model_builder.build_model(),
// _options,
// std::make_unique<algorithms::AntidoteSearchVariableHeuristic>(),
Expand Down

0 comments on commit 624ae6e

Please sign in to comment.