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

#include "pagedict4_decoders.h"

namespace search::diskindex::test {

PageDict4Decoders::PageDict4Decoders(uint32_t chunkSize, uint64_t numWordIds)
    : ssd(),
      spd(),
      pd()
{
    ssd._minChunkDocs = chunkSize;
    ssd._numWordIds = numWordIds;
    spd.copyParams(ssd);
    pd.copyParams(ssd);
}

PageDict4Decoders::~PageDict4Decoders() = default;

}