From 272e47b3d759d8e037b86327fcc5f973ae8d7c1f Mon Sep 17 00:00:00 2001 From: atrayees <121290945+atrayees@users.noreply.github.com> Date: Tue, 16 Jul 2024 18:56:12 +0530 Subject: [PATCH] Update sample_correlation_matrices.hpp --- include/sampling/sample_correlation_matrices.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); - } + } }