| 606 | return f; |
| 607 | } |
| 608 | inline bool operator==(const Poly& p1, const Poly& p2){ |
| 609 | ring r1=p1.getRing(); |
| 610 | ring r2=p2.getRing(); |
| 611 | if (r1!=r2) return false; |
| 612 | return p_EqualPolys(p1.ptr->p,p2.ptr->p,r1); |
| 613 | } |
| 614 | inline bool operator==(const Vector& p1, const Vector& p2){ |
| 615 | ring r1=p1.getRing(); |
| 616 | ring r2=p2.getRing(); |
nothing calls this directly
no test coverage detected