remove \r
[extl.git] / extl / intelligence / ann / test / test.h
blobc5ec6312e4f147b981bdd7001aa692b3c7bd1a4d
1 /* ///////////////////////////////////////////////////////////////////////
2 * File: test.h
4 * Created: 08.12.17
5 * Updated: 08.12.17
7 * Brief: The Container Library Unit-testing
9 * [<Home>]
10 * Copyright (c) 2008-2020, Waruqi All rights reserved.
11 * //////////////////////////////////////////////////////////////////// */
13 #ifndef EXTL_INTELLIGENCE_ANN_TEST_H
14 #define EXTL_INTELLIGENCE_ANN_TEST_H
16 /* ///////////////////////////////////////////////////////////////////////
17 * Includes
19 #include "../ann.h"
20 #include "xor_tester.h"
21 #include "and_tester.h"
22 #include "not_tester.h"
23 #include "sin_tester.h"
25 #ifdef EXTL_INTELLIGENCE_ANN_NETWORK_SUPPORT
27 # ifdef EXTL_INTELLIGENCE_ANN_BP_NETWORK_TEST_ENABLE
28 # include "bp_network_test.h"
29 # endif
31 # ifdef EXTL_INTELLIGENCE_ANN_PERCEPTRON_NETWORK_TEST_ENABLE
32 # include "perceptron_network_test.h"
33 # endif
35 # ifdef EXTL_INTELLIGENCE_ANN_WGA_NETWORK_TEST_ENABLE
36 # include "wga_network_test.h"
37 # endif
39 # ifdef EXTL_INTELLIGENCE_ANN_BAGGING_NETWORKS_TEST_ENABLE
40 # include "bagging_networks_test.h"
41 # endif
43 # ifdef EXTL_INTELLIGENCE_ANN_ADA_BOOSTING_NETWORKS_TEST_ENABLE
44 # include "ada_boosting_2_networks_test.h"
45 # include "ada_boosting_n_networks_test.h"
46 # endif
48 # ifdef EXTL_INTELLIGENCE_ANN_PCA_NETWORK_TEST_ENABLE
49 # include "pca_network_test.h"
50 # endif
52 # ifdef EXTL_INTELLIGENCE_ANN_PCA_MIXED_NETWORK_TEST_ENABLE
53 # include "pca_mixed_network_test.h"
54 # endif
55 #endif
57 /* //////////////////////////////////////////////////////////////////// */
58 #endif /* EXTL_INTELLIGENCE_ANN_TEST_H */
59 /* //////////////////////////////////////////////////////////////////// */