OESimScorePair¶
class OESimScorePair
This class represents OESimScorePair that holds a
similarity scores with an index i
and an index j
that identifies
the fingerprints in the OEFastFPDatabase object from an
\(NxN\) similarity calculation with
OEFastFPDatabase.GetSparseMatrix
.
See also
Constructors¶
OESimScorePair(size_t i, size_t j, double s)
Initializes an OESimScorePair from an
index i
, an index j
and a score s
.
GetIdxA¶
size_t GetIdxA() const
Returns the index i
of the fingerprint corresponding to the
similarity score.
GetIdxB¶
size_t GetIdxB() const
Returns the index j
of the fingerprint corresponding to the
similarity score.
GetScore¶
double GetScore() const
Returns the similarity score of the fingerprint corresponding to
the index i
and index j
fingerprints.