Changeset b0bb93f in git
- Timestamp:
- Dec 14, 2011, 3:21:12 PM (11 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- eb71ba41d7467fc241fc87e95ae3e044933adafd
- Parents:
- 62b20a676b4c20cfdee48773925c850d105aba6e
- git-author:
- YueRen <yue.ren.kl@gmail.com>2011-12-14 15:21:12+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-01-06 21:09:33+01:00
- Location:
- libpolys/coeffs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/coeffs/ffields.cc
r62b20a rb0bb93f 756 756 } 757 757 758 static BOOLEAN nfCoeffIsEqual(const coeffs, n_coeffType, void*); 759 758 760 BOOLEAN nfInitChar(coeffs r, void * parameter) 759 761 { 760 761 762 762 //r->cfInitChar=npInitChar; 763 763 //r->cfKillChar=nfKillChar; … … 882 882 } 883 883 884 BOOLEAN nfCoeffIsEqual (const coeffs r, n_coeffType n, void * parameter) 885 { 886 884 static BOOLEAN nfCoeffIsEqual (const coeffs r, n_coeffType n, void * parameter) 885 { 887 886 if (n==n_GF) { 888 887 GFInfo* p = (GFInfo *)(parameter); 889 888 int c = pow (p->GFChar, p->GFDegree); 890 if ( c == r->m_nfCharQ)889 if ((c == r->m_nfCharQ) && (strcmp(r->m_nfParameter,p->GFPar_name) == 0)) 891 890 return TRUE; 892 891 } -
libpolys/coeffs/ffields.h
r62b20a rb0bb93f 11 11 12 12 BOOLEAN nfInitChar(coeffs r, void*); 13 14 //static BOOLEAN nfCoeffsEqual(const coeffs r, n_coeffType n, void* parameter);15 13 16 14 BOOLEAN nfGreaterZero (number k, const coeffs r); … … 45 43 void nfShowMipo(const coeffs r); 46 44 #endif 47 48 BOOLEAN nfCoeffIsEqual (const coeffs r, n_coeffType n, void * parameter);
Note: See TracChangeset
for help on using the changeset viewer.