| 533 | } |
| 534 | |
| 535 | LocalSearch::LocalSearch(ProblemData const &data, |
| 536 | SearchSpace::Neighbours neighbours, |
| 537 | PerturbationManager &perturbationManager) |
| 538 | : data(data), |
| 539 | solution_(data), |
| 540 | searchSpace_(data, neighbours), |
| 541 | perturbationManager_(perturbationManager), |
| 542 | lastTestedNodes(data.numLocations()), |
| 543 | lastTestedRoutes(data.numVehicles()), |
| 544 | lastUpdated(data.numVehicles()) |
| 545 | { |
| 546 | } |
nothing calls this directly
no test coverage detected