summaryrefslogtreecommitdiff
path: root/graphs-algo/Makefile
diff options
context:
space:
mode:
authorAndrew Guschin <saintruler@gmail.com>2021-04-04 19:51:59 +0400
committerAndrew Guschin <saintruler@gmail.com>2021-04-04 19:51:59 +0400
commit31b49d6551e068f41daae6e38d88bfe8bf5bfb23 (patch)
tree223f210fe6560a6b8578190a66ccf78ab481c89e /graphs-algo/Makefile
parent2ff0384a6e5e697f97d640c7195dcd52c310b42b (diff)
Починил алгоритм Дейкстры
Diffstat (limited to 'graphs-algo/Makefile')
-rw-r--r--graphs-algo/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/graphs-algo/Makefile b/graphs-algo/Makefile
index 7cdaf2a..5343597 100644
--- a/graphs-algo/Makefile
+++ b/graphs-algo/Makefile
@@ -9,6 +9,8 @@ test1: task1
@printf "Answer: \n"
@printf "4\n4\n1 2 1\n2 3 5\n3 4 1\n4 1 2\n2\n3" | ./task.out
@printf "Answer: \n"
+ @printf "3\n1\n1 2 1\n1 2" | ./task.out
+ @printf "Answer: \n"
task2:
$(COMPILE) -o task.out task2.cpp