Beispiel #1
0
        public virtual RrFunction Mult(RrFunction other)
        {
            var step = other as StepFunction;

            if (step != null)
            {
                return(step.Mult(this));
            }

            return(RrFunctions.Product(this, other));
        }