Changeset a5cd69 in git
- Timestamp:
- Aug 27, 2010, 3:38:57 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 1b078e7ee8f4659359c8f3e8fdbfdd1134099749
- Parents:
- 7c362e1976f05707294718bf3936097282ed4e31
- git-author:
- Martin Lee <mlee@fifi.mathematik.uni-kl.de>2010-08-27 15:38:57+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:28+01:00
- Location:
- coeffs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
coeffs/ffields.cc
r7c362e ra5cd69 16 16 #include "ffields.h" 17 17 #include <feFopen.h> 18 #include <math.h> 18 19 19 20 … … 838 839 r->has_simple_Alloc=TRUE; 839 840 r->has_simple_Inverse=TRUE; 840 const int c = p ->GFSize;841 const int c = pow (p->GFChar, p->GFDegree); 841 842 nfReadTable(c, r); 842 843 r->ch = r->m_nfCharP; -
coeffs/ffields.h
r7c362e ra5cd69 14 14 { 15 15 int GFChar; 16 int GF Size;16 int GFDegree; 17 17 char* GFPar_name; 18 18 } GFInfo; -
coeffs/test.cc
r7c362e ra5cd69 282 282 283 283 param.GFChar= 5; 284 param.GF Size= 25;284 param.GFDegree= 2; 285 285 286 286 param.GFPar_name= (const char*)"q";
Note: See TracChangeset
for help on using the changeset viewer.