Source code for discrete_optimization.vrp.solvers.vrp_solver

#  Copyright (c) 2023 AIRBUS and its affiliates.
#  This source code is licensed under the MIT license found in the
#  LICENSE file in the root directory of this source tree.


from discrete_optimization.generic_tools.do_solver import SolverDO
from discrete_optimization.vrp.problem import VrpProblem


[docs] class VrpSolver(SolverDO): problem: VrpProblem