Description
The maximum number of iterations for the QP subproblem allowed during a single major iteration.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property MaxMinorIterations() As Integer
|
[C#] |
---|
public int MaxMinorIterations {get; set;}
|
[Managed C++] |
---|
public: __property int get_MaxMinorIterations(); public: __property void set_MaxMinorIterations(
int
);
|
[Unmanaged C++] |
---|
public: HRESULT get_MaxMinorIterations(
long * pVal
);
public: HRESULT put_MaxMinorIterations(
long newVal
);
|
[Java] |
---|
public int getMaxMinorIterations();
public void setMaxMinorIterations(
int
);
|
[Python - STK API] |
---|
@property
def MaxMinorIterations(self) -> int:
@MaxMinorIterations.setter
def MaxMinorIterations(self, newVal:int) -> None:
|
See Also