Correcting cpp files in eo directory changed to relative includes

This commit is contained in:
Ronaldd Pinho 2019-06-29 22:06:51 -03:00
commit a10818b601
9 changed files with 15 additions and 15 deletions

View file

@ -27,7 +27,7 @@
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#include <stdexcept> #include <stdexcept>
#include <paradiseo/eo/EO.h> #include "EO.h"
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
/** PO inheriting from EO is specially designed for particle swarm optimization particle.POs have got a fitness, /** PO inheriting from EO is specially designed for particle swarm optimization particle.POs have got a fitness,

View file

@ -25,8 +25,8 @@
#ifndef _EOALGO_H #ifndef _EOALGO_H
#define _EOALGO_H #define _EOALGO_H
#include <paradiseo/eo/eoPop.h> // for population #include "eoPop.h" // for population
#include <paradiseo/eo/eoFunctor.h> #include "eoFunctor.h"
/** /**
@defgroup Algorithms Algorithms @defgroup Algorithms Algorithms

View file

@ -31,7 +31,7 @@
#include "utils/eoLogger.h" #include "utils/eoLogger.h"
#include <signal.h> #include <signal.h>
#include "iostream" #include <iostream>
/** /**
* @addtogroup Continuators * @addtogroup Continuators

View file

@ -5,8 +5,8 @@
#include <cstddef> #include <cstddef>
#include <paradiseo/eo/eoFunctorStore.h> #include "eoFunctorStore.h"
#include <paradiseo/eo/eoFunctor.h> #include "eoFunctor.h"
/// clears the memory /// clears the memory

View file

@ -3,7 +3,7 @@
#pragma warning(disable:4786) #pragma warning(disable:4786)
#endif #endif
#include <paradiseo/eo/eoPersistent.h> #include "eoPersistent.h"
//Implementation of these objects //Implementation of these objects

View file

@ -31,11 +31,11 @@
#include "apply.h" #include "apply.h"
# ifdef WITH_MPI # ifdef WITH_MPI
#include <mpi/eoMpi.h> #include "mpi/eoMpi.h"
#include <mpi/eoTerminateJob.h> #include "mpi/eoTerminateJob.h"
#include <mpi/eoMpiAssignmentAlgorithm.h> #include "mpi/eoMpiAssignmentAlgorithm.h"
#include <mpi/eoParallelApply.h> #include "mpi/eoParallelApply.h"
#include <utils/eoParallel.h> #include "utils/eoParallel.h"
#include <cmath> // ceil #include <cmath> // ceil
# endif // WITH_MPI # endif // WITH_MPI

View file

@ -7,7 +7,7 @@
// eoPrintable.cpp // eoPrintable.cpp
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#include <paradiseo/eo/eoPrintable.h> #include "eoPrintable.h"
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
//Implementation of these objects //Implementation of these objects

View file

@ -31,7 +31,7 @@
#pragma warning(disable:4786) #pragma warning(disable:4786)
#endif #endif
#include <paradiseo/eo/eoScalarFitnessAssembled.h> #include "eoScalarFitnessAssembled.h"
// need to allocate the static variables of class eoScalarFitnessAssembledTraits // need to allocate the static variables of class eoScalarFitnessAssembledTraits

View file

@ -27,7 +27,7 @@
#ifndef _eoCheckPoint_h #ifndef _eoCheckPoint_h
#define _eoCheckPoint_h #define _eoCheckPoint_h
#include "..eoContinue.h" #include "../eoContinue.h"
#include "eoUpdater.h" #include "eoUpdater.h"
#include "eoMonitor.h" #include "eoMonitor.h"
#include "eoStat.h" #include "eoStat.h"