Finite fields


Detailed Description

The finite field part of the kernel provides finite field arithmetic and basic operations with vectors and matrices over finite fields.

The kernel cannot operate simultaneously with different finite fields, because there is a global row size and a global field order which must be maintained by the higher layers.

There are two finite field modules available: one for small fields (up to 256) and one for larger fields (up to 2^16). The finite field module is selected at compile time.

Basic data types

The kernel defines two basic data types:
FEL
represents a single field element
PTR
is a pointer to a row vector. PTR may be defined as *FEL, but this is not mandatory.
The kernel also defines two constants: FF_ZERO is the zero element of the current field, and FF_ONE is unit element of the current field. Depending on which kernel you are using, FF_ZERO and FF_ONE need not be constants. They may be defined as variables or even function calls.

Internal data representation

'Small' Kernel (q≤256)
In the "small" kernel, field elements of GF(q) are represented by the numbers 0,1,...,q-1. The field is defined by its Conway polynomial p(x), a polynomial of degree n over ℤp[x], where q=pn. Thus, we have a one-to-one correspondence of field elements a∈GF(q) and polynomials fa(x)∈ ℤp[x] of
degree less than n. By treating ℤp as a subset of ℤ --- actually, on the computer, elements of ℤp are represented by integers --- this is also a polynomial over *ℤ. Now, calculate f_a(p) giving the number of the field element a. It follows that the elements of the prime field are represented by 0,1,...p-1. The number 0 represents the zero element, and 1 represents the unit element.

'Big' Kernel (q≤65536)
The big version stores field elements in 16-bit integers, i.e., each field element occupies two bytes. Non-zero elements are stored as their logarithms with respect to a fixed generator. In particular, the unit element is represented by the integer 0. The zero element is represented by the special value 0xFFFF.
As a consequence of the different representations of field elements in the small and big version, there are some rules which should be respected by all programs:

Converting between finite field elements and integers

The MeatAxe defines a standard numbering of field elements, i.e., a bijection between GF(q) and the set {0,1,..,q-1}. For prime fields, the mapping is defined by assigning the integer 1 to the unit element of the field. For non-prime fields or forder q=pn, each a∈GF(q) is represented -- modulo the ideal generated by the Conway polynomial of degree n -- by a unique polynomial fa(x)∈GF(p)[x] with deg(fa)<n. Using the standard embedding of GF(p) into ℤ we can consider fa as a polynomial over ℤ. Then, the number assigned to a is fa(p).

The mapping between GF(q) and {0,1,...,q} is provided by two functions, FfFromInt() and FfToInt(). Since the actual numeric representation of field elements depends on the kernel, you cannot convert a FEL to an integer simply by type casting.

Embedding of subfields

In the MeatAxe there is a `standard' generator for each finite field. The generator for the field currently in use is available in the FfGen variable. Thus, if a and a' are the MeatAxe generators of GF(q) and GF(q'), respectively, and q'=qn, there is a standard embedding of GF(q) into GF(q') defined by $a↪a'n. However, field elements which are identified under this embedding are usually not represented by the same number. For this reason there are two functions, FfEmbed() and FfRestrict(), which provide the embedding of subfields into the current field. Note that the MeatAxe is not well suited for calculations involving different fields at the same time because the arithmetic uses lookup tables which are specific to each field

Here is a short example. The following code converts a vector over GF(3) to GF(27). The MeatAxe cannot handle two fields at the same time, so it is necessary to unpack the row over GF(3), change to GF(27) and pack the embedded elements into a new row.

 PTR row1, row2;
 FEL buf[10];
 ...
 FfSetField(10);
 for (i = 0; i &lt; 10; ++i) buf[i] = FfExtract(row1,i);
 FfSetField(27);
 for (i = 0; i &lt; 10; ++i) FfInsert(row2,i,FfEmbed(buf[i],3));


Modules

 File I/O
 Binary data files contain a sequence of objects.

Defines

#define FF_ZERO   ((FEL)0)
 The zero field element.
#define FF_ONE   ((FEL)1)
 The unit element.

Typedefs

typedef unsigned char FEL
 A finite field element.
typedef FELPTR
 A pointer to a row vector.

Functions

int FfSetField (int field)
 Set the field order.
int FfSetNoc (int noc)
 Set the row length.
size_t FfRowSize (int noc)
 Calculate row size.
size_t FfTrueRowSize (int noc)
 Number of used bytes in a row.
FEL FfEmbed (FEL a, int subfield)
 Embed a subfield.
FEL FfRestrict (FEL a, int subfield)
 Restrict to a subfield.
PTR FfAddRow (PTR dest, PTR src)
 Add two rows.
PTR FfAddRowPartial (PTR dest, PTR src, int first, int len)
 Add a part two rows.
void FfMulRow (PTR row, FEL mark)
 Multiply a row by a coefficient.
void FfAddMulRow (PTR dest, PTR src, FEL f)
 Add a multiple of a row.
FEL FfFromInt (int l)
 Convert integer to field element.
int FfToInt (FEL f)
 Convert field element to integer.
void FfMapRow (PTR row, PTR matrix, int nor, PTR result)
 Multiply a vector by a matrix.
FEL FfScalarProduct (PTR a, PTR b)
 Scalar Product of Two Vectors.
void FfExtractColumn (PTR mat, int nor, int col, PTR result)
 !section kernel.ff.row Extract one column of a matrix.
void FfInsert (PTR row, int col, FEL mark)
 Insert a mark into a row This function inserts the field element mark at position col into row.
FEL FfExtract (PTR row, int col)
 !function FfExtract "Extract a mark from a row"
int FfFindPivot (PTR row, FEL *mark)
 Find pivot column.
FEL FfAdd (FEL a, FEL b)
 Finite field addition.
FEL FfSub (FEL a, FEL b)
 Finite field subtraction.
FEL FfMul (FEL a, FEL b)
 Finite field multiplication.
FEL FfDiv (FEL a, FEL b)
 Finite field division.
FEL FfNeg (FEL a)
 Finite field negative.
FEL FfInv (FEL a)
 Finite field inversion.
PTR FfAlloc (int nor)
 Allocate memory and initialize This function allocates a block of memory for a vector (if nrows is 1) or a matrix.
int FfCmpRows (PTR p1, PTR p2)
 !section kernel.ff.row Compare two rows.
void FfCleanRow (PTR row, PTR matrix, int nor, const int *piv)
 Clean Row.
void FfCleanRow2 (PTR row, PTR mat, int nor, const int *piv, PTR row2)
 Clean Row and Record Operations.
void FfCleanRowAndRepeat (PTR row, PTR mat, int nor, const int *piv, PTR row2, PTR mat2)
 Clean Row and Repeat Operations.
void FfCopyRow (PTR dest, PTR src)
 Copy a row.
void FfFree (PTR x)
 Free memory.
PTR FfGetPtr (PTR base, int row)
 Get row pointer.
FILE * FfReadHeader (const char *name, int *fld, int *nor, int *noc)
 Open File and Read Header.
int FfReadRows (FILE *f, PTR buf, int n)
 Read Rows This function reads 1 or more rows from a file.
int FfSeekRow (FILE *f, int pos)
 Move to a Row.
int FfStepPtr (PTR *x)
 Advance to next row.
void FfSwapRows (PTR dest, PTR src)
 Exchange two rows This function exchanges the contents of two rows.
const char * FfToGap (FEL f)
 !section kernel.ff.etc Convert to GAP format.
FILE * FfWriteHeader (const char *name, int fld, int nor, int noc)
 Open File and Write Header.
int FfWriteRows (FILE *f, PTR buf, int n)
 Write rows This function writes 1 or more rows to a file.

Variables

size_t FfCurrentRowSize = (size_t) -1
 Row size.
int FfCurrentRowSizeIo = -1
 I/O row size.
int FfOrder
 Current field order.
int FfChar
 Current characteristic.
FEL FfGen
 Generator.
int FfNoc
 Number of columns for row ops.
size_t FfCurrentRowSize
 Row size.
int FfOrder = -1
 Field order.
FEL FfGen = 0
 Field generator.
int FfNoc = 0
 Current row size.

Function Documentation

FfAdd ( FEL  a,
FEL  b 
)

Finite field addition.

This function returns the sum of two field elements. Before calling FfAdd(), the field must have been selected with FfSetField(). The arguments are not checked. If either argument is not in the allowed range the result is undefined and the program may crash. FfAdd() may be implemented as a macro. In this case, it is guaranteed that both arguments are evaluated exactly once.

void FfAddMulRow ( PTR  dest,
PTR  src,
FEL  f 
)

Add a multiple of a row.

This function adds a multiple of src to dest.

PTR FfAddRow ( PTR  dest,
PTR  src 
)

Add two rows.

This function adds src to dest. Field order and row size must have been set before.

Parameters:
dest The row to add to.
src The row to add.
Returns:
Always returns dest.

PTR FfAddRowPartial ( PTR  dest,
PTR  src,
int  first,
int  len 
)

Add a part two rows.

This works like FfAddRow(), but the operation is performed only on a given range of columns. Note that the working range is not specified as column indexes but in units of long integers!

Parameters:
dest The row to add to.
src The row to add.
first Number of long integers to skip.
len Number of long integers to add.
Returns:
Always returns dest.

PTR FfAlloc ( int  nrows  ) 

Allocate memory and initialize This function allocates a block of memory for a vector (if nrows is 1) or a matrix.

Memory is initialized to zero. Field order and row size must have been set with FfSetField() and FfSetNoc(), respectively. nrows may be zero zero, i which case the functin returns a memory block of size zero which must be freed using FfFree().

Parameters:
nrows Number of rows.
Returns:
Pointer to the memory block or NULL on error.

void FfCleanRow ( PTR  row,
PTR  matrix,
int  nor,
const int *  piv 
)

Clean Row.

This function performs a Gaussian elimination, i.e., it adds suitable multiples of the rows of matrix to row such that all pivot positions are zero. piv is the pivot table for matrix. As usual, all indexes are 0-based, i.e., piv[0] is the pivot column of the first row, and for a unit matrix we have piv[0]==0. The field and row size must have been set before calling this function.

Parameters:
row The row to be cleaned.
matrix Pointer to the matrix.
nor Number of rows of the matrix.
piv The pivot table.

void FfCleanRow2 ( PTR  row,
PTR  mat,
int  nor,
const int *  piv,
PTR  row2 
)

Clean Row and Record Operations.

This function works like FfCleanRow(), but it stores a record of the operations performed in row2. row2 must be a row of at least nor entries. On return, row2 contains the coefficients by which the rows of mat were multiplied and then subtracted from row. Before calling FfCleanRow2(), the caller must initialize row2 to zero. Otherwise the results are undefined.

Parameters:
row Pointer to row to be cleaned.
mat Matrix to clean with.
nor Number of rows.
piv Pivot table for matrix.
row2 Pointer to row where the operations are recorded.
Returns:
Always 0.

void FfCleanRowAndRepeat ( PTR  row,
PTR  mat,
int  nor,
const int *  piv,
PTR  row2,
PTR  mat2 
)

Clean Row and Repeat Operations.

This function works like FfCleanRow(), but repeats all operations on a second row/matrix.

Parameters:
row Pointer to row to be cleaned.
mat Matrix to clean with.
nor Number of rows.
piv Pivot table for mat.
row2 Pointer to the second row to be cleaned.
mat2 Matrix to the second matrix.
Returns:
Always 0.

int FfCmpRows ( PTR  p1,
PTR  p2 
)

!section kernel.ff.row Compare two rows.

!synopsis int FfCmpRows(PTR dest, PTR src);

Parameters:
p1 Pointer to the first matrix.
p2 Pointer to the second matrix.
Returns:
The function returns 0 if the two rows are identical. Otherwise the return value is different from 0. !description This function compares two rows. As with all row operations, the row length must have been set before with |FfSetNoc()|. The return value is negative if the first row is `less' than the second row, and it is positive if the first row is `greater' than the second row. However, the ordering defined by |FfCmpRows()| depends on the internal representation of finite field elements and can differ between dirrerent kernels or between different hardware architectures.

void FfCopyRow ( PTR  dest,
PTR  src 
)

Copy a row.

This function copies the contents of one row to another row. As with all row operations, the row length must have been set before with |FfSetNoc()|.

Parameters:
dest Pointer to the destination.
src Pointer to the source.

FfDiv ( FEL  a,
FEL  b 
)

Finite field division.

This function returns the quotient of two field elements. Before calling FfDiv(), the field must have been selected with FfSetField(). The arguments are not checked. If either argument is not in the allowed range or if the denominator is zero, the result is undefined and the program may crash. FfDiv() may be implemented as a macro. In this case, it is guaranteed that both arguments are evaluated exactly once.

FEL FfEmbed ( FEL  a,
int  subfield 
)

Embed a subfield.

Parameters:
a Element of the subfield field.
subfield Subfield order. Must be a divisor of the current field order.
Returns:
a, embedded into the current field.

FEL FfExtract ( PTR  row,
int  col 
)

!function FfExtract "Extract a mark from a row"

Parameters:
row Pointer to the row.
col Index of mark to extract (0-based).
Returns:
|col|-th entry of |row|. !description This function returns the entry at position |col| of a row. Note that column indexes start with 0, i.e., |FfExtract(row,0)| returns the first entry of a row. Like |FfInsert()|, this function does not depend on the current row size. Reading beyond the end of a row will probably not produce an error, but the result is undefined.
See also:
FfInsert

void FfExtractColumn ( PTR  mat,
int  nor,
int  col,
PTR  result 
)

!section kernel.ff.row Extract one column of a matrix.

Parameters:
mat Pointer to the matrix.
nor Number of rows in matrix.
col Column to extract (starting with 1).
result Pointer to buffer for the extracted column. !description This function extracts one column out of a matrix and stores it as a row vector in |result|. The number of columns of the matrix must have been set with |FfSetNoc()|. |nor| is the number of rows in the matrix. The result is a row with |nor| entries, i.e., the length of |result| must be at least |nor|. |mat| and |result| must not overlap, or the result is undefined.

int FfFindPivot ( PTR  row,
FEL mark 
)

Find pivot column.

Parameters:
row Pointer to the row.
mark Buffer for pivot element.
Returns:
Index of the first non-zero entry in |row|, or $-1$ if all entries are zero. !description This function scans the vector |row| and finds the first non-zero mark. The mark is stored into |*mark| and its position (counting from 0) is returned. If the whole vector is zero, |FfFindPivot()| returns $-1$ and leaves |*mark| unchanged. !seealso

void FfFree ( PTR  x  ) 

Free memory.

This function frees a block of memory that has been allocated with FfAlloc() before. If the argument is 0, FfFree() does nothing.

Parameters:
x Pointer to memory.

FEL FfFromInt ( int  l  ) 

Convert integer to field element.

This function converts an integer to a field element using the same mapping as explained under FfToInt(). Both functions are inverse in the sense that the expression f == FfFromInt(FfToInt(f)) is always true for valid field elements. FfFromInt() should be used whenever field elements are to be read with scanf().

PTR FfGetPtr ( PTR  base,
int  row 
)

Get row pointer.

This function returns a pointer to the |nor|-th row of a matrix, assuming the current row size. |base| must be a pointer to the beginning of a row, but this need not be the first row of the matrix. For example, the following code steps through the odd rows of a matrix:

 PTR r = matrix;
 int i;
 for (i = 1; i < nrows; i += 2)
 {
    r = FfGetPtr(r,2);
    ...
 }
Note: The function does not check if the resulting pointer is still inside the matrix.
See also:
FfStepPtr()
Parameters:
base Pointer to the first row of the matrix.
row Row index.

void FfInsert ( PTR  row,
int  col,
FEL  mark 
)

Insert a mark into a row This function inserts the field element mark at position col into row.

Column indexes start with 0. Before this function can be used, the field must be selected with FfSetField(). FfInsert() does not need the row size beeing set correctly. For example, if you are working with rows of different size, you do not have to call FfSetNoc() prior to each FfInsert(). On the other hand, there is no protection against writing beyond the end of a row.

If the MeatAxe is compiled with the DEBUG option FfInsert() checks that mark is a valid field element and col is not negative. If also the PARANOID option was in effect during compilation, FfInsert() also checks if col is less than or equal to the current row size.

Parameters:
row Pointer to the row.
col Insert position (0-based).
mark Value to insert.

FfInv ( FEL  a  ) 

Finite field inversion.

This function returns the multiplicative inverse a field element. Before calling FfInv(), the field must have been selected with FfSetField(). The argument is not checked. If you pass an invalid value or zero, the result is undefined and the program may crash. FfInv() may be implemented as a macro. In this case, it is guaranteed that the argument is evaluated exactly once.

void FfMapRow ( PTR  row,
PTR  matrix,
int  nor,
PTR  result 
)

Multiply a vector by a matrix.

This function multiplies the vector row from the right by the matrix mat and stores the result into result. The number of columns in both mat and result is determined by the current row size. (see FfNoc()).

Attention:
result and row must not overlap. Otherwise the result is undefined.
Parameters:
row The source vector (FfNoc columns).
matrix The matrix (nor by FfNoc).
nor number of rows in the matrix.
[out] result The resulting vector (nor columns).

FfMul ( FEL  a,
FEL  b 
)

Finite field multiplication.

This function returns the product of two field elements. Before calling FfMul(), the field must have been selected with FfSetField(). The arguments are not checked. If either argument is not in the allowed range the result is undefined and the program may crash. FfMul() may be implemented as a macro. In this case, it is guaranteed that both arguments are evaluated exactly once.

void FfMulRow ( PTR  row,
FEL  mark 
)

Multiply a row by a coefficient.

This function multiplies each element of row by mark. The row size and field order must have been set before. Multiplying a row with zero (FF_ZERO) initializes all elements to zero and is permitted even if row points into uninitialized memory.

FfNeg ( FEL  a  ) 

Finite field negative.

This function returns the additive inverse a field element. Before calling FfInv(), the field must have been selected with FfSetField(). The argument is not checked. If you pass an invalid value, the result is undefined and the program may crash. FfNeg() may be implemented as a macro. In this case, it is guaranteed that the argument is evaluated exactly once.

FILE* FfReadHeader ( const char *  name,
int *  field,
int *  nor,
int *  noc 
)

Open File and Read Header.

This function opens a data file for input and reads the file header (3 integers). The exact meaning of the header values depends on the file type. For a matrix they are field order, number of rows and number of columns.

Parameters:
name File name.
field Pointer to buffer for first header entry (usually the field order).
nor Pointer to buffer for second header entry (usually the number of rows).
noc Pointer to buffer for third header entry (usually the number of columns).
Returns:
Pointer to open file, or 0 on error.

int FfReadRows ( FILE *  f,
PTR  buf,
int  n 
)

Read Rows This function reads 1 or more rows from a file.

The row size must have been set before.

Parameters:
f Pointer to File.
buf Pointer to data buffer.
n Number of rows to read.
Returns:
Number of rows that were actually read, or -1 on error.

FEL FfRestrict ( FEL  a,
int  subfield 
)

Restrict to a subfield.

This function restricts a field element from the current field to a subfield. The return value represents the same element as a but with respect to the subfield. In general, the element has a different integer representation in the subfield. Consequently, you cannot use the return value for field arithmetic until you change to the subfield with Of course, the argument must be an element of the subfield. Otherwise the result is undefined. FfSetField(subfield).

Parameters:
a Element of the current field.
subfield Subfield order. Must be a divisor of the current field order.

size_t FfRowSize ( int  noc  ) 

Calculate row size.

Returns the number of bytes occupied in memory by a row of noc Elements. The row size is always a multiple of sizeof(long). Depending on the number of columns there may be unused padding bytes at the end of the row.

FEL FfScalarProduct ( PTR  a,
PTR  b 
)

Scalar Product of Two Vectors.

Given two vectors $a=(a_i)$ and $b=(b_i)$, this function calculates the scalar product $p=\sum_ia_ib_i$.

Parameters:
a The first vector.
b The second vector.
Returns:
Scalar product of the two vectors.

int FfSeekRow ( FILE *  f,
int  pos 
)

Move to a Row.

This function sets the read/write pointer of file f to position pos. I.e., the next FfReadRows() or FfWriteRows() will start at the specified row. Note that row numbers start with 0. If pos is different from 0, the row size must have been set before with FfSetNoc().

You should always use FfSeekRow() rather than fseek() because FfSeekRow() knows about MeatAxe file headers and adjusts the file pointer appropriately.

Parameters:
f Pointer to File.
pos Row number (0-based).
Returns:
0 on success, -1 on error.

int FfSetField ( int  field  ) 

Set the field order.

This function sets the current field to GF(field) and initializes the field arithmetic. Most kernel functions require that a field has been selected before they are used.

Parameters:
field Field order.
Returns:
0 on success, -1 otherwise.

int FfSetNoc ( int  noc  ) 

Set the row length.

This function sets the current row size, which is used for low-level row operations such as FfAddRow().

Parameters:
noc Number of columns.
Returns:
0 on success, -1 otherwise.

int FfStepPtr ( PTR x  ) 

Advance to next row.

This function increments a pointer by 1 row. The row size must have been set before with FfSetNoc(). FfStepPtr(&x) is equivalent to x = FfGetPtr(x,1). It is typically used to step through the rows of a matrix. Here is an example with a 100 by 40 matrix:

 PTR r, mat;
 int i;
 FfSetNoc(40);
 mat = FfAlloc(100);
 for (i = 1, r = mat; i < 100; ++i, FfStepPtr(&r))
     ...
See also:
FfGetPtr()
Parameters:
x Pointer to the row pointer.
Returns:
Always 0.

FfSub ( FEL  a,
FEL  b 
)

Finite field subtraction.

This function returns the difference of two field elements. Before calling FfSub(), the field must have been selected with FfSetField(). The arguments are not checked. If either argument is not in the allowed range the result is undefined and the program may crash. FfSub() may be implemented as a macro. In this case, it is guaranteed that both arguments are evaluated exactly once.

void FfSwapRows ( PTR  dest,
PTR  src 
)

Exchange two rows This function exchanges the contents of two rows.

As with all row operations, the row length must have been set before with |FfSetNoc()|.

Parameters:
dest Pointer to the first row
src Pointer to the second row

const char* FfToGap ( FEL  f  ) 

!section kernel.ff.etc Convert to GAP format.

Parameters:
f Field element.
Returns:
Pointer to the GAP representtion of |f|. !description This function takes a field element and returns the GAP representation of this element. The return value is a pointer to a static buffer which is overwritten on each call.

int FfToInt ( FEL  f  ) 

Convert field element to integer.

This function converts a field element to an integer, using a "canonical" representation of field elements as integers which may be different from the internal representation. In particular, the prime field is mapped on {0,...p-1} with 0 representing the zero element and 1 the unit element. FfToInt() should be used whenever field elements are to be written with printf().

size_t FfTrueRowSize ( int  noc  ) 

Number of used bytes in a row.

This function returns the number of bytes that are actually used by a row of noc Elements, i.e., without counting the padding bytes. This number is less than or equal to FfRowSize(noc).

FILE* FfWriteHeader ( const char *  name,
int  field,
int  nor,
int  noc 
)

Open File and Write Header.

This function opens a data file for input and writes the the file header. If the file does not exist, a new file is created. If the file exists it is overwritten.

Parameters:
name File name.
field First header entry (usually the field order).
nor Second header entry (usually the number of rows).
noc Third header entry (usually the number of columns).
Returns:
Pointer to open file, or |NULL| on error.

int FfWriteRows ( FILE *  f,
PTR  buf,
int  n 
)

Write rows This function writes 1 or more rows to a file.

The row size must have been set before.

Parameters:
f Pointer to File.
buf Pointer to data buffer.
n Number of rows to write.
Returns:
The number of rows that were successully written. A return value different from |n| indicates an error.


Variable Documentation

int FfChar

Current characteristic.

Current characteristic.

Characteristic of the current field. Like FfOrder, this variable may be used anywhere, but it must not be modified directly.

Row size.

This variable contains the size of a single row in memory. Its value is always equal to FfRowSize(FfNoc). The row size os always a multiple of sizeof(long).

size_t FfCurrentRowSize = (size_t) -1

Row size.

This variable contains the size of a single row in memory. Its value is always equal to FfRowSize(FfNoc). The row size os always a multiple of sizeof(long).

I/O row size.

This variable contains the number of bytes occupied by a row when stored in a data file. Its value is always equal to FfTrueRowSize(FfNoc). Since there is no padding in data files, FfCurrentRowSizeIo is usually smaller than FfCurrentRowSize.

FEL FfGen = 0

Field generator.

Generator.

This variable contains a genrator for the multiplicative group of the current field.

Generator.

Generator.

This variable contains a genrator for the multiplicative group of the current field.

int FfNoc = 0

Current row size.

Number of columns for row ops.

Used by all low-level row operations. FfNoc is updated automatically when the row size is changed with FfSetNoc().

int FfNoc

Number of columns for row ops.

Number of columns for row ops.

Used by all low-level row operations. FfNoc is updated automatically when the row size is changed with FfSetNoc().

int FfOrder = -1

Field order.

Current field order.

FfOrder may be used in expressiond but must never modified directly. To change the current field, use FfSetField().

int FfOrder

Current field order.

Current field order.

FfOrder may be used in expressiond but must never modified directly. To change the current field, use FfSetField().


MeatAxe 2.4 documentation, generated on Tue May 12 01:29:55 2009