mirror of
https://github.com/aicodix/code.git
synced 2026-04-27 14:30:36 +00:00
use exact size for number of positions
This commit is contained in:
parent
717d482822
commit
8718380786
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ class LDPCDecoder
|
|||
static const int MSG = K/D;
|
||||
static const int CNC = TABLE::LINKS_MAX_CN - 2;
|
||||
static const int BNL = (TABLE::LINKS_TOTAL + D-1) / D;
|
||||
static const int POS = PTY * CNC;
|
||||
static const int POS = (TABLE::LINKS_TOTAL - (2*R-1) + D-1) / D;
|
||||
|
||||
typedef SIMD<int8_t, SIMD_SIZE> TYPE;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue