Solves the active multi-objective model.

Namespace: ILOG.CPLEX
Assembly: ILOG.CPLEX (in ILOG.CPLEX.dll) Version: 22.1.1.0

Syntax

C#
public virtual bool Solve(
	Cplex..::..ParameterSet[] paramsets
)
Visual Basic
Public Overridable Function Solve ( _
	paramsets As Cplex..::..ParameterSet() _
) As Boolean

Parameters

paramsets
Type: array<ILOG.CPLEX..::..Cplex..::..ParameterSet>[]()[][]

Return Value

Returns true if it finds a solution (not necessarily an optimal one).

Remarks

This method solves the model currently extracted to the invoking Cplex object using the multi-objective optimizer using the provided Cplex.ParameterSets for solving the submodels. For more detailed information see the C routine CPXXmultiobjopt, documented in the Callable Library (C API) Reference Manual.

See Also