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

Method operator=

kernel/linear_algebra/Minor.cc:1159–1169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1157}
1158
1159void PolyMinorValue::operator= (const PolyMinorValue& mv)
1160{
1161 if (_result != mv.getResult()) pDelete(&_result);
1162 _result = pCopy(mv.getResult());
1163 _retrievals = mv.getRetrievals();
1164 _potentialRetrievals = mv.getPotentialRetrievals();
1165 _multiplications = mv.getMultiplications();
1166 _additions = mv.getAdditions();
1167 _accumulatedMult = mv.getAccumulatedMultiplications();
1168 _accumulatedSum = mv.getAccumulatedAdditions();
1169}

Callers

nothing calls this directly

Calls 7

getResultMethod · 0.80
getRetrievalsMethod · 0.80
getMultiplicationsMethod · 0.80
getAdditionsMethod · 0.80

Tested by

no test coverage detected