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