Refactoring mpi files to usage relative #includes

This commit is contained in:
Ronaldd Pinho 2019-06-29 21:01:06 -03:00
commit f48b7642c4
7 changed files with 15 additions and 15 deletions

View file

@ -24,10 +24,10 @@ Authors:
# include <vector> // std::vector # include <vector> // std::vector
# include <utils/eoLogger.h> # include "../utils/eoLogger.h"
# include <utils/eoTimer.h> # include "../utils/eoTimer.h"
# include <eoFunctor.h> # include "../eoFunctor.h"
# include <eoExceptions.h> # include "../eoExceptions.h"
# include "eoMpiNode.h" # include "eoMpiNode.h"
# include "eoMpiAssignmentAlgorithm.h" # include "eoMpiAssignmentAlgorithm.h"

View file

@ -1,7 +1,7 @@
# ifndef __EO_MULTISTART_H__ # ifndef __EO_MULTISTART_H__
# define __EO_MULTISTART_H__ # define __EO_MULTISTART_H__
# include <eo> # include "../eo"
# include "eoMpi.h" # include "eoMpi.h"
/** /**

View file

@ -24,7 +24,7 @@ Authors:
# include "eoMpi.h" # include "eoMpi.h"
# include <eoFunctor.h> // eoUF # include "../eoFunctor.h" // eoUF
# include <vector> // std::vector population # include <vector> // std::vector population
/** /**

View file

@ -22,8 +22,8 @@ Authors:
#ifndef __EO_IMPL_MPI_HPP__ #ifndef __EO_IMPL_MPI_HPP__
#define __EO_IMPL_MPI_HPP__ #define __EO_IMPL_MPI_HPP__
# include <mpi.h> #include "eoMpi.h"
# include <serial/eoSerial.h> #include "../serial/eoSerial.h"
/** /**
* This namespace contains reimplementations of some parts of the Boost::MPI API in C++, so as to be used in * This namespace contains reimplementations of some parts of the Boost::MPI API in C++, so as to be used in