Skip to content

Commit

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

Expand Down
4 changes: 2 additions & 2 deletions src/search/heuristics/ff_heuristic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ class FFHeuristicFeature : public plugins::TypedFeature<Evaluator, FFHeuristic>
virtual shared_ptr<FFHeuristic> create_component(
const plugins::Options &opts, const utils::Context &) const override {
return plugins::make_shared_from_args_tuple_and_args<FFHeuristic>(
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/max_heuristic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class HSPMaxHeuristicFeature : public plugins::TypedFeature<Evaluator, HSPMaxHeu
virtual shared_ptr<HSPMaxHeuristic> create_component(
const plugins::Options &opts, const utils::Context &) const override {
return plugins::make_shared_from_args_tuple_and_args<HSPMaxHeuristic>(
Heuristic::get_heuristic_parameters_from_options(opts));
Heuristic::get_heuristic_parameters_from_options(opts));
}
};

Expand Down

0 comments on commit 015fe60

Please sign in to comment.