aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/query/DotProductItem.java
blob: 2d9d6c927e71979926ecaac3d8d18665b626888b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.prelude.query;

import java.util.Map;

/**
 * A weighted set query item to be evaluated as a sparse dot product.
 *
 * The resulting dot product will be available as a raw score in the rank framework.
 *
 * @author havardpe
 */
public class DotProductItem extends WeightedSetItem {

    public DotProductItem(String indexName) { super(indexName); }
    public DotProductItem(String indexName, Map<Object, Integer> map) { super(indexName, map); }

    @Override
    public ItemType getItemType() { return ItemType.DOTPRODUCT; }

}