Refactoring mpi files to usage relative #includes
This commit is contained in:
parent
281a61b39e
commit
f48b7642c4
7 changed files with 15 additions and 15 deletions
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ Contact: http://eodev.sourceforge.net
|
||||||
Authors:
|
Authors:
|
||||||
Benjamin Bouvier <benjamin.bouvier@gmail.com>
|
Benjamin Bouvier <benjamin.bouvier@gmail.com>
|
||||||
*/
|
*/
|
||||||
# include "eoMpiNode.h"
|
#include "eoMpiNode.h"
|
||||||
|
|
||||||
namespace eo
|
namespace eo
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -19,10 +19,10 @@ Contact: http://eodev.sourceforge.net
|
||||||
Authors:
|
Authors:
|
||||||
Benjamin Bouvier <benjamin.bouvier@gmail.com>
|
Benjamin Bouvier <benjamin.bouvier@gmail.com>
|
||||||
*/
|
*/
|
||||||
# ifndef __EO_TERMINATE_H__
|
#ifndef __EO_TERMINATE_H__
|
||||||
# define __EO_TERMINATE_H__
|
#define __EO_TERMINATE_H__
|
||||||
|
|
||||||
# include "eoMpi.h"
|
#include "eoMpi.h"
|
||||||
|
|
||||||
namespace eo
|
namespace eo
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ Contact: http://eodev.sourceforge.net
|
||||||
Authors:
|
Authors:
|
||||||
Benjamin Bouvier <benjamin.bouvier@gmail.com>
|
Benjamin Bouvier <benjamin.bouvier@gmail.com>
|
||||||
*/
|
*/
|
||||||
# include "implMpi.h"
|
#include "implMpi.h"
|
||||||
|
|
||||||
namespace mpi
|
namespace mpi
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -19,11 +19,11 @@ Contact: http://eodev.sourceforge.net
|
||||||
Authors:
|
Authors:
|
||||||
Benjamin Bouvier <benjamin.bouvier@gmail.com>
|
Benjamin Bouvier <benjamin.bouvier@gmail.com>
|
||||||
*/
|
*/
|
||||||
# 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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue