📄 sequentialrootgeneratorpolynomialcreator.h
字号:
/* ********************************************************************* * * * Galois Field Arithmetic Library (version 0.0.1) * * * * Class: Sequential Root Generator Polynomial Creator * * Version: 0.0.1 * * Author: Arash Partow - 2000 * * URL: http://www.partow.net/projects/galois/index.html * * * * Copyright Notice: * * Free use of this library is permitted under the guidelines and * * in accordance with the most current version of the Common Public * * License. * * http://www.opensource.org/licenses/cpl.php * * * **********************************************************************/#ifndef INCLUDE_SEQUENTIALROOTGENERATORPOLYNOMIALCREATOR_H#define INCLUDE_SEQUENTIALROOTGENERATORPOLYNOMIALCREATOR_H#include "GaloisField.h"#include "GaloisFieldElement.h"#include "GaloisFieldPolynomial.h"namespace galois{ class SequentialRootGeneratorPolynomialCreator { public: SequentialRootGeneratorPolynomialCreator(GaloisField* _gf = NULL, const unsigned int _initial_index = 0, const unsigned int _num_elements = 0); ~SequentialRootGeneratorPolynomialCreator(){} GaloisFieldPolynomial create(); private: GaloisField* gf; unsigned int initial_index; unsigned int num_elements; };}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -