Exemple #1
0
bool
netsFarmTest()
{
	std::auto_ptr<LearningFactor> lFactor = LearningFactorCreate::createBisectionBasedLearningFactor(false);
	NetsFarm farm(15, *lFactor);
	return testImpl(farm);
}
Exemple #2
0
bool
constantValuePredictionTest()
{
	std::auto_ptr<LearningFactor> lFactor = LearningFactorCreate::createBisectionBasedLearningFactor(true);
	RmlpNet net(10,10,5, RandomGenerator::createDefault(), *lFactor);

	return testImpl(net);
}
Exemple #3
0
	bool test(const T_KeysTpl keysTuple) {
	    return testImpl(keysTuple);
	}
Exemple #4
0
	/***************************************************************************
         * test
         ***************************************************************************/
	bool test(const T_Keys ...keys) {
	    return testImpl(hana::make_tuple(keys...));
	}