MCPcopy Create free account
hub / github.com/Singular/Singular / operator+

Function operator+

kernel/old/old.Poly.h:200–204  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

198};
199
200inline PolyImpl operator+(const PolyImpl &p1, const PolyImpl& p2){
201 PolyImpl erg(p1);
202 erg+=p2;
203 return erg;
204}
205inline PolyImpl operator*(const PolyImpl &p1, const PolyImpl& p2){
206 PolyImpl erg(p1);
207 erg*=p2;

Callers

nothing calls this directly

Calls 3

PolyImplClass · 0.70
getMethod · 0.45
getRingMethod · 0.45

Tested by

no test coverage detected