Skip to content

Commit

Permalink
Fix style.
Browse files Browse the repository at this point in the history
  • Loading branch information
grucla committed Feb 7, 2024
1 parent adf5127 commit 4153073
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/search/heuristics/blind_search_heuristic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ class BlindSearchHeuristicFeature : public plugins::TypedFeature<Evaluator, Blin
virtual shared_ptr<BlindSearchHeuristic> create_component(
const plugins::Options &opts, const utils::Context &) const override {
return plugins::make_shared_from_args_tuple_and_args<BlindSearchHeuristic>(
Heuristic::get_heuristic_parameters_from_options(opts)
);
Heuristic::get_heuristic_parameters_from_options(opts)
);
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/search/heuristics/cea_heuristic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ class ContextEnhancedAdditiveHeuristicFeature : public plugins::TypedFeature<Eva
const plugins::Options &opts, const utils::Context &) const override {
return plugins::make_shared_from_args_tuple_and_args<ContextEnhancedAdditiveHeuristic>(
Heuristic::get_heuristic_parameters_from_options(opts)
);
);
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/search/heuristics/cg_heuristic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ class CGHeuristicFeature : public plugins::TypedFeature<Evaluator, CGHeuristic>
return plugins::make_shared_from_args_tuple_and_args<CGHeuristic>(
Heuristic::get_heuristic_parameters_from_options(opts),
opts.get<int>("max_cache_size")
);
);
}
};

Expand Down

0 comments on commit 4153073

Please sign in to comment.