Esempio n. 1
0
File: Sqrt.cs Progetto: 65001/AbMath
 public static bool SqrtPowerFourRunnable(RPN.Node node)
 {
     return(node.IsSqrt() && node[0].IsExponent() &&
            node[0, 0].IsNumber() &&
            node[0, 0].GetNumber() % 4 == 0);
 }
Esempio n. 2
0
File: Sqrt.cs Progetto: 65001/AbMath
 public static bool SqrtNegativeNumbersRunnable(RPN.Node node)
 {
     return(node.IsSqrt() && node[0].IsLessThanNumber(0));
 }
Esempio n. 3
0
File: Sqrt.cs Progetto: 65001/AbMath
 public static bool SqrtToAbsRunnable(RPN.Node node)
 {
     return(node.IsSqrt() && node[0].IsExponent() && node[0, 0].IsNumber(2));
 }