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