Changeset ccc9976 in git
- Timestamp:
- Jan 8, 2018, 11:09:31 AM (5 years ago)
- Branches:
- (u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
- Children:
- 6b02216593677b82e2b32595292b3622d7c6816e
- Parents:
- 06a834a18bfe9a9a9d3c30ac2c75a958513056be
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/monomials/p_polys.h
r06a834 rccc9976 1524 1524 } 1525 1525 const long* _ordsgn = (long*) r->ordsgn; 1526 #if 1 /* two variants*/ 1526 1527 if (_v1 > _v2) 1527 1528 { 1528 if (_ordsgn[_i] == 1) return 1; 1529 return -1; 1530 } 1531 if (_ordsgn[_i] == 1) return -1; 1532 return 1; 1533 1529 return _ordsgn[_i]; 1530 } 1531 return -(_ordsgn[_i]); 1532 #else 1533 if (_v1 > _v2) 1534 { 1535 if (_ordsgn[_i] == 1) return 1; 1536 return -1; 1537 } 1538 if (_ordsgn[_i] == 1) return -1; 1539 return 1; 1540 #endif 1534 1541 } 1535 1542
Note: See TracChangeset
for help on using the changeset viewer.