CIRProcess.CIR2.isLog C# (CSharp) Method

isLog() public method

Sets the passed array with a Boolean stating if the process must be simulated as a log-normal process.
public isLog ( bool &isLog ) : void
isLog bool /// A reference to the array to be set with the required information. /// The array contains a two members set to false as this simulation /// is not log-normal. ///
return void
        public void isLog(ref bool[] isLog)
        {
            isLog[0] = false;
            isLog[1] = false;
        }