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 <EO.h>
#include <paradiseo/eo/EO.h>
//-----------------------------------------------------------------------------
/** 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
#define _apply_h
#include <utils/eoParallel.h>
#include <utils/eoParser.h>
#include <utils/eoLogger.h>
#include <eoFunctor.h>
#include "utils/eoParallel.h"
#include "utils/eoParser.h"
#include "utils/eoLogger.h"
#include "eoFunctor.h"
#include <vector>
#ifdef _OPENMP

View file

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

View file

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