diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-25 13:02:38 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-25 13:02:38 +0200 |
commit | 8cf389aaf748c77aecda0b3a3773c45053b0f231 (patch) | |
tree | 91268879710d6ae2868e548d3f44c664a19443d8 /BreadthFirstPathfinder.h | |
parent | da669db4f083194bc78358041c5d9929e103ac9f (diff) |
implement all ALGA features
Diffstat (limited to 'BreadthFirstPathfinder.h')
-rw-r--r-- | BreadthFirstPathfinder.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/BreadthFirstPathfinder.h b/BreadthFirstPathfinder.h index 0c73c69..c8b9fe5 100644 --- a/BreadthFirstPathfinder.h +++ b/BreadthFirstPathfinder.h @@ -9,16 +9,10 @@ class BreadthFirstPathfinder : public Pathfinder { public: virtual void find_between(const XY &, const XY &); - virtual const Path & get_path(); private: - Path solution; XY end; std::vector<Path> find_step(const std::vector<Path> &); - -protected: - virtual void clear(); - }; |