| 628 | return erg; |
| 629 | } |
| 630 | inline Vector unitVector(int i,ring r=currRing){ |
| 631 | poly p=p_ISet(1,r); |
| 632 | p_SetComp(p,i,r); |
| 633 | return Vector(p,r,0); |
| 634 | } |
| 635 | inline Poly operator*(const Number& n, const Poly & p){ |
| 636 | Poly res=p; |
| 637 | res*=n; |
no test coverage detected