Describes the desired accuracy for an arbitrary precision floating-point operation.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
[SerializableAttribute]
public struct AccuracyGoal
<SerializableAttribute>
Public Structure AccuracyGoal
[SerializableAttribute]
public value class AccuracyGoal
[<SealedAttribute>]
[<SerializableAttribute>]
type AccuracyGoal = struct end
The AccuracyGoal type exposes the following members.
| Name | Description |
---|
 | BinaryPrecision |
Gets the number of bits of desired precision.
|
 | InheritFromOperands |
Gets whether the accuracy goal should be inherited from the operands.
|
 | IsAbsolute |
Gets whether the accuracy goal is absolute.
|
 | IsEmpty |
Gets whether an AccuracyGoal value has no value.
|
 | IsRelative |
Gets whether the accuracy goal is relative to the size of the result.
|
 | Precision |
Gets the number of decimals of desired precision.
|
 | TrackAccuracy |
Gets whether the accuracy of the result should be tracked through the calculations.
|
Top
| Name | Description |
---|
  | Absolute |
Returns an AccuracyGoal that specifies that calculations should be done
to the specified relative accuracy.
|
 | Equals | Indicates whether this instance and a specified object are equal. (Overrides ValueTypeEquals(Object).) |
 | GetHashCode | Returns the hash code for this instance. (Overrides ValueTypeGetHashCode.) |
 | GetType | Gets the Type of the current instance. (Inherited from Object.) |
  | Relative |
Returns an AccuracyGoal that specifies that calculations should be done
to the specified relative accuracy.
|
 | ToString | Returns the fully qualified type name of this instance. (Inherited from ValueType.) |
Top
Top
Top
Use the AccuracyGoal type to specify the desired accuracy of an arbitrary precision
floating-point operation.
Reference