mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
* not yet done * update docs, python tests, and the release notes * updates in response to review
72 lines
2.3 KiB
C++
72 lines
2.3 KiB
C++
//
|
|
// Copyright (C) 2017 Greg Landrum
|
|
//
|
|
// @@ All Rights Reserved @@
|
|
// This file is part of the RDKit.
|
|
// The contents are covered by the terms of the BSD license
|
|
// which is included in the file license.txt, found at the root
|
|
// of the RDKit source tree.
|
|
//
|
|
#include <RDGeneral/test.h>
|
|
#include "MaxMinPicker.h"
|
|
#include <iostream>
|
|
#include <RDGeneral/Invariant.h>
|
|
#include <RDGeneral/RDLog.h>
|
|
#include <boost/foreach.hpp>
|
|
|
|
namespace {
|
|
double dist_on_line(unsigned int i, unsigned int j) {
|
|
return std::fabs((double)i - (double)j);
|
|
}
|
|
} // namespace
|
|
void testGithub1421() {
|
|
BOOST_LOG(rdErrorLog) << "-------------------------------------" << std::endl;
|
|
BOOST_LOG(rdErrorLog)
|
|
<< "Testing github issue 1421: MaxMinPicker picking non-existent element."
|
|
<< std::endl;
|
|
RDPickers::MaxMinPicker pkr;
|
|
RDKit::INT_VECT picks;
|
|
int poolSz = 1000;
|
|
picks = pkr.lazyPick(dist_on_line, poolSz, 10, RDKit::INT_VECT(), 2748);
|
|
BOOST_FOREACH (int pick, picks) { TEST_ASSERT(pick < poolSz); }
|
|
BOOST_LOG(rdErrorLog) << "Done" << std::endl;
|
|
}
|
|
|
|
void testGithub2245() {
|
|
BOOST_LOG(rdErrorLog) << "-------------------------------------" << std::endl;
|
|
BOOST_LOG(rdErrorLog) << "Testing github issue 2245: MinMax Diversity picker "
|
|
"seeding shows deterministic / non-random behaviour."
|
|
<< std::endl;
|
|
{
|
|
RDPickers::MaxMinPicker pkr;
|
|
int poolSz = 1000;
|
|
auto picks1 = pkr.lazyPick(dist_on_line, poolSz, 10, RDKit::INT_VECT(), -1);
|
|
auto picks2 = pkr.lazyPick(dist_on_line, poolSz, 10, RDKit::INT_VECT(), -1);
|
|
TEST_ASSERT(picks1 != picks2);
|
|
}
|
|
{ // make sure the default is also random
|
|
RDPickers::MaxMinPicker pkr;
|
|
int poolSz = 1000;
|
|
auto picks1 = pkr.lazyPick(dist_on_line, poolSz, 10);
|
|
auto picks2 = pkr.lazyPick(dist_on_line, poolSz, 10);
|
|
TEST_ASSERT(picks1 != picks2);
|
|
}
|
|
{ // and we're still reproducible when we want to be
|
|
RDPickers::MaxMinPicker pkr;
|
|
int poolSz = 1000;
|
|
auto picks1 =
|
|
pkr.lazyPick(dist_on_line, poolSz, 10, RDKit::INT_VECT(), 0xf00d);
|
|
auto picks2 =
|
|
pkr.lazyPick(dist_on_line, poolSz, 10, RDKit::INT_VECT(), 0xf00d);
|
|
TEST_ASSERT(picks1 == picks2);
|
|
}
|
|
BOOST_LOG(rdErrorLog) << "Done" << std::endl;
|
|
}
|
|
|
|
int main() {
|
|
RDLog::InitLogs();
|
|
testGithub1421();
|
|
testGithub2245();
|
|
return 0;
|
|
}
|