AlgorithmHelper Class

Contains general methods that support several algorithm implementations.

Definition

Namespace: Extreme.Mathematics.Algorithms
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static class AlgorithmHelper
Inheritance
Object  →  AlgorithmHelper

Remarks

This class provides several static methods that are useful in implementing numerical algorithms. If a class inherits from IterativeAlgorithm, the methods in this class may be useful.

At present, there are just two methods for convergence testing.

Methods

IsIntervalWithinTolerance Determines whether an interval is within an algorithm's requested tolerance.
IsValueWithinTolerance Determines whether a value is within an algorithm's requested tolerance.

See Also