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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user