ObjectiveEvaluationResults

class desdeo_problem.problem.ObjectiveEvaluationResults(objectives: float | ndarray, uncertainity: None | float | ndarray = None)[source]

Bases: NamedTuple

The return object of <problem>.evaluate methods.

objectives

The objective function value/s for the input vector.

Type:

Union[float, np.ndarray]

uncertainity

The uncertainity in the objective value/s.

Type:

Union[None, float, np.ndarray]