Description
The tolerance by which user-specified constraints are allowed to be violated with the solution still considered feasible. The default value is 1.0E-4.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property ToleranceOnConstraintViolation() As Double
|
[C#] |
---|
public double ToleranceOnConstraintViolation {get; set;}
|
[Managed C++] |
---|
public: __property double get_ToleranceOnConstraintViolation(); public: __property void set_ToleranceOnConstraintViolation(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ToleranceOnConstraintViolation(
double * pVal
);
public: HRESULT put_ToleranceOnConstraintViolation(
double newVal
);
|
[Java] |
---|
public double getToleranceOnConstraintViolation();
public void setToleranceOnConstraintViolation(
double
);
|
[Python - STK API] |
---|
@property
def ToleranceOnConstraintViolation(self) -> float:
@ToleranceOnConstraintViolation.setter
def ToleranceOnConstraintViolation(self, newVal:float) -> None:
|
See Also