Description
The maximum number of iterations before IPOPT should give up if it hasn't yet converged on a solution. The default value is 3000.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property MaximumIterations() As Integer
|
[C#] |
---|
public int MaximumIterations {get; set;}
|
[Managed C++] |
---|
public: __property int get_MaximumIterations(); public: __property void set_MaximumIterations(
int
);
|
[Unmanaged C++] |
---|
public: HRESULT get_MaximumIterations(
long * pVal
);
public: HRESULT put_MaximumIterations(
long newVal
);
|
[Java] |
---|
public int getMaximumIterations();
public void setMaximumIterations(
int
);
|
[Python - STK API] |
---|
@property
def MaximumIterations(self) -> int:
@MaximumIterations.setter
def MaximumIterations(self, newVal:int) -> None:
|
See Also