aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 494ff43..c0b9b00 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -16,5 +16,12 @@
using namespace std;
int main(int argc, char *argv[]) {
+ int graph[9] = {
+ 3, 0, 0,
+ 0, 1, 1,
+ 0, 0, 2
+ };
+ AStar a(graph, 3, 3);
+
return 0;
}