Changeset ee1f01 in git
- Timestamp:
- Oct 13, 2011, 9:49:10 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
- Children:
- 27edeb995378e81443470dc289b06c2e3f8ba32b
- Parents:
- 5b8726d73a36b397b95eb9b8277dd0e0f7d85065
- git-author:
- Niels Ranosch <ranosch@mfo.de>2011-10-13 21:49:10+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:14:05+01:00
- Location:
- libpolys
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/misc/int64vec.cc
r5b8726d ree1f01 222 222 } 223 223 224 /* def. internals */ 224 225 /* 226 * The following two functions are never used. 227 * Remove? 228 229 // def. internals 225 230 static int64 iv64Gcd(int, int); 226 231 static int64 iv64L1Norm(intvec *); 227 232 233 234 // The following two functions seem to be never used. Remove? 228 235 static int64 iv64Gcd(int64 a,int64 b) 229 236 { … … 262 269 return s; 263 270 } 264 271 */ -
libpolys/polys/monomials/ring.cc
r5b8726d ree1f01 700 700 701 701 702 /* 703 // The fowolling function seems to be never used. Remove? 702 704 static int binaryPower (const int a, const int b) 703 705 { 704 / *computes a^b according to the binary representation of b,705 i.e., a^7 = a^4 * a^2 * a^1. This saves some multiplications. */706 // computes a^b according to the binary representation of b, 707 // i.e., a^7 = a^4 * a^2 * a^1. This saves some multiplications. 706 708 int result = 1; 707 709 int factor = a; … … 715 717 return result; 716 718 } 719 */ 717 720 718 721 /* we keep this otherwise superfluous method for compatibility reasons
Note: See TracChangeset
for help on using the changeset viewer.