Beispiel #1
0
 public static bool LogOneRunnable(RPN.Node node)
 {
     return(node.IsLog() && node.Children[0].IsNumber(1));
 }
Beispiel #2
0
 public static bool LogExponentExpansionRunnable(RPN.Node node)
 {
     return(node.IsLog() && node[0].IsExponent());
 }
Beispiel #3
0
 public static bool LogToLnRunnable(RPN.Node node)
 {
     return(node.IsLog() && node[1].IsConstant("e"));
 }
Beispiel #4
0
 public static bool LogIdentitcalRunnable(RPN.Node node)
 {
     return(node.IsLog() && node.ChildrenAreIdentical());
 }