MCPcopy Create free account
hub / github.com/Singular/Singular / EltMult

Function EltMult

Singular/dyn_modules/Order/nforder_elt.cc:73–79  ·  view source on GitHub ↗

or NULL general stuff

Source from the content-addressed store, hash-verified

71 // or NULL
72 // general stuff
73static number EltMult(number a, number b, const coeffs r)
74{
75 nforder *O = (nforder*) (r->data);
76 bigintmat *c = new bigintmat((bigintmat*)a);
77 O->elMult(c, (bigintmat*) b);
78 return (number) c;
79}
80static number EltSub(number a, number b, const coeffs r)
81{
82 nforder *O = (nforder*) (r->data);

Callers

nothing calls this directly

Calls 1

elMultMethod · 0.80

Tested by

no test coverage detected