Changeset 4154bb in git
- Timestamp:
- Sep 16, 2013, 4:39:31 PM (9 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '2234726c50d679d6664181a5c72f75a6fd64a787')
- Children:
- 944a5ac946e2f8544123239e3a920b7d77e718e1
- Parents:
- d5cdf337c2c550eb851a3dbfb231f45857af1f8f
- Location:
- libpolys/coeffs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/coeffs/AE.cc
rd5cdf33 r4154bb 845 845 int int_poly::is_one() 846 846 { 847 if (deg= 0)847 if (deg==0) 848 848 { 849 849 if (mpz_cmpabs_ui(coef[0],1)==0) { return 1; } -
libpolys/coeffs/AEQ.cc
rd5cdf33 r4154bb 756 756 int Q_poly::is_one() 757 757 { 758 if (deg= 0)758 if (deg==0) 759 759 { 760 760 if (mpz_cmp(coef[0],denom)==0) { return 1; } -
libpolys/coeffs/AEp.cc
rd5cdf33 r4154bb 867 867 int p_poly::is_one() 868 868 { 869 if (deg= 0)869 if (deg==0) 870 870 { 871 871 if (mpz_cmp_ui(coef[0],1)==0) { return 1; }
Note: See TracChangeset
for help on using the changeset viewer.