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

Merge branch '498-make-print-and-check-functions-from-landmarkbase-virtual'...

Merge branch '498-make-print-and-check-functions-from-landmarkbase-virtual' into '454-implementation-of-new-nodes-creation'

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

See merge request !480
parents 33a9991c b66cb3bd
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"
Pipeline #20503 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