Update includes on mo/neighborhood

This commit is contained in:
Ronaldd Pinho 2019-08-17 16:11:07 -03:00
commit 5ce19f52f5
17 changed files with 28 additions and 28 deletions

View file

@ -35,7 +35,7 @@
#ifndef _BackableNeighbor_h #ifndef _BackableNeighbor_h
#define _BackableNeighbor_h #define _BackableNeighbor_h
#include <neighborhood/moNeighbor.h> #include "moNeighbor.h"
/** /**
* Neighbor with a move back function to use in a moFullEvalByModif * Neighbor with a move back function to use in a moFullEvalByModif

View file

@ -30,7 +30,7 @@
#ifndef _moBackwardVectorVNSelection_h #ifndef _moBackwardVectorVNSelection_h
#define _moBackwardVectorVNSelection_h #define _moBackwardVectorVNSelection_h
#include <neighborhood/moVectorVNSelection.h> #include "moVectorVNSelection.h"
/** /**
* This class is used for the Variable Neighborhood Search explorer inherits from moVectorVNSelection * This class is used for the Variable Neighborhood Search explorer inherits from moVectorVNSelection

View file

@ -30,7 +30,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moDummyNeighbor_h #ifndef _moDummyNeighbor_h
#define _moDummyNeighbor_h #define _moDummyNeighbor_h
#include <neighborhood/moNeighbor.h> #include "moNeighbor.h"
/** /**
* Dummy Neighborhood * Dummy Neighborhood

View file

@ -30,8 +30,8 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moDummyNeighborhood_h #ifndef _moDummyNeighborhood_h
#define _moDummyNeighborhood_h #define _moDummyNeighborhood_h
#include <neighborhood/moDummyNeighbor.h> #include "moDummyNeighbor.h"
#include <neighborhood/moNeighborhood.h> #include "moNeighborhood.h"
/** /**
* Dummy Neighborhood * Dummy Neighborhood

View file

@ -35,8 +35,8 @@
#ifndef _moEvaluatedNeighborhood_h #ifndef _moEvaluatedNeighborhood_h
#define _moEvaluatedNeighborhood_h #define _moEvaluatedNeighborhood_h
#include <neighborhood/moNeighborhood.h> #include "moNeighborhood.h"
#include <eval/moNeighborhoodEvaluation.h> #include "../eval/moNeighborhoodEvaluation.h"
/** /**
* A Neighborhood for the evaluation of all neighbors * A Neighborhood for the evaluation of all neighbors

View file

@ -30,7 +30,7 @@
#ifndef _moForwardVectorVNSelection_h #ifndef _moForwardVectorVNSelection_h
#define _moForwardVectorVNSelection_h #define _moForwardVectorVNSelection_h
#include <neighborhood/moVectorVNSelection.h> #include "moVectorVNSelection.h"
/** /**
* This class is used for the Variable Neighborhood Search explorer inherits from moVectorVNSelection * This class is used for the Variable Neighborhood Search explorer inherits from moVectorVNSelection

View file

@ -35,7 +35,7 @@
#ifndef _IndexNeighbor_h #ifndef _IndexNeighbor_h
#define _IndexNeighbor_h #define _IndexNeighbor_h
#include <neighborhood/moNeighbor.h> #include "moNeighbor.h"
/** /**
* Index Neighbor * Index Neighbor

View file

@ -35,7 +35,7 @@
#ifndef _moIndexNeighborhood_h #ifndef _moIndexNeighborhood_h
#define _moIndexNeighborhood_h #define _moIndexNeighborhood_h
#include <neighborhood/moNeighborhood.h> #include "moNeighborhood.h"
/** /**
* A Indexed Neighborhood * A Indexed Neighborhood

View file

@ -36,9 +36,9 @@
#define _moNeighbor_h #define _moNeighbor_h
//EO inclusion //EO inclusion
#include <EO.h> #include <paradiseo/eo/EO.h>
#include <eoObject.h> #include <paradiseo/eo/eoObject.h>
#include <eoPersistent.h> #include <paradiseo/eo/eoPersistent.h>
/** /**
* Container of the neighbor informations * Container of the neighbor informations

View file

@ -35,7 +35,7 @@
#ifndef _moNeighborhood_h #ifndef _moNeighborhood_h
#define _moNeighborhood_h #define _moNeighborhood_h
#include <eoObject.h> #include <paradiseo/eo/eoObject.h>
/** /**
* A Neighborhood * A Neighborhood

View file

@ -35,7 +35,7 @@
#ifndef _moOrderNeighborhood_h #ifndef _moOrderNeighborhood_h
#define _moOrderNeighborhood_h #define _moOrderNeighborhood_h
#include <neighborhood/moIndexNeighborhood.h> #include "moIndexNeighborhood.h"
/** /**
* An ordered Neighborhood * An ordered Neighborhood

View file

@ -30,7 +30,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moRndNeighborhood_h #ifndef _moRndNeighborhood_h
#define _moRndNeighborhood_h #define _moRndNeighborhood_h
#include <neighborhood/moNeighborhood.h> #include "moNeighborhood.h"
/** /**
* Class used to specify a neighborhood is random * Class used to specify a neighborhood is random

View file

@ -30,10 +30,10 @@
#ifndef _moRndVectorVNSelection_h #ifndef _moRndVectorVNSelection_h
#define _moRndVectorVNSelection_h #define _moRndVectorVNSelection_h
#include <utils/eoRndGenerators.h> #include "../utils/eoRndGenerators.h"
#include <utils/rnd_generators.h> #include "../utils/rnd_generators.h"
#include <neighborhood/moVectorVNSelection.h> #include "moVectorVNSelection.h"
/** /**
* This class is used for the Variable Neighborhood Search explorer inherits from moVectorVNSelection * This class is used for the Variable Neighborhood Search explorer inherits from moVectorVNSelection

View file

@ -35,9 +35,9 @@
#ifndef _moRndWithReplNeighborhood_h #ifndef _moRndWithReplNeighborhood_h
#define _moRndWithReplNeighborhood_h #define _moRndWithReplNeighborhood_h
#include <neighborhood/moIndexNeighborhood.h> #include "moIndexNeighborhood.h"
#include <neighborhood/moRndNeighborhood.h> #include "moRndNeighborhood.h"
#include <utils/eoRNG.h> #include <paradiseo/eo/utils/eoRNG.h>
/** /**
* A Random With replacement Neighborhood * A Random With replacement Neighborhood

View file

@ -35,9 +35,9 @@
#ifndef _moRndWithoutReplNeighborhood_h #ifndef _moRndWithoutReplNeighborhood_h
#define _moRndWithoutReplNeighborhood_h #define _moRndWithoutReplNeighborhood_h
#include <neighborhood/moIndexNeighborhood.h> #include "moIndexNeighborhood.h"
#include <neighborhood/moRndNeighborhood.h> #include "moRndNeighborhood.h"
#include <utils/eoRNG.h> #include <paradiseo/eo/utils/eoRNG.h>
/** /**
* A Random without replacement Neighborhood * A Random without replacement Neighborhood

View file

@ -30,7 +30,7 @@
#ifndef _moVariableNeighborhoodSelection_h #ifndef _moVariableNeighborhoodSelection_h
#define _moVariableNeighborhoodSelection_h #define _moVariableNeighborhoodSelection_h
#include <eoOp.h> #include <paradiseo/eo/eoOp.h>
#include <vector> #include <vector>
/** /**

View file

@ -30,8 +30,8 @@
#ifndef _moVectorVNSelection_h #ifndef _moVectorVNSelection_h
#define _moVectorVNSelection_h #define _moVectorVNSelection_h
#include <neighborhood/moVariableNeighborhoodSelection.h> #include "moVariableNeighborhoodSelection.h"
#include <eoOp.h> #include <paradiseo/eo/eoOp.h>
/** /**
* This class is used for the Variable Neighborhood Search explorer inherits from moVariableNeighborhoodSelection * This class is used for the Variable Neighborhood Search explorer inherits from moVariableNeighborhoodSelection