File tree Expand file tree Collapse file tree
include/geode/stochastic/sampling/mcmc/helpers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,12 +34,12 @@ namespace geode
3434 class opengeode_stochastic_stochastic_api MonitoringStatistics
3535 {
3636 public:
37- std::vector< double > sum;
38- std::vector< double > sum_squares;
39- std::vector< double > means;
40- std::vector< double > variances;
4137 MonitoringStatistics ( MonitoringStatistics&& ) = default ;
4238 MonitoringStatistics ( const MonitoringStatistics& ) = default ;
39+ MonitoringStatistics& operator =(
40+ MonitoringStatistics&& ) noexcept = default ;
41+ MonitoringStatistics& operator =(
42+ const MonitoringStatistics& ) noexcept = default ;
4343
4444 MonitoringStatistics ( const index_t nb_energy_terms )
4545 {
@@ -71,6 +71,12 @@ namespace geode
7171 // stddevs[stat_id] =std::sqrt( std::max( variance, 0.0 ) );
7272 }
7373 }
74+
75+ public:
76+ std::vector< double > sum;
77+ std::vector< double > sum_squares;
78+ std::vector< double > means;
79+ std::vector< double > variances;
7480 };
7581
7682 template < typename ObjectType >
You can’t perform that action at this time.
0 commit comments