blastest.h

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

H
49
字号
#ifndef BLASTEST_H_#define BLASTEST_H_#include <cppunit/extensions/HelperMacros.h>#include "libeblearn.h"//! Test class for Blas classclass BlasTest : public CppUnit::TestFixture  {  CPPUNIT_TEST_SUITE(BlasTest);  CPPUNIT_TEST(test_idx_min_max);  CPPUNIT_TEST(test_idx_sums);  CPPUNIT_TEST(test_idx_sortdown);  CPPUNIT_TEST(test_idx_sqrdist);  CPPUNIT_TEST(test_idx_exp);  CPPUNIT_TEST(test_idx_m2oversample);  CPPUNIT_TEST(test_idx_m2squdotm1);  CPPUNIT_TEST(test_idx_m2extm2acc);  CPPUNIT_TEST(test_idx_copy);  CPPUNIT_TEST(test_idx_copy2);  CPPUNIT_TEST(test_idx_abs);  CPPUNIT_TEST(test_huge_vec);  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_idx_min_max();  void test_idx_sums();  void test_idx_sortdown();  void test_idx_sqrdist();  void test_idx_exp();  void test_idx_m2oversample();  void test_idx_m2squdotm1();  void test_idx_m2extm2acc();  void test_idx_copy();  void test_idx_copy2();  void test_idx_abs();  void test_huge_vec();};#endif /* BLASTEST_H_ */

⌨️ 快捷键说明

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