コード例 #1
0
 public static PowerTreeNode Pow(AFunctionTreeNode x, AFunctionTreeNode y)
 {
     return(new PowerTreeNode(x, y));
 }
コード例 #2
0
 public AbsTreeNode(AFunctionTreeNode innerNode)
 {
     n = innerNode;
 }
コード例 #3
0
 public static AbsTreeNode Abs(AFunctionTreeNode val)
 {
     return(new AbsTreeNode(val));
 }
コード例 #4
0
 public PowerTreeNode(AFunctionTreeNode x, AFunctionTreeNode y)
 {
     lhs = x;
     rhs = y;
 }
コード例 #5
0
 public DivFuncTreeNode(AFunctionTreeNode Lhs, AFunctionTreeNode Rhs)
 {
     lhs = Lhs;
     rhs = Rhs;
 }
コード例 #6
0
 public SubtractFuncTreeNode(AFunctionTreeNode Lhs, AFunctionTreeNode Rhs)
 {
     lhs = Lhs;
     rhs = Rhs;
 }
コード例 #7
0
 public RootFuncTreeNode(double val)
 {
     encapsulatedNode = new ConstantValFuncTreeNode(val);
 }
コード例 #8
0
 public RootFuncTreeNode(AFunctionTreeNode n = null)
 {
     encapsulatedNode = n;
 }