Changeset e39ca0 in git
- Timestamp:
- Nov 28, 2016, 3:27:11 PM (7 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
- Children:
- adb7b747e50418d86748b27ced0b13733493bee6
- Parents:
- c665c39ebd2c9d0fa178ec7004ad58d5c91333ec
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/linear_algebra/MinorInterface.cc
rc665c3 re39ca0 268 268 /* copy all polynomials and reduce them w.r.t. iSB 269 269 (if iSB is present, i.e., not the NULL pointer) */ 270 for (int i = 0; i < length; i++) 271 { 272 nfPolyMatrix[i] = pCopy(myPolyMatrix[i]); 273 if (iSB != 0) nfPolyMatrix[i] = kNF(iSB, currRing->qideal, 274 nfPolyMatrix[i]); 270 if (iSB != NULL) 271 { 272 for (int i = 0; i < length; i++) 273 { 274 nfPolyMatrix[i] = kNF(iSB, currRing->qideal,myPolyMatrix[i]); 275 } 276 } 277 else 278 { 279 for (int i = 0; i < length; i++) 280 { 281 nfPolyMatrix[i] = pCopy(myPolyMatrix[i]); 282 } 275 283 } 276 284
Note: See TracChangeset
for help on using the changeset viewer.