Orthogonal Array Library
1.0.0
Libray for generating orthogonal arrays based on Art Owen's oa library
|
Go to the documentation of this file.
66 int akeven(
GaloisField & gf,
int* kay, std::vector<int> & b, std::vector<int> & c, std::vector<int> & k);
78 int akodd(
GaloisField & gf,
int* kay, std::vector<int> & b, std::vector<int> & c, std::vector<int> & k);
int addelkempn(GaloisField &gf, int akn, bclib::matrix< int > &A, int ncol)
The addelkemp algorithm for general n to produce OA(2q^n,ncol,q,2)
Definition: akn.cpp:62
Orthogonal Array Namespace.
Definition: ak.h:39
Class to define a Galois Field and Methods for operations.
Definition: GaloisField.h:27
int akeven(GaloisField &gf, int *kay, std::vector< int > &b, std::vector< int > &c, std::vector< int > &k)
Addelkemp algorithm for even p
Definition: akconst.cpp:39
int akodd(GaloisField &gf, int *kay, std::vector< int > &b, std::vector< int > &c, std::vector< int > &k)
Addelkemp algorithm for odd p
Definition: akconst.cpp:71
int addelkempncheck(int q, int p, int akn, int ncol)
Check that the parameters are consistent for the addelkempn algorithm.
Definition: akn.cpp:37
int addelkemp3check(int q, int p, int ncol)
Check that the parameters of the addelkemp3 algorithm are consistent (ncol <= 2q^2+2q+1
Definition: ak3.cpp:37
int addelkemp3(GaloisField &gf, bclib::matrix< int > &A, int ncol)
The addelkemp algorithm for n=3.
Definition: ak3.cpp:60