decoding: failure checking is optional
This commit is contained in:
parent
d573d1cfe7
commit
2c7d4276cf
|
@ -2,7 +2,8 @@
|
|||
#include "decoding.h"
|
||||
|
||||
bool syndrome_decode (bvector&syndrome, gf2m&fld, polynomial& goppa,
|
||||
std::vector<polynomial>& sqInv, bvector&ev)
|
||||
std::vector<polynomial>& sqInv, bvector&ev,
|
||||
bool check_failure)
|
||||
|
||||
{
|
||||
ev.clear();
|
||||
|
@ -32,6 +33,7 @@ bool syndrome_decode (bvector&syndrome, gf2m&fld, polynomial& goppa,
|
|||
if (a.eval (i, fld) == 0) {
|
||||
ev[i] = 1;
|
||||
|
||||
if (!check_failure) continue;
|
||||
//check if the error locator splits over GF(2^m).
|
||||
//We simplify it to the assumption that all roots are
|
||||
//also roots of linear factors.
|
||||
|
|
|
@ -9,6 +9,7 @@ bool syndrome_decode (bvector&syndrome,
|
|||
gf2m&fld,
|
||||
polynomial& gp,
|
||||
std::vector<polynomial>& sqInv,
|
||||
bvector&ev);
|
||||
bvector&ev,
|
||||
bool check_failure = true);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue