Accord.Math.RelativeConvergence.Clear C# (CSharp) Method

Clear() public method

Resets this instance, reverting all iteration statistics statistics (number of iterations, last error) back to zero.
public Clear ( ) : void
return void
        public void Clear()
        {
            CurrentIteration = 0;
            NewValue = 0;
            OldValue = 0;
            checks = 0;
        }
    }