Changeset 6f3273 in git
- Timestamp:
- Apr 13, 2011, 3:15:42 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 2e7dee867c4d33510424b140e95164e94fb8ef8b
- Parents:
- 3d0808a0883526b5a109b328ba27a2254b43eb2c
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-04-13 15:15:42+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:12:31+01:00
- Location:
- libpolys/polys
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/simpleideals.cc
r3d0808 r6f3273 345 345 *test if the ideal has only constant polynomials 346 346 */ 347 BOOLEAN id IsConstant(ideal id)347 BOOLEAN id_IsConstant(ideal id, const ri ng r) 348 348 { 349 349 int k; 350 350 for (k = IDELEMS(id)-1; k>=0; k--) 351 351 { 352 if ( pIsConstantPoly(id->m[k]) == FALSE)352 if (!p_IsConstantPoly(id->m[k],r)) 353 353 return FALSE; 354 354 } -
libpolys/polys/simpleideals.h
r3d0808 r6f3273 101 101 void id_DelLmEquals(ideal id, const ring r); 102 102 void id_DelDiv(ideal id, const ring r); 103 BOOLEAN id_IsConstant(ideal id, const ri ng r); 104 103 105 104 106 #endif
Note: See TracChangeset
for help on using the changeset viewer.