aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/queryeval/wand/weak_and_search.h
blob: cda5f4c423238d0beea096e0bac6fe00e5333f77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/searchlib/queryeval/searchiterator.h>
#include "wand_parts.h"

namespace search {
namespace queryeval {

struct WeakAndSearch : SearchIterator {
    using Terms = wand::Terms;
    virtual size_t get_num_terms() const = 0;
    virtual int32_t get_term_weight(size_t idx) const = 0;
    virtual wand::score_t get_max_score(size_t idx) const = 0;
    virtual const Terms &getTerms() const = 0;
    virtual uint32_t getN() const = 0;
    void visitMembers(vespalib::ObjectVisitor &visitor) const override;
    static SearchIterator::UP createArrayWand(const Terms &terms, uint32_t n, bool strict);
    static SearchIterator::UP createHeapWand(const Terms &terms, uint32_t n, bool strict);
    static SearchIterator::UP create(const Terms &terms, uint32_t n, bool strict);
};

} // namespace queryeval
} // namespace search