From d1426b4bce43dc6c562398b264432e39c2bdabde Mon Sep 17 00:00:00 2001 From: Caner Candan Date: Thu, 24 Feb 2011 11:09:51 +0100 Subject: [PATCH] * fixed issues on the code to be compatible with last version of boost --- edo/src/edoEstimatorNormalMulti.h | 2 +- edo/src/edoSamplerNormalMulti.h | 2 +- edo/test/t-mean-distance.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/edo/src/edoEstimatorNormalMulti.h b/edo/src/edoEstimatorNormalMulti.h index f06fadd8..8b4b7abb 100644 --- a/edo/src/edoEstimatorNormalMulti.h +++ b/edo/src/edoEstimatorNormalMulti.h @@ -73,7 +73,7 @@ public: //------------------------------------------------------------- - _varcovar.resize(s_size, s_size); + _varcovar.resize(s_size); //------------------------------------------------------------- diff --git a/edo/src/edoSamplerNormalMulti.h b/edo/src/edoSamplerNormalMulti.h index c1ce5745..889c2e54 100644 --- a/edo/src/edoSamplerNormalMulti.h +++ b/edo/src/edoSamplerNormalMulti.h @@ -53,7 +53,7 @@ public: assert( Vl == Vc ); - _L.resize(Vl, Vc); + _L.resize(Vl); unsigned int i,j,k; diff --git a/edo/test/t-mean-distance.cpp b/edo/test/t-mean-distance.cpp index 40a95c99..6f3b84f6 100644 --- a/edo/test/t-mean-distance.cpp +++ b/edo/test/t-mean-distance.cpp @@ -41,7 +41,7 @@ Authors: #include #include -#include +#include #include "Rosenbrock.h" #include "Sphere.h"