Exemplo n.º 1
0
 public override void SetDependent(Equation <T> dependent)
 {
     mDependent = dependent;
 }
Exemplo n.º 2
0
 public MultiplicativeEquation(Equation <T> a, Equation <T> b)
 {
     this.a = a;
     this.b = b;
 }
Exemplo n.º 3
0
 public override void SetDependent(Equation <T> dependent)
 {
     throw new InvalidOperationException("Cannot set dependent equation to constant function.");
 }
Exemplo n.º 4
0
 public abstract void SetDependent(Equation <T> dependent);
Exemplo n.º 5
0
 public AdditiveEquation(Equation <T> a, Equation <T> b)
 {
     this.a = a;
     this.b = b;
 }