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

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

refs #57 added class for Naive Baysian Classification. Predict function not yet implemented though.

  • 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  Kernel.cc \
40  Kernel_MEV.cc \
41  Kernel_SEV.cc \
42  KernelLookup.cc \
43  MatrixLookup.cc \
44  MatrixLookupWeighted.cc \
45  NBC.cc \
46  NCC.cc \
47  PolynomialKernelFunction.cc \
48  Sampler.cc \
49  SubsetGenerator.cc \
50  SupervisedClassifier.cc \
51  SVindex.cc \
52  SVM.cc \
53  Target.cc \
54  utility.cc
55
56
57include_classifierdir = $(includedir)/c++_tools/classifier
58
59include_classifier_HEADERS = \
60  ConsensusInputRanker.h \
61  CrossValidationSampler.h \
62  DataLookup1D.h \
63  DataLookupWeighted1D.h \
64  DataLookup2D.h \
65  EnsembleBuilder.h \
66  FeatureSelector.h \
67  FeatureSelectorIR.h \
68  FeatureSelectorRandom.h \
69  GaussianKernelFunction.h \
70  IGP.h \
71  InputRanker.h \
72  Kernel.h \
73  KernelFunction.h \
74  Kernel_MEV.h \
75  Kernel_SEV.h \
76  KernelLookup.h \
77  MatrixLookup.h \
78  MatrixLookupWeighted.h \
79  NBC.h \
80  NCC.h \
81  PolynomialKernelFunction.h \
82  Sampler.h \
83  SubsetGenerator.h \
84  SupervisedClassifier.h \
85  SVindex.h \
86  SVM.h \
87  Target.h \
88  utility.h
Note: See TracBrowser for help on using the repository browser.