diff --git a/lib/decoding.cpp b/lib/decoding.cpp index 2d3021a..60712e3 100644 --- a/lib/decoding.cpp +++ b/lib/decoding.cpp @@ -2,7 +2,8 @@ #include "decoding.h" bool syndrome_decode (bvector&syndrome, gf2m&fld, polynomial& goppa, - std::vector& sqInv, bvector&ev) + std::vector& 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. diff --git a/lib/decoding.h b/lib/decoding.h index 48bc7a8..fcdee96 100644 --- a/lib/decoding.h +++ b/lib/decoding.h @@ -9,6 +9,7 @@ bool syndrome_decode (bvector&syndrome, gf2m&fld, polynomial& gp, std::vector& sqInv, - bvector&ev); + bvector&ev, + bool check_failure = true); #endif