Beispiel #1
0
        public override void execute(MK52_Host components, string command)
        {
            RPN_Stack s = _dealWithClergy1(components);

            if (s == null)
            {
                return;
            }
            s.storeBx();
            double x = s.X.toReal();

            if (s.setNegativeRootWarning(x))
            {
                x = -x;
            }
            s.X.fromReal(Math.Sqrt(x));
        }