Source code for desdeo_mcdm.interactive.InteractiveMethod

from desdeo_problem.problem import MOProblem


[docs]class InteractiveMethod: """The base class for interactive methods. Args: problem (MOProblem): The problem being solved in an interactive method. """ def __init__(self, problem: MOProblem): self._problem = problem