Example #1
0
            public override Cell Evaluate(SpoolSpace Memory)
            {
                this.CheckParameters();
                Cell x = this._Children[0].Evaluate(Memory);
                Cell y = this._Children[1].Evaluate(Memory);

                return(CellFunctions.DLog(x, y));
            }