My Project
convergence_measure.hh
Go to the documentation of this file.
1 /* -*- mia-c++ -*-
2  *
3  * This file is part of MIA - a toolbox for medical image analysis
4  * Copyright (c) Genoa 1999-2017 Gert Wollny
5  *
6  * MIA is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with MIA; if not, see <http://www.gnu.org/licenses/>.
18  *
19  */
20 
21 
22 #ifndef mia_core_convergence_hh
23 #define mia_core_convergence_hh
24 
25 #include <deque>
26 #include <cstdint>
27 
28 #include <mia/core/defines.hh>
29 
30 namespace mia
31 {
32 
44 {
45 public:
46 
55  CConvergenceMeasure(uint32_t size);
56 
63  void push(double value);
64 
66  double value() const;
67 
68 
72  double rate() const;
73 
75  uint32_t fill() const;
76 
78  bool is_full_size() const;
79 
80 private:
81  std::deque<double> m_v;
82  uint32_t m_size;
83 };
84 
85 }; // namespace mia
86 
87 #endif
mia::CConvergenceMeasure::fill
uint32_t fill() const
mia::CConvergenceMeasure::is_full_size
bool is_full_size() const
mia::CConvergenceMeasure
Class to get a convergence value as mean over various time steps.
Definition: convergence_measure.hh:44
mia::CConvergenceMeasure::CConvergenceMeasure
CConvergenceMeasure(uint32_t size)
mia::CConvergenceMeasure::push
void push(double value)
mia::CConvergenceMeasure::value
double value() const
EXPORT_CORE
#define EXPORT_CORE
Macro to manage Visual C++ style dllimport/dllexport.
Definition: defines.hh:101
mia
Definition: convergence_measure.hh:31
mia::CConvergenceMeasure::rate
double rate() const
defines.hh