2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-19 04:12:11 +00:00

Fix r_c_shortest_paths example

This commit is contained in:
ꓪꓱꓱꓠꓛꓧ
2023-01-26 15:10:46 +03:00
committed by GitHub
parent 231de4c573
commit 5ccd0852b7

View File

@@ -288,8 +288,8 @@ int main()
std::cout << "SPP with time windows:" << std::endl;
std::cout << "Number of optimal solutions: ";
std::cout << static_cast< int >(opt_solutions.size()) << std::endl;
for (int i = 0; i < static_cast< int >(opt_solutions.size()); ++i)
std::cout << static_cast< int >(opt_solutions_spptw.size()) << std::endl;
for (int i = 0; i < static_cast< int >(opt_solutions_spptw.size()); ++i)
{
std::cout << "The " << i << "th shortest path from A to E is: ";
std::cout << std::endl;