Changeset a5cd69 in git


Ignore:
Timestamp:
Aug 27, 2010, 3:38:57 PM (13 years ago)
Author:
Martin Lee <mlee@…>
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
Message:
replaced GFSize by GFDegree
Location:
coeffs
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • coeffs/ffields.cc

    r7c362e ra5cd69  
    1616#include "ffields.h"
    1717#include <feFopen.h>
     18#include <math.h>
    1819
    1920
     
    838839  r->has_simple_Alloc=TRUE;
    839840  r->has_simple_Inverse=TRUE;
    840   const int c = p->GFSize;
     841  const int c = pow (p->GFChar, p->GFDegree);
    841842  nfReadTable(c, r);
    842843  r->ch = r->m_nfCharP;
  • coeffs/ffields.h

    r7c362e ra5cd69  
    1414{
    1515  int GFChar;
    16   int GFSize;
     16  int GFDegree;
    1717  char* GFPar_name;
    1818} GFInfo;
  • coeffs/test.cc

    r7c362e ra5cd69  
    282282
    283283   param.GFChar= 5;
    284    param.GFSize= 25;
     284   param.GFDegree= 2;
    285285
    286286   param.GFPar_name= (const char*)"q";
Note: See TracChangeset for help on using the changeset viewer.