summaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchcommon/attribute/distance_metric.h
blob: 9f9f45810b9f80acefb1c0de8bba50ea65a13656 (plain) (blame)
1
2
3
4
5
6
7
8
9
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace search::attribute {

enum class DistanceMetric { Euclidean, Angular, GeoDegrees, InnerProduct, Hamming, PrenormalizedAngular, Dotproduct };

}