diff options
Diffstat (limited to 'Pathfinder.h')
| -rw-r--r-- | Pathfinder.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Pathfinder.h b/Pathfinder.h index 503423e..30144f9 100644 --- a/Pathfinder.h +++ b/Pathfinder.h @@ -14,12 +14,10 @@ public: public: Pathfinder(Museum &); - virtual void find_between(const XY &, const XY &) = 0; virtual bool is_visited(const XY &); virtual bool is_solution(const XY &); - virtual bool is_solved() { return this->solved; } virtual const Path & get_solution() { return this->path; } @@ -27,7 +25,6 @@ protected: virtual void clear(); virtual void set_visited(const XY &); virtual void set_solved(const Path &); - private: size_t pos_to_idx(const XY &); std::vector<bool> visisted; |