From bf14366455dd3651d83ff03b22dd48b803248e64 Mon Sep 17 00:00:00 2001
From: Martin Beseda <martin.beseda@vsb.cz>
Date: Tue, 22 Jan 2019 19:31:50 +0100
Subject: [PATCH] FIX: Removing max and min values after de-normalization of
 data-set, so the is_normalized() method will again return 'False' after
 de-normalization.

---
 src/DataSet/DataSet.cpp | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/DataSet/DataSet.cpp b/src/DataSet/DataSet.cpp
index 71b28846..2e9dfe5f 100644
--- a/src/DataSet/DataSet.cpp
+++ b/src/DataSet/DataSet.cpp
@@ -368,6 +368,9 @@ namespace lib4neuro {
             }
             pair.second = tmp_out;
         }
+
+        /* Remove found max and minimal values, because of is_normalized() method */
+        this->max_min_inp_val.clear();
     }
 
     void DataSet::de_normalize_single(std::vector<double> &d1, std::vector<double> &d2){
-- 
GitLab