Changeset 950214e in git
- Timestamp:
- Mar 16, 2011, 8:00:59 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 87d8d5c4d08989a2c61b978eff692caf73db5ef2
- Parents:
- 19764c6e9edaa5c5f13750f3abdc9ea294b6c291
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/gfan.cc
r19764c6 r950214e 3878 3878 } 3879 3879 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 3896 3880 /** \brief Construct a dd_MatrixPtr from a cone's list of facets 3897 3881 * NO LONGER USED -
kernel/gfan.h
r19764c6 r950214e 254 254 lists lprepareResult(gcone *gc, const int n); 255 255 static int64 int64gcd(const int64 &a, const int64 &b); 256 static int intgcd(const int &a, const int &b);257 256 static int dotProduct(const int64vec &iva, const int64vec &ivb); 258 257 static bool isParallel(const int64vec &a, const int64vec &b);
Note: See TracChangeset
for help on using the changeset viewer.