Пример #1
0
 public static void UnderFlowErrorE10(ref SpecialFunctionE10Result result)
 {
     result.Val = 0.0;
     result.Err = double.MinValue;
     result.E10 = 0;
     string error = "underflow: " + PZMath_errno.PZMath_EUNDRFLW;
     throw new ApplicationException(error);
 }
Пример #2
0
 public static void OverFlowErrorE10(ref SpecialFunctionE10Result result)
 {
     result.Val = double.PositiveInfinity;
     result.Err = double.PositiveInfinity;
     result.E10 = 0;
     string error = "overflow: " + PZMath_errno.PZMath_EOVRFLW;
     throw new ApplicationException(error);
 }