aboutsummaryrefslogtreecommitdiffstats
path: root/include/astar.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/astar.hpp')
-rw-r--r--include/astar.hpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/astar.hpp b/include/astar.hpp
index 06fcc85..c0eeee0 100644
--- a/include/astar.hpp
+++ b/include/astar.hpp
@@ -17,9 +17,6 @@ class Node {
public:
// TODO These constructors have to change
Node();
- Node(Node *prev_node);
- Node(Node *prev_node, int g);
- ~Node();
// overloading operators for ease of use.
friend bool operator<(const Node& n1, const Node& n2);