wdsrocha / genetic-algorithm-tsp

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

Use brackets on one-liners #8

Open wdsrocha opened 4 years ago

wdsrocha commented 4 years ago

So things like

for (int i = 0; i < n; i++)
    do_something();

Become

for (int i = 0; i < n; i++)
{
    do_something();
}
Miranjunaidi commented 4 years ago

I'll take this. :)