aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/test/diskindex/pagedict4_encoders.cpp
blob: a4d3c35a56f86fc1741fe0808c5f21eddf37fbb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "pagedict4_encoders.h"

namespace search::diskindex::test {

PageDict4Encoders::PageDict4Encoders(uint32_t chunkSize, uint64_t numWordIds)
    : sse(),
      spe(),
      pe()
{
    sse._minChunkDocs = chunkSize;
    sse._numWordIds = numWordIds;
    spe.copyParams(sse);
    pe.copyParams(sse);
}

PageDict4Encoders::~PageDict4Encoders() = default;

}