Definition in file example.cpp.
#include <memory>
#include "pathfind.h"
Include dependency graph for example.cpp:
Go to the source code of this file.
Enumerations | |
enum | SearchAlgorithm { A_STAR, IDA_STAR, FRINGE } |
Functions | |
void | printHeader (SearchAlgorithm searchAlgorithm, Tiling::Type type) |
void | runExperiment (SearchAlgorithm searchAlgorithm, Tiling::Type type) |
int | main () |
Variables | |
const int | s_numberRuns = 100 |
const int | s_columns = 50 |
const int | s_rows = 50 |
const float | s_obstaclePercentage = 0.2 |
const long long int | s_nodesLimit = 100000000L |
|
Definition at line 26 of file example.cpp. Referenced by main(). |
|
Definition at line 117 of file example.cpp. References A_STAR, FRINGE, IDA_STAR, and runExperiment(). |
|
Definition at line 30 of file example.cpp. |
|
Definition at line 65 of file example.cpp. References A_STAR, FRINGE, IDA_STAR, printHeader(), s_columns, s_nodesLimit, s_numberRuns, s_obstaclePercentage, and s_rows. |
|
Definition at line 19 of file example.cpp. Referenced by runExperiment(). |
|
Definition at line 22 of file example.cpp. Referenced by runExperiment(). |
|
Definition at line 18 of file example.cpp. Referenced by runExperiment(). |
|
Definition at line 21 of file example.cpp. Referenced by runExperiment(). |
|
Definition at line 20 of file example.cpp. Referenced by runExperiment(). |