berlemat.h
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:0k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = berlemat.h
  3. //
  4. #ifndef _BERLEMAT_H_
  5. #define _BERLEMAT_H_
  6. #include "pfelem.h"
  7. #include "matrix_pf.h"
  8. #include "poly_pf.h"
  9. class BerlekampMatrix:public matrix_pf
  10. {
  11. public:
  12.   BerlekampMatrix(  PolyOvrPrimeField *poly );
  13.   int GetDegree( void );
  14.   int PrimeBase( void );
  15. private:
  16.   int Degree;
  17.   int Prime_Base;
  18. };
  19. #endif