Changeset 88f386c in git
- Timestamp:
- Jul 29, 2018, 10:07:08 PM (5 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 85d7d333234b16c76e1eca63a87f3ab727763f92
- Parents:
- 5676fd99d0794f1da7107c0a1d9df72f9dcdf5bd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/GBEngine/kspoly.cc
r5676fd r88f386c 136 136 int ct = ksCheckCoeff(&an, &bn, tailRing->cf); // Calculate special LC 137 137 p_SetCoeff(lm, bn, tailRing); 138 if (tailRing->isLPring) pSetCoeff0(p1, bn); // lm doesn't point to p1 anymore, if the coef was a pointer, it has been deleted 138 139 if ((ct == 0) || (ct == 2)) 139 140 PR->Tail_Mult_nn(an); … … 256 257 int ct = ksCheckCoeff(&an, &bn, tailRing->cf); // Calculate special LC 257 258 p_SetCoeff(lm, bn, tailRing); 259 if (tailRing->isLPring) pSetCoeff0(p1, bn); // lm doesn't point to p1 anymore, if the coef was a pointer, it has been deleted 258 260 if ((ct == 0) || (ct == 2)) 259 261 PR->Tail_Mult_nn(an); … … 457 459 int ct = ksCheckCoeff(&an, &bn, tailRing->cf); // Calculate special LC 458 460 p_SetCoeff(lm, bn, tailRing); 461 if (tailRing->isLPring) pSetCoeff0(p1, bn); // lm doesn't point to p1 anymore, if the coef was a pointer, it has been deleted 459 462 if ((ct == 0) || (ct == 2)) 460 463 PR->Tail_Mult_nn(an); … … 688 691 { 689 692 p_SetCoeff(lm, nDiv(pGetCoeff(lm),pGetCoeff(p2)), tailRing); 693 if (tailRing->isLPring) pSetCoeff0(p1, pGetCoeff(lm)); // lm doesn't point to p1 anymore, if the coef was a pointer, it has been deleted 690 694 if (coef != NULL) *coef = n_Init(1, tailRing->cf); 691 695 } … … 698 702 int ct = ksCheckCoeff(&an, &bn, tailRing->cf); // Calculate special LC 699 703 p_SetCoeff(lm, bn, tailRing); 704 if (tailRing->isLPring) pSetCoeff0(p1, bn); // lm doesn't point to p1 anymore, if the coef was a pointer, it has been deleted 700 705 if (((ct == 0) || (ct == 2))) 701 706 PR->Tail_Mult_nn(an);
Note: See TracChangeset
for help on using the changeset viewer.