From b048c6dc4f75895f7cac0bb04de61b0f068af900 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Mon, 1 Jan 2024 20:12:48 +0100 Subject: [PATCH] algorithms(bf-to-astar): add headers to satisfy compilation Signed-off-by: Matej Focko --- static/files/algorithms/paths/bf-to-astar/astar.hpp | 4 ++++ static/files/algorithms/paths/bf-to-astar/dijkstra.hpp | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 static/files/algorithms/paths/bf-to-astar/astar.hpp create mode 100644 static/files/algorithms/paths/bf-to-astar/dijkstra.hpp diff --git a/static/files/algorithms/paths/bf-to-astar/astar.hpp b/static/files/algorithms/paths/bf-to-astar/astar.hpp new file mode 100644 index 0000000..210e348 --- /dev/null +++ b/static/files/algorithms/paths/bf-to-astar/astar.hpp @@ -0,0 +1,4 @@ +#ifndef _ASTAR_HPP +#define _ASTAR_HPP + +#endif /* _ASTAR_HPP */ diff --git a/static/files/algorithms/paths/bf-to-astar/dijkstra.hpp b/static/files/algorithms/paths/bf-to-astar/dijkstra.hpp new file mode 100644 index 0000000..8d575b7 --- /dev/null +++ b/static/files/algorithms/paths/bf-to-astar/dijkstra.hpp @@ -0,0 +1,4 @@ +#ifndef _DIJKSTRA_HPP +#define _DIJKSTRA_HPP + +#endif /* _DIJKSTRA_HPP */