Adapting headers of general inclusions to relative include

This commit is contained in:
Ronaldd Pinho 2019-06-29 19:45:05 -03:00
commit 6387aa48ab
4 changed files with 20 additions and 20 deletions

View file

@ -27,7 +27,7 @@
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#include <stdexcept> #include <stdexcept>
#include <EO.h> #include <paradiseo/eo/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

@ -26,10 +26,10 @@
#ifndef _apply_h #ifndef _apply_h
#define _apply_h #define _apply_h
#include <utils/eoParallel.h> #include "utils/eoParallel.h"
#include <utils/eoParser.h> #include "utils/eoParser.h"
#include <utils/eoLogger.h> #include "utils/eoLogger.h"
#include <eoFunctor.h> #include "eoFunctor.h"
#include <vector> #include <vector>
#ifdef _OPENMP #ifdef _OPENMP

View file

@ -36,28 +36,28 @@
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// the genotypes - from plain std::vector<double> to full correlated mutation // the genotypes - from plain std::vector<double> to full correlated mutation
#include <es/eoReal.h> #include "eoReal.h"
#include <es/eoEsSimple.h> #include "eoEsSimple.h"
#include <es/eoEsStdev.h> #include "eoEsStdev.h"
#include <es/eoEsFull.h> #include "eoEsFull.h"
// the initialization // the initialization
#include <es/eoEsChromInit.h> #include "eoEsChromInit.h"
// general operators // general operators
#include <es/eoRealOp.h> #include "eoRealOp.h"
#include <es/eoNormalMutation.h> #include "eoNormalMutation.h"
#include <es/eoRealAtomXover.h> // for generic operators #include "eoRealAtomXover.h" // for generic operators
// SBX crossover (following Deb) // SBX crossover (following Deb)
#include <es/eoSBXcross.h> #include "eoSBXcross.h"
// ES specific operators // ES specific operators
#include <es/eoEsGlobalXover.h> // Global ES Xover #include "eoEsGlobalXover.h" // Global ES Xover
#include <es/eoEsStandardXover.h> // 2-parents ES Xover #include "eoEsStandardXover.h" // 2-parents ES Xover
// the ES-mutations // the ES-mutations
#include <es/eoEsMutationInit.h> #include "eoEsMutationInit.h"
#include <es/eoEsMutate.h> #include "eoEsMutate.h"
#endif #endif

View file

@ -30,10 +30,10 @@
#define _ga_h #define _ga_h
// all bitstring-specific files // all bitstring-specific files
#include <ga/eoBit.h> #include "ga/eoBit.h"
// the operators // the operators
#include <ga/eoBitOp.h> #include "ga/eoBitOp.h"
// #include <ga/eoBitOpFactory.h> to be corrected - thanks someone! // #include <ga/eoBitOpFactory.h> to be corrected - thanks someone!