Last change
on this file since 2881 was
2881,
checked in by Peter, 10 years ago
|
Define PP variables in config.h rather than in CPPFLAGS. Include
config.h into all source files. Only ammend CXXFLAGS with '-Wall
-pedantic' when --enable-debug. In default mode we respect CXXFLAGS
value set by user, or set to default value '-O3'.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
1.0 KB
|
Rev | Line | |
---|
[1317] | 1 | // $Id: Percentiler.cc 2881 2012-11-18 01:28:05Z peter $ |
---|
| 2 | |
---|
| 3 | /* |
---|
[2119] | 4 | Copyright (C) 2008 Jari Häkkinen, Peter Johansson |
---|
[1317] | 5 | |
---|
[1469] | 6 | This file is part of the yat library, http://dev.thep.lu.se/yat |
---|
[1317] | 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 |
---|
[1486] | 10 | published by the Free Software Foundation; either version 3 of the |
---|
[1317] | 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 |
---|
[1487] | 19 | along with yat. If not, see <http://www.gnu.org/licenses/>. |
---|
[1317] | 20 | */ |
---|
| 21 | |
---|
[2881] | 22 | #include <config.h> |
---|
| 23 | |
---|
[1317] | 24 | #include "Percentiler.h" |
---|
| 25 | |
---|
[1323] | 26 | #include <cassert> |
---|
| 27 | |
---|
[1317] | 28 | namespace theplu { |
---|
| 29 | namespace yat { |
---|
| 30 | namespace statistics { |
---|
| 31 | |
---|
| 32 | Percentiler::Percentiler(double perc, bool sorted) |
---|
| 33 | : perc_(perc), sorted_(sorted) |
---|
[1323] | 34 | { |
---|
| 35 | assert(perc_<=100.0); |
---|
| 36 | assert(perc_>=0.0); |
---|
| 37 | } |
---|
[1317] | 38 | |
---|
| 39 | }}} // of namespace statistics, yat, and theplu |
---|
Note: See
TracBrowser
for help on using the repository browser.