-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ | |
#include "task_proxy.h" | ||
|
||
#include "algorithms/ordered_set.h" | ||
#include "tasks/root_task.h" | ||
|
||
#include <memory> | ||
#include <vector> | ||
|
@@ -79,6 +78,7 @@ class Heuristic : public Evaluator { | |
const std::string &name, | ||
utils::Verbosity verbosity); | ||
explicit Heuristic(const plugins::Options &opts); | ||
virtual ~Heuristic() override; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
SimonDold
Author
Contributor
|
||
|
||
virtual void get_path_dependent_evaluators( | ||
std::set<Evaluator *> & /*evals*/) override { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Do we need the destructor? and is there a reason why we cannot use
= default
? I thought our convention was to leave it out if it is using its default?