Source code for discrete_optimization.generic_rcpsp_tools.generic_rcpsp_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 typing import Any

from discrete_optimization.generic_rcpsp_tools.typing import ANY_RCPSP
from discrete_optimization.generic_tools.do_solver import SolverDO


[docs] class SolverGenericRCPSP(SolverDO): problem: ANY_RCPSP