Last change
on this file since 682 was
682,
checked in by Jari Häkkinen, 17 years ago
|
Addresses #153. Moved regression files to .../yat/regression.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.1 KB
|
Rev | Line | |
---|
[216] | 1 | // $Id: KernelBox.cc 682 2006-10-11 22:06:38Z jari $ |
---|
| 2 | |
---|
[675] | 3 | /* |
---|
| 4 | Copyright (C) The authors contributing to this file. |
---|
[216] | 5 | |
---|
[675] | 6 | This file is part of the yat library, http://lev.thep.lu.se/trac/yat |
---|
| 7 | |
---|
| 8 | The yat library is free software; you can redistribute it and/or |
---|
| 9 | modify it under the terms of the GNU General Public License as |
---|
| 10 | published by the Free Software Foundation; either version 2 of the |
---|
| 11 | License, or (at your option) any later version. |
---|
| 12 | |
---|
| 13 | The yat library is distributed in the hope that it will be useful, |
---|
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 16 | General Public License for more details. |
---|
| 17 | |
---|
| 18 | You should have received a copy of the GNU General Public License |
---|
| 19 | along with this program; if not, write to the Free Software |
---|
| 20 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
| 21 | 02111-1307, USA. |
---|
| 22 | */ |
---|
| 23 | |
---|
[680] | 24 | #include "KernelBox.h" |
---|
[675] | 25 | |
---|
[216] | 26 | namespace theplu { |
---|
[680] | 27 | namespace yat { |
---|
[389] | 28 | namespace regression { |
---|
[680] | 29 | |
---|
[295] | 30 | KernelBox::KernelBox(void) |
---|
| 31 | : Kernel() |
---|
[216] | 32 | { |
---|
| 33 | } |
---|
| 34 | |
---|
[295] | 35 | double KernelBox::weight(const double u) const |
---|
[216] | 36 | { |
---|
| 37 | if (u>1 || u<-1) |
---|
| 38 | return 0.0; |
---|
| 39 | else |
---|
| 40 | return 1.0; |
---|
| 41 | } |
---|
| 42 | |
---|
[681] | 43 | }}} // of namespaces regression, yat, and theplu |
---|
Note: See
TracBrowser
for help on using the repository browser.