예제 #1
0
파일: Expr.cs 프로젝트: mishashemin/My
 public override Expr Diff() => !IsConstant?Operand1.Diff() *Operand2 + Operand2.Diff() *Operand1 : new Constant(0);
예제 #2
0
파일: Expr.cs 프로젝트: mishashemin/My
 public override Expr Diff() => !IsConstant ? (Operand1.Diff() * Operand2 - Operand2.Diff() * Operand1) / Pow(Operand2, 2) : new Constant(0);