From c1f71d2f295c65ec30e917d12e127136d142106b Mon Sep 17 00:00:00 2001
From: Michal Kravcenko <michal.kravcenko@vsb.cz>
Date: Mon, 21 Jan 2019 11:55:13 +0100
Subject: [PATCH] FIX: fixed an issue when the optimal weights are not set to
 the neural network

---
 src/LearningMethods/ParticleSwarm.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/LearningMethods/ParticleSwarm.cpp b/src/LearningMethods/ParticleSwarm.cpp
index 65325dbc..2821fa50 100644
--- a/src/LearningMethods/ParticleSwarm.cpp
+++ b/src/LearningMethods/ParticleSwarm.cpp
@@ -406,7 +406,8 @@ namespace lib4neuro {
 //        printf("%10.8f \n", (*this->p_min_glob)[i]);
 //    }
 //
-//    this->f->eval( this->get_solution() );
+
+        ef.eval( this->get_parameters() );
 
 
         delete centroid;
-- 
GitLab