mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-06-28 16:41:01 +03:00
fdr: remove clamp on confirm size
This commit is contained in:
parent
12edb07f6e
commit
a55bbe657c
@ -166,7 +166,7 @@ getFDRConfirm(const vector<hwlmLiteral> &lits, bool applyOneCharOpt,
|
||||
if (make_small) {
|
||||
nBits = min(10U, lg2(lits.size()) + 1);
|
||||
} else {
|
||||
nBits = min(13U, lg2(lits.size()) + 4);
|
||||
nBits = lg2(lits.size() + 4);
|
||||
}
|
||||
|
||||
CONF_TYPE mult = (CONF_TYPE)0x0b4e0ef37bc32127ULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user