1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-29 11:21:22 +03:00

Change default f to 20

This commit is contained in:
Jennifer Liu
2018-09-04 17:12:35 -07:00
parent 7a02df8dbe
commit 21721b75a3
5 changed files with 7 additions and 7 deletions

View File

@ -356,7 +356,7 @@ static ZDICT_fastCover_params_t defaultFastCoverParams(void)
ZDICT_fastCover_params_t params;
memset(&params, 0, sizeof(params));
params.d = 8;
params.f = 18;
params.f = 20;
params.steps = 4;
params.splitPoint = 0.75; /* different from default splitPoint of cover */
params.accel = DEFAULT_ACCEL;