Changeset ee1f01 in git


Ignore:
Timestamp:
Oct 13, 2011, 9:49:10 PM (12 years ago)
Author:
Niels Ranosch <ranosch@…>
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
Message:
CHG: commented out unused(!?) functions
Location:
libpolys
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libpolys/misc/int64vec.cc

    r5b8726d ree1f01  
    222222}
    223223
    224 /* def. internals */
     224
     225/*
     226 * The following two functions are never used.
     227 * Remove?
     228
     229// def. internals
    225230static int64 iv64Gcd(int, int);
    226231static int64 iv64L1Norm(intvec *);
    227232
     233
     234// The following two functions seem to be never used. Remove?
    228235static int64 iv64Gcd(int64 a,int64 b)
    229236{
     
    262269  return s;
    263270}
    264 
     271*/
  • libpolys/polys/monomials/ring.cc

    r5b8726d ree1f01  
    700700
    701701
     702/*
     703// The fowolling function seems to be never used. Remove?
    702704static int binaryPower (const int a, const int b)
    703705{
    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.
    706708  int result = 1;
    707709  int factor = a;
     
    715717  return result;
    716718}
     719*/
    717720
    718721/* we keep this otherwise superfluous method for compatibility reasons
Note: See TracChangeset for help on using the changeset viewer.