Database
galois.asc
Associated article: Error-Recovery Codes
Tags: Database Parallel Design
_ERROR RECOVERY CODES_
by Bart De Canne
Listing One
/* Finds a primitive polynomial of GF(p^n) */
void FindPrimitivePolynomial(void) {
int k,d;
int *pi1; /* array of (n+1) integers, each indicating */
/* a number between 0 and p-1 -> generation */
/* of ...


