source: trunk/c++_tools/classifier/Makefile.am @ 666

Last change on this file since 666 was 666, checked in by Peter, 17 years ago

refs #151, added IRRetreive functors and prepared ConsensusInputRanker? for usage.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date ID
File size: 2.2 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id$
4
5# Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson, Markus Ringnèr
6#
7# This file is part of the thep c++ tools library,
8#                                http://lev.thep.lu.se/trac/c++_tools
9#
10# The c++ tools library is free software; you can redistribute it
11# and/or modify it under the terms of the GNU General Public License as
12# published by the Free Software Foundation; either version 2 of the
13# License, or (at your option) any later version.
14#
15# The c++ library is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18# General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23# 02111-1307, USA.
24
25noinst_LTLIBRARIES = libclassifier.la
26libclassifier_la_SOURCES = \
27  ConsensusInputRanker.cc \
28  CrossValidationSampler.cc \
29  DataLookup1D.cc \
30  DataLookupWeighted1D.cc \
31  DataLookup2D.cc \
32  EnsembleBuilder.cc \
33  FeatureSelector.cc \
34  FeatureSelectorIR.cc \
35  FeatureSelectorRandom.cc \
36  GaussianKernelFunction.cc \
37  IGP.cc \
38  InputRanker.cc \
39  IRFunctor.h \
40  IRRank.h \
41  IRScore.h \
42  Kernel.cc \
43  Kernel_MEV.cc \
44  Kernel_SEV.cc \
45  KernelLookup.cc \
46  MatrixLookup.cc \
47  MatrixLookupWeighted.cc \
48  NBC.cc \
49  NCC.cc \
50  PolynomialKernelFunction.cc \
51  Sampler.cc \
52  SubsetGenerator.cc \
53  SupervisedClassifier.cc \
54  SVindex.cc \
55  SVM.cc \
56  Target.cc \
57  utility.cc
58
59
60include_classifierdir = $(includedir)/c++_tools/classifier
61
62include_classifier_HEADERS = \
63  ConsensusInputRanker.h \
64  CrossValidationSampler.h \
65  DataLookup1D.h \
66  DataLookupWeighted1D.h \
67  DataLookup2D.h \
68  EnsembleBuilder.h \
69  FeatureSelector.h \
70  FeatureSelectorIR.h \
71  FeatureSelectorRandom.h \
72  GaussianKernelFunction.h \
73  IGP.h \
74  InputRanker.h \
75  Kernel.h \
76  KernelFunction.h \
77  Kernel_MEV.h \
78  Kernel_SEV.h \
79  KernelLookup.h \
80  MatrixLookup.h \
81  MatrixLookupWeighted.h \
82  NBC.h \
83  NCC.h \
84  PolynomialKernelFunction.h \
85  Sampler.h \
86  SubsetGenerator.h \
87  SupervisedClassifier.h \
88  SVindex.h \
89  SVM.h \
90  Target.h \
91  utility.h
Note: See TracBrowser for help on using the repository browser.