예제 #1
0
 public static bool LnToLogRunnable(RPN.Node node)
 {
     return(node.IsLn());
 }
예제 #2
0
 public static bool LnPowerRuleRunnable(RPN.Node node)
 {
     return(node.IsLn() && node[0].IsExponent() && !node[0, 0].IsVariable());
 }