Last change
on this file since 450 was
450,
checked in by Peter, 16 years ago
|
starting to move namespace svm, it wont work compiling for a while, please hold... yeah yeah I know I should have made new branch, but...
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
492 bytes
|
Line | |
---|
1 | // $Id: KernelView.cc 450 2005-12-15 20:59:21Z peter $ |
---|
2 | |
---|
3 | #include <c++_tools/classifier/KernelView.h> |
---|
4 | |
---|
5 | #include <c++_tools/classifier/KernelFunction.h> |
---|
6 | |
---|
7 | |
---|
8 | namespace theplu { |
---|
9 | namespace classifier { |
---|
10 | |
---|
11 | KernelView::KernelView(const Kernel& kernel, const std::vector<size_t>& index) |
---|
12 | : Kernel(), kernel_(&kernel), index_(index) |
---|
13 | { |
---|
14 | } |
---|
15 | |
---|
16 | KernelView::KernelView(const KernelView& other) |
---|
17 | : Kernel(), kernel_(other.kernel_), index_(other.index_) |
---|
18 | { |
---|
19 | } |
---|
20 | |
---|
21 | KernelView::~KernelView(void) |
---|
22 | { |
---|
23 | } |
---|
24 | |
---|
25 | }} // of namespace classifier and namespace theplu |
---|
Note: See
TracBrowser
for help on using the repository browser.