Skip to content
Snippets Groups Projects
Commit 3e5deb8a authored by Mateus's avatar Mateus
Browse files

LandmarkBase print() and check() functions are now virtual

parent fc7932c7
No related branches found
No related tags found
1 merge request!480Resolve "Make print() and check() functions from LandmarkBase virtual"
Pipeline #20215 failed
......@@ -160,15 +160,15 @@ class LandmarkBase : public NodeStateBlocks
std::ostream& stream,
std::string _tabs = "") const;
void print(int depth, //
bool factored_by, //
bool metric, //
bool state_blocks,
std::ostream& stream = std::cout,
std::string _tabs = "") const;
virtual void print(int depth, //
bool factored_by, //
bool metric, //
bool state_blocks,
std::ostream& stream = std::cout,
std::string _tabs = "") const;
virtual CheckLog localCheck(bool _verbose, std::ostream& _stream, std::string _tabs = "") const;
bool check(CheckLog& _log, bool _verbose, std::ostream& _stream, std::string _tabs = "") const;
virtual bool check(CheckLog& _log, bool _verbose, std::ostream& _stream, std::string _tabs = "") const;
private:
void setMap(const MapBasePtr _map_ptr);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment