Skip to content
Snippets Groups Projects
Commit b66cb3bd authored by Mateus Sanches Moura's avatar Mateus Sanches Moura
Browse files

Resolve "Make print() and check() functions from LandmarkBase virtual"

parent fc7932c7
No related branches found
No related tags found
2 merge requests!480Resolve "Make print() and check() functions from LandmarkBase virtual",!448Draft: Resolve "Implementation of new nodes creation"
......@@ -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