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