Check whether two polynomials are identical
encapsulated operator function '==' import Modelica_LinearSystems2.Math.Polynomial; input Polynomial p1; input Polynomial p2; input Real eps(min = 0) = 0 "Two coefficients c1 and c2 of the two polynomials are identical if abs(c1-c2) <= eps"; output Boolean same "=true, if identical"; end '==';