Changeset 51e69e in git for kernel/kspoly.cc
- Timestamp:
- Feb 23, 2008, 9:13:30 PM (15 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- eb726a2ae5288034601f52c83e653e517d892418
- Parents:
- 4d2ab5c1e54b41b2b02f7720e375b7983a98b89b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kspoly.cc
r4d2ab5c r51e69e 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kspoly.cc,v 1.1 3 2008-02-06 09:12:45 wienandExp $ */4 /* $Id: kspoly.cc,v 1.14 2008-02-23 20:13:30 levandov Exp $ */ 5 5 /* 6 6 * ABSTRACT - Routines for Spoly creation and reductions … … 200 200 if (R != NULL) 201 201 { 202 l1 = (R[Pair->i_r1])->GetpLength() - 1; 203 l2 = (R[Pair->i_r2])->GetpLength() - 1; 202 if (Pair->i_r1 == -1) 203 { 204 l1 = pLength(p1) - 1; 205 } 206 else 207 { 208 l1 = (R[Pair->i_r1])->GetpLength() - 1; 209 } 210 if (Pair->i_r2 == -1) 211 { 212 l2 = pLength(p2) - 1; 213 } 214 else 215 { 216 l2 = (R[Pair->i_r2])->GetpLength() - 1; 217 } 204 218 } 205 219
Note: See TracChangeset
for help on using the changeset viewer.