summaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/common/hitrank.h
blob: 092855878c295a588a7fa8718aaf91b69b6598e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <cmath>

namespace search {

typedef double HitRank;
constexpr HitRank default_rank_value = -HUGE_VAL;
constexpr HitRank zero_rank_value = 0.0;

} // namespace search