annotate pointpair.cpp @ 546:e8193805ce42 multiprobeLSH

Rework new audiodb_track_id_datum_offset() and audiodb_insert_create_datum_offset() so that all offsets are in num_vectors. Internals of data storage are left the the methods to implement. If we are going to export these methods to the API, how do we expose the cache ? It needs to be passed back to the user and back in by the user on each call for caching to be re-entrant. No (intentional) functional changes this version.
author mas01mc
date Sun, 08 Feb 2009 22:32:33 +0000
parents cc2b97d020b1
children 9119f2fa3efe
rev   line source
mas01cr@498 1 extern "C" {
mas01cr@498 2 #include "audioDB_API.h"
mas01cr@509 3 }
mas01cr@498 4 #include "audioDB-internals.h"
mas01cr@498 5
mas01cr@498 6 PointPair::PointPair(Uns32T a, Uns32T b, Uns32T c) :
mas01cr@498 7 trackID(a), qpos(b), spos(c) {
mas01cr@498 8 };
mas01cr@498 9
mas01cr@498 10 bool operator<(const PointPair& a, const PointPair& b) {
mas01cr@498 11 return ((a.trackID < b.trackID) ||
mas01cr@498 12 ((a.trackID == b.trackID) &&
mas01cr@498 13 ((a.spos < b.spos) || ((a.spos == b.spos) && (a.qpos < b.qpos)))));
mas01cr@498 14 }
mas01cr@498 15
mas01cr@498 16 bool operator>(const PointPair& a, const PointPair& b) {
mas01cr@498 17 return ((a.trackID > b.trackID) ||
mas01cr@498 18 ((a.trackID == b.trackID) &&
mas01cr@498 19 ((a.spos > b.spos) || ((a.spos == b.spos) && (a.qpos > b.qpos)))));
mas01cr@498 20 }
mas01cr@498 21
mas01cr@498 22 bool operator==(const PointPair& a, const PointPair& b) {
mas01cr@498 23 return ((a.trackID == b.trackID) &&
mas01cr@498 24 (a.qpos == b.qpos) &&
mas01cr@498 25 (a.spos == b.spos));
mas01cr@498 26 }