Accord.Math.Optimization.BoundedBroydenFletcherGoldfarbShannoInnerStatus.BoundedBroydenFletcherGoldfarbShannoInnerStatus C# (CSharp) Method

BoundedBroydenFletcherGoldfarbShannoInnerStatus() public method

Initializes a new instance of the BoundedBroydenFletcherGoldfarbShannoInnerStatus class with the inner status values from the original FORTRAN L-BFGS implementation.
public BoundedBroydenFletcherGoldfarbShannoInnerStatus ( int isave, double dsave, bool lsave, String csave, double work ) : System
isave int The isave L-BFGS status argument.
dsave double The dsave L-BFGS status argument.
lsave bool The lsave L-BFGS status argument.
csave String The csave L-BFGS status argument.
work double The work L-BFGS status argument.
return System
        public BoundedBroydenFletcherGoldfarbShannoInnerStatus(
            int[] isave, double[] dsave, bool[] lsave, String csave, double[] work)
        {
            this.Integers = (int[])isave.Clone();
            this.Doubles = (double[])dsave.Clone();
            this.Booleans = (bool[])lsave.Clone();
            this.Strings = (string)csave.Clone();
            this.Work = (double[])work.Clone();
        }
BoundedBroydenFletcherGoldfarbShannoInnerStatus