aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-03-27 09:09:00 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-03-27 09:09:00 +0300
commitcdf2fa8f86e19929f5d393f292cadc1f18ceabfc (patch)
treeb4a8991ddb1b2ca9cb222c7b34481f8a60aaa283 /main.c
parent28618b65b32009fd4e718578b3314e2ae91927f7 (diff)
downloadastar-cdf2fa8f86e19929f5d393f292cadc1f18ceabfc.tar.xz
Start working in Dijkstra
Diffstat (limited to 'main.c')
-rw-r--r--main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.c b/main.c
index 7c95dd8..eabc052 100644
--- a/main.c
+++ b/main.c
@@ -72,6 +72,7 @@ int main(int argc, char **argv) {
* -f {filename} to load a map from the filename
* -4 for four directions
* -8 for eight directions */
+ /* TODO: Argument to choose the algorithm */
int opt;
while ((opt = getopt(argc, argv, ":am:f:48")) != -1) {
switch (opt) {