aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp.test
blob: c0b9b00515272e09e9736270c8e85fd2063817f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 *
 * description:		Displays the A* Algorithm on a grid.
 *
 * author:          Yann Herklotz <ymherklotz@gmail.com>
 * date created:    DD-MM-YYYY
 *
 */

#include "astar.hpp"
#include "priority_queue.hpp"

#include <iostream>
#include <vector>

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;
}