complete rework of the user interface (using raygui)

This commit is contained in:
2026-02-27 02:58:35 +01:00
parent bd1bd79825
commit 2517a9d33b
20 changed files with 1781 additions and 586 deletions

View File

@ -30,14 +30,6 @@ auto CalculateDistances(
adjacency[from].push_back(to);
adjacency[to].push_back(from);
}
// for (size_t i = 0; i < adjacency.size(); ++i) {
// std::cout << "Node " << i << "'s neighbors: ";
// for (const auto &neighbor : adjacency[i]) {
// std::cout << neighbor;
// }
// std::cout << "\n";
// }
// std::cout << std::endl;
std::vector<int> distances(node_count, -1);
std::vector<std::size_t> parents(node_count, -1);