denisbogol

Results 1 issues of denisbogol

Hi, I was just studying the code and came across the following function: ``` Particle findLBest(int index) { std::vector neighbours; if (index == 0) { neighbours.push_back(particles_.back()); } else { neighbours.push_back(particles_[index...