Changeset 4b38e3 in git for libpolys/coeffs/coeffs.h
- Timestamp:
- Jan 6, 2012, 9:46:35 PM (12 years ago)
- Branches:
- (u'spielwiese', '9bfa4dc4755d071a0d1290dd0e3cda52bac9f27e')
- Children:
- a74143eec598021f060c389b66230f8f035cc1c5
- Parents:
- e77676b144a632a4f4be31c2b5ece802a9c3c2f5
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-01-06 21:46:35+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-01-06 21:59:37+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/coeffs/coeffs.h
re77676 r4b38e3 289 289 } 290 290 291 static inline int nInternalChar(const coeffs r)292 {293 assume(r != NULL);294 return r->ch;295 }296 297 291 /// one-time initialisations for new coeffs 298 292 /// in case of an error return NULL … … 735 729 // HAVE_RINGS: cfDivComp, cfExtGcd... 736 730 737 // Deprecated:731 /// Return the characteristic of the coeff. domain. 738 732 static inline int n_GetChar(const coeffs r) 739 { assume(r != NULL); return nInternalChar(r); } 740 741 #endif 742 733 { 734 assume(r != NULL); 735 return r->ch; 736 } 737 738 #endif 739
Note: See TracChangeset
for help on using the changeset viewer.