Changeset 37d318 in git
- Timestamp:
- Jun 21, 2010, 6:32:46 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 925a43c559bf2bd9536bcb511626e89f6552ac3e
- Parents:
- 1c3d1f0a47910bab4ca011be361349a98f6ee34d
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2010-06-21 18:32:46+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:15+01:00
- Location:
- coeffs
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
coeffs/gnumpfl.cc
r1c3d1f r37d318 413 413 }; 414 414 415 void ngfInitChar(coeffs n, int)415 void ngfInitChar(coeffs n, void *) 416 416 { 417 417 assume( getCoeffType(n) == ID ); -
coeffs/gnumpfl.h
r1c3d1f r37d318 14 14 15 15 /// Initialize r 16 void ngfInitChar(coeffs r, int);16 void ngfInitChar(coeffs r, void *); 17 17 18 18 /// test, whether r is an instance of nInitCoeffs(n, parameter) */ -
coeffs/longrat.cc
r1c3d1f r37d318 2462 2462 } 2463 2463 2464 intnlInitChar(coeffs r, void* p)2464 void nlInitChar(coeffs r, void* p) 2465 2465 { 2466 2466 const int ch = (int)(long)(p); … … 2527 2527 // variables for this type of coeffs: 2528 2528 // (none) 2529 return 0;2530 2529 } 2531 2530 #if 0 -
coeffs/longrat.h
r1c3d1f r37d318 58 58 LINLINE number nlMult(number a, number b, const coeffs r); 59 59 60 intnlInitChar(coeffs r, void*);60 void nlInitChar(coeffs r, void*); 61 61 static BOOLEAN nlCoeffsEqual(const coeffs r, n_coeffType n, void * parameter); 62 62 -
coeffs/rmodulo2m.cc
r1c3d1f r37d318 9 9 #include <string.h> 10 10 #include "config.h" 11 #include <auxiliary.h> 11 12 12 13 #ifdef HAVE_RINGS
Note: See TracChangeset
for help on using the changeset viewer.