Accord.Tests.Math.BoundedBroydenFletcherGoldfarbShannoTest.NoGradientTest C# (CSharp) Method

NoGradientTest() private method

private NoGradientTest ( ) : void
return void
        public void NoGradientTest()
        {
            var target = new BoundedBroydenFletcherGoldfarbShanno(2)
            {
                Function = (x) => 0.0
            };

            target.Minimize();
        }