Searched defs:DistancePair (Results 1 – 1 of 1) sorted by relevance
23 struct DistancePair { struct24 DistancePair(int i1, int i2, double d) : index1(i1), index2(i2), dist(d) {} in DistancePair() argument26 bool operator<(const DistancePair& b1) const { return b1.dist < dist; } in operator <()28 int index1, index2;29 float dist;