コード例 #1
0
ファイル: rmlpTest.cpp プロジェクト: lucasso/ajres
bool
netsFarmTest()
{
	std::auto_ptr<LearningFactor> lFactor = LearningFactorCreate::createBisectionBasedLearningFactor(false);
	NetsFarm farm(15, *lFactor);
	return testImpl(farm);
}
コード例 #2
0
ファイル: rmlpTest.cpp プロジェクト: lucasso/ajres
bool
constantValuePredictionTest()
{
	std::auto_ptr<LearningFactor> lFactor = LearningFactorCreate::createBisectionBasedLearningFactor(true);
	RmlpNet net(10,10,5, RandomGenerator::createDefault(), *lFactor);

	return testImpl(net);
}
コード例 #3
0
ファイル: MultiKeyMap.hpp プロジェクト: eucall-software/DSP
	bool test(const T_KeysTpl keysTuple) {
	    return testImpl(keysTuple);
	}
コード例 #4
0
ファイル: MultiKeyMap.hpp プロジェクト: eucall-software/DSP
	/***************************************************************************
         * test
         ***************************************************************************/
	bool test(const T_Keys ...keys) {
	    return testImpl(hana::make_tuple(keys...));
	}