wdsrocha / genetic-algorithm-tsp

Solving the travelling salesman problem using a genetic algorithm
Apache License 2.0
0 stars 4 forks source link

Fix indentation #2

Closed wdsrocha closed 4 years ago

wdsrocha commented 4 years ago

There are few places where indentation is kinda off

For example, on line 25 - 27 of genetic_algorithm/Main.cpp

    for (int i = 0; i < MAX_ITER; i++)
    {
        std::cout << "Iteration " << i+1 << ":\n";

the expected code should be:

    for (int i = 0; i < MAX_ITER; i++)
    {
                std::cout << "Iteration " << i+1 << ":\n";
UltimaBGD commented 4 years ago

I can take a look at this.

wdsrocha commented 4 years ago

Ok @UltimaBGD, thanks!

I'll assign it to you.