aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorymherklotz <ymherklotz@gmail.com>2016-12-11 15:52:14 +0000
committerymherklotz <ymherklotz@gmail.com>2016-12-11 15:52:14 +0000
commitaa0bafd57f8be07a8214d592c1bbc10d8f5448a5 (patch)
treeea649aeb32d6da0768cd7f382a4b7bdcac74d496
parent45912bc25564150c985de69c8c35c875b3141361 (diff)
downloadA-star-algorithm-aa0bafd57f8be07a8214d592c1bbc10d8f5448a5.tar.gz
A-star-algorithm-aa0bafd57f8be07a8214d592c1bbc10d8f5448a5.zip
fixed header files
-rwxr-xr-xbin/mainbin418304 -> 416144 bytes
-rw-r--r--include/priority_queue.hpp2
-rw-r--r--src/astar.cpp1
-rw-r--r--src/main.cpp1
4 files changed, 0 insertions, 4 deletions
diff --git a/bin/main b/bin/main
index 07561f3..4fb270d 100755
--- a/bin/main
+++ b/bin/main
Binary files differ
diff --git a/include/priority_queue.hpp b/include/priority_queue.hpp
index 794638f..537d6e9 100644
--- a/include/priority_queue.hpp
+++ b/include/priority_queue.hpp
@@ -1,8 +1,6 @@
#ifndef PRIORITY_QUEUE_HPP
#define PRIORITY_QUEUE_HPP
-#include <iostream>
-
template<typename T>
class PriorityQueue {
public:
diff --git a/src/astar.cpp b/src/astar.cpp
index edbfaa9..be36ab8 100644
--- a/src/astar.cpp
+++ b/src/astar.cpp
@@ -1,7 +1,6 @@
#include "astar.hpp"
#include <cmath>
-#include <iostream>
AStar::AStar() : graph(NULL), graph_width(0), graph_height(0), path_length(10), count(0) {
}
diff --git a/src/main.cpp b/src/main.cpp
index 17fe9ad..4098b9a 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -13,7 +13,6 @@
#include <SFML/Graphics.hpp>
#include <iostream>
-#include <cstdlib>
using namespace std;