diff --git a/include/sampling/sample_correlation_matrices.hpp b/include/sampling/sample_correlation_matrices.hpp index 733290d67..463eb109b 100644 --- a/include/sampling/sample_correlation_matrices.hpp +++ b/include/sampling/sample_correlation_matrices.hpp @@ -49,7 +49,7 @@ void uniform_correlation_sampling_MT( const unsigned int &n, const unsigned int &num_points, unsigned int const& nburns){ using PointList = std::vector; - PointList randPoints; + PointList randPoints; CorrelationSpectrahedron_MT P(n); const unsigned int d = P.dimension(); @@ -61,7 +61,7 @@ void uniform_correlation_sampling_MT( const unsigned int &n, for(const auto&p : randPoints){ MT final_cor_mat = p.mat + p.mat.transpose() - MT::Identity(n, n); randCorMatrices.push_back(final_cor_mat); - } + } }