From b71cfe287ea96721366d16f6c075e9bd4fe54e22 Mon Sep 17 00:00:00 2001
From: Martin Beseda <martin.beseda@vsb.cz>
Date: Wed, 14 Nov 2018 20:03:30 +0100
Subject: [PATCH] NEW: Added new class CSVReader.

---
 src/CMakeLists.txt | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 1c0fc0fb..04096060 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -34,19 +34,20 @@ if ("${BUILD_LIB}" STREQUAL "yes")
 	add_library(lib4neuro SHARED
 		Neuron/Neuron.cpp
 		Neuron/NeuronBinary.cpp
-        	Neuron/NeuronConstant.cpp
+		Neuron/NeuronConstant.cpp
 		Neuron/NeuronLinear.cpp
 		Neuron/NeuronLogistic.cpp        
 		Network/NeuralNetwork.cpp        
 		Network/NeuralNetworkSum.cpp        
 		NetConnection/ConnectionFunctionGeneral.cpp        
 		NetConnection/ConnectionFunctionIdentity.cpp        
-        	LearningMethods/ParticleSwarm.cpp
-        	LearningMethods/GradientDescent.cpp
+        LearningMethods/ParticleSwarm.cpp
+        LearningMethods/GradientDescent.cpp
 		DataSet/DataSet.cpp
 		ErrorFunction/ErrorFunctions.cpp
 		Solvers/DESolver.cpp
 		Exception/Exceptions.cpp
+		CSVReader/CSVReader.cpp
 	)
 
     target_link_libraries(
-- 
GitLab