Files
rdkit/Code/JavaWrappers/DiversityPick.h
2011-10-08 12:59:40 +00:00

39 lines
1.1 KiB
C++

#include <list>
#include <map>
#include <DataStructs/BitOps.h>
#include <DataStructs/ExplicitBitVect.h>
#include <SimDivPickers/MaxMinPicker.h>
#include <RDBoost/Exceptions.h>
namespace {
class taniFunctor {
public:
taniFunctor(const std::vector<ExplicitBitVect> &ebvs) : d_ebvs(ebvs) {}
double operator()(unsigned int i,unsigned int j) {
double res;
std::pair<unsigned int ,unsigned int> idxPair(i,j);
if(this->d_cache.count(idxPair)>0){
res = this->d_cache[idxPair];
} else {
res=1.-TanimotoSimilarity(d_ebvs[i],d_ebvs[j]);
this->d_cache[idxPair]=res;
}
return res;
}
private:
const std::vector<ExplicitBitVect> &d_ebvs;
std::map<std::pair<unsigned int,unsigned int>,double> d_cache;
};
}
std::vector<int> pickUsingFingerprints(const std::vector<ExplicitBitVect> &ebvs,unsigned int nToPick
){
if(nToPick>=ebvs.size()) throw ValueErrorException("nToPick is larger than the vector size");
std::vector<int> res;
RDPickers::MaxMinPicker picker;
taniFunctor ftor(ebvs);
res = picker.lazyPick(ftor,ebvs.size(),nToPick);
return res;
}