ebmtest.h

来自「Gaussian Mixture Algorithm」· C头文件 代码 · 共 35 行

H
35
字号
#ifndef EBMTEST_H_#define EBMTEST_H_#include <cppunit/extensions/HelperMacros.h>#include "libeblearn.h"//! Test class for Ebm classclass EbmTest : public CppUnit::TestFixture  {  CPPUNIT_TEST_SUITE(EbmTest);  CPPUNIT_TEST(test_clayer_fprop);  CPPUNIT_TEST(test_full_table);  CPPUNIT_TEST(test_slayer);  CPPUNIT_TEST(test_softmax);  CPPUNIT_TEST(test_state_copy);  CPPUNIT_TEST_SUITE_END();private:  // member variablespublic:  //! This function is called before each test function is called.  void setUp();  //! This function is called after each test function is called.  void tearDown();  // Test functions  void test_clayer_fprop();  void test_full_table();  void test_slayer();  void test_softmax();  void test_state_copy();};#endif /* EBMTEST_H_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?