예제 #1
0
 /// <summary>
 /// Checks for equality among <see cref="Polynomial"/> classes
 /// </summary>
 /// <param name="other">The other <see cref="Polynomial"/> to compare it to</param>
 /// <returns>True if equal</returns>
 public bool Equals(Polynomial other)
 {
     return(Coefficients.VectorAreEqual(other.Coefficients, 1e-15));
 }