| 39 | } |
| 40 | |
| 41 | pyvrp::Solution LocalSearch::search(pyvrp::Solution const &solution, |
| 42 | CostEvaluator const &costEvaluator) |
| 43 | { |
| 44 | loadSolution(solution); |
| 45 | search(costEvaluator); |
| 46 | return solution_.unload(); |
| 47 | } |
| 48 | |
| 49 | pyvrp::Solution LocalSearch::intensify(pyvrp::Solution const &solution, |
| 50 | CostEvaluator const &costEvaluator) |