diff options
Diffstat (limited to 'solution_algorithm.hpp')
-rw-r--r-- | solution_algorithm.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/solution_algorithm.hpp b/solution_algorithm.hpp index 440264b..f182aa8 100644 --- a/solution_algorithm.hpp +++ b/solution_algorithm.hpp @@ -16,8 +16,6 @@ private: Node *parent_p; int depth; int evaluation; - friend struct std::hash<std::shared_ptr<Node>>; - friend class ASearch; public: Node(std::vector<GameParams::coordinates>& s, Node *p = nullptr, int d = 0, int e = 0) @@ -30,6 +28,8 @@ public: return first->evaluation > second->evaluation; } }; + friend struct std::hash<std::shared_ptr<Node>>; + friend class ASearch; }; template<> |