- Timestamp:
- Oct 13, 2008, 8:01:47 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/normalization_test.cc
r1536 r1568 24 24 #include "yat/normalizer/Centralizer.h" 25 25 #include "yat/normalizer/ColumnNormalizer.h" 26 #include "yat/normalizer/CubicSplineNormalizer.h" 26 27 #include "yat/normalizer/Gauss.h" 27 28 #include "yat/normalizer/QuantileNormalizer.h" … … 42 43 void test_centralizer(test::Suite&); 43 44 void test_column_normalize(test::Suite&); 45 void test_cubicspline_normalize(test::Suite&); 44 46 void test_gauss_normalize(test::Suite&); 45 47 void test_quantile_normalize(test::Suite&); … … 56 58 test_centralizer(suite); 57 59 test_column_normalize(suite); 60 test_cubicspline_normalize(suite); 58 61 test_quantile_normalize(suite); 59 62 test_gauss_normalize(suite); … … 115 118 } 116 119 120 121 void test_cubicspline_normalize(test::Suite& suite) 122 { 123 suite.err() << "Testing CubicSplineNormalizer\n"; 124 } 125 126 117 127 void test_quantile_normalize(test::Suite& suite) 118 128 { -
trunk/yat/normalizer/Makefile.am
r1536 r1568 26 26 27 27 include_normalizer_HEADERS = Centralizer.h ColumnNormalizer.h \ 28 Gauss.h QuantileNormalizer.h RowNormalizer.h Spearman.h Zscore.h 28 CubicSplineNormalizer.h Gauss.h QuantileNormalizer.h RowNormalizer.h \ 29 Spearman.h Zscore.h
Note: See TracChangeset
for help on using the changeset viewer.