Changeset f5e732 in git
- Timestamp:
- Aug 26, 2016, 6:46:40 PM (7 years ago)
- Branches:
- (u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
- Children:
- 117ae9c7dde9eb9fcaa4cb899cfb7690addd6dfe
- Parents:
- 6e28802f29d0fee351ccab022adc6853e46bd3fe
- Location:
- libpolys/coeffs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/coeffs/longrat.cc
r6e28802 rf5e732 949 949 } 950 950 951 number nlGetUnit (number n, const coeffs r)951 number nlGetUnit (number, const coeffs) 952 952 { 953 953 return INT_TO_SR(1); … … 1421 1421 // Map q \in QQ or ZZ \to Zp or an extension of it 1422 1422 // src = Q or Z, dst = Zp (or an extension of Zp) 1423 number nlModP(number q, const coeffs Q, const coeffs Zp)1423 number nlModP(number q, const coeffs /*Q*/, const coeffs Zp) 1424 1424 { 1425 1425 const int p = n_GetChar(Zp); … … 2294 2294 * copy a to b for mapping 2295 2295 */ 2296 number nlCopyMap(number a, const coeffs src, const coeffs dst)2296 number nlCopyMap(number a, const coeffs /*src*/, const coeffs /*dst*/) 2297 2297 { 2298 2298 if ((SR_HDL(a) & SR_INT)||(a==NULL)) … … 2303 2303 } 2304 2304 2305 nMapFunc nlSetMap(const coeffs src, const coeffs dst)2305 nMapFunc nlSetMap(const coeffs src, const coeffs /*dst*/) 2306 2306 { 2307 2307 if (src->rep==n_rep_gap_rat) /*Q, coeffs_BIGINT */ -
libpolys/coeffs/modulop.cc
r6e28802 rf5e732 480 480 } 481 481 482 static void npWriteFd(number n, FILE* f, const coeffs r)482 static void npWriteFd(number n, FILE* f, const coeffs) 483 483 { 484 484 fprintf(f,"%d ",(int)(long)n); 485 485 } 486 486 487 static number npReadFd(s_buff f, const coeffs r)487 static number npReadFd(s_buff f, const coeffs) 488 488 { 489 489 // read int
Note: See TracChangeset
for help on using the changeset viewer.