MCPcopy Create free account
hub / github.com/comaps/comaps / Competitiors

Class Competitiors

libs/search/house_detector.cpp:406–417  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

404}
405
406struct Competitiors
407{
408 uint32_t m_candidateIndex;
409 uint32_t m_chainIndex;
410 double m_score;
411 Competitiors(uint32_t candidateIndex, uint32_t chainIndex, double score)
412 : m_candidateIndex(candidateIndex)
413 , m_chainIndex(chainIndex)
414 , m_score(score)
415 {}
416 bool operator<(Competitiors const & c) const { return m_score < c.m_score; }
417};
418
419void ProccessHouses(vector<HouseProjection const *> const & st, ResultAccumulator & acc)
420{

Callers 1

ProccessHousesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected