Changeset 950214e in git


Ignore:
Timestamp:
Mar 16, 2011, 8:00:59 PM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
87d8d5c4d08989a2c61b978eff692caf73db5ef2
Parents:
19764c6e9edaa5c5f13750f3abdc9ea294b6c291
Message:
removed intgcd: not used

git-svn-id: file:///usr/local/Singular/svn/trunk@13997 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
kernel
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/gfan.cc

    r19764c6 r950214e  
    38783878}
    38793879       
    3880 static int intgcd(const int &a, const int &b)
    3881 {
    3882         int r, p=a, q=b;
    3883         if(p < 0)
    3884                 p = -p;
    3885         if(q < 0)
    3886                 q = -q;
    3887         while(q != 0)
    3888         {
    3889                 r = p % q;
    3890                 p = q;
    3891                 q = r;
    3892         }
    3893         return p;
    3894 }
    3895                
    38963880/** \brief Construct a dd_MatrixPtr from a cone's list of facets
    38973881 * NO LONGER USED
  • kernel/gfan.h

    r19764c6 r950214e  
    254254lists lprepareResult(gcone *gc, const int n);
    255255static int64 int64gcd(const int64 &a, const int64 &b);
    256 static int intgcd(const int &a, const int &b);
    257256static int dotProduct(const int64vec &iva, const int64vec &ivb);
    258257static bool isParallel(const int64vec &a, const int64vec &b);
Note: See TracChangeset for help on using the changeset viewer.