From 8000ca68f232bff79e62958139caaa389ceef2f1 Mon Sep 17 00:00:00 2001
From: Martin Beseda <martinbeseda@seznam.cz>
Date: Fri, 7 Sep 2018 12:06:48 +0200
Subject: [PATCH] ENH: Removed relative paths to 4neuro.h, as it's not needed,
 when the code is given the proper include directory during compilation.

---
 src/examples/net_test_3.cpp            | 2 +-
 src/examples/network_serialization.cpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/examples/net_test_3.cpp b/src/examples/net_test_3.cpp
index 9354fe79..50bb9950 100644
--- a/src/examples/net_test_3.cpp
+++ b/src/examples/net_test_3.cpp
@@ -11,7 +11,7 @@
 
 #include <vector>
 
-#include "../include/4neuro.h"
+#include "4neuro.h"
 
 int main() {
     std::cout << "Running lib4neuro example   3: Use of the particle swarm method to train a set of networks sharing some edge weights" << std::endl;
diff --git a/src/examples/network_serialization.cpp b/src/examples/network_serialization.cpp
index 71944de6..92f821c0 100644
--- a/src/examples/network_serialization.cpp
+++ b/src/examples/network_serialization.cpp
@@ -7,7 +7,7 @@
  */
 
 #include <vector>
-#include "../include/4neuro.h"
+#include "4neuro.h"
 
 int main() {
     std::cout << "Running lib4neuro Serialization example   1" << std::endl;
-- 
GitLab