// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include namespace search { class Rand48; namespace fakedata { class FakeWordSet; } } namespace postinglistbm { class AndStress { public: AndStress(); ~AndStress(); void run(search::Rand48 &rnd, search::fakedata::FakeWordSet &wordSet, unsigned int numDocs, unsigned int commonDocFreq, const std::vector &postingTypes, unsigned int loops, unsigned int skipCommonPairsRate, uint32_t numTasks, uint32_t stride, bool unpack); }; } // namespace postinglistbm