Purpose
=======
IEEECK is called from the ILAENV to verify that Infinity and
possibly NaN arithmetic is safe (i.e. will not trap).
Namespace: DotNumerics.LinearAlgebra.CSLapackAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public int Run(
int ISPEC,
double ZERO,
double ONE
)
Public Function Run (
ISPEC As Integer,
ZERO As Double,
ONE As Double
) As Integer
Request Example
View SourceParameters
- ISPEC Int32
-
(input) INTEGER
Specifies whether to test just for inifinity arithmetic
or whether to test for infinity and NaN arithmetic.
= 0: Verify infinity arithmetic only.
= 1: Verify infinity and NaN arithmetic.
- ZERO Double
-
(input) REAL
Must contain the value 0.0
This is passed to prevent the compiler from optimizing
away this code.
- ONE Double
-
(input) REAL
Must contain the value 1.0
This is passed to prevent the compiler from optimizing
away this code.
Return Value
Int32See Also