Beispiel #1
0
 internal Polynomial(int deg, T coeff)
 {
     _terms    = new Term <T> [1];
     _terms[0] = new Term <T>(deg, coeff);
     this.Initialize();
 }
Beispiel #2
0
 public bool Equals(Term <T> t)
 {
     return(this.Deg == t.Deg && this.Coeff.Equals(t.Coeff));
 }