Merge branch 'mo-module-includes'

This commit is contained in:
Ronaldd Pinho 2019-08-17 16:14:00 -03:00
commit 44b04879fc
95 changed files with 255 additions and 254 deletions

View file

@ -30,8 +30,8 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moAcceptanceCriterion_h #ifndef _moAcceptanceCriterion_h
#define _moAcceptanceCriterion_h #define _moAcceptanceCriterion_h
#include <eoFunctor.h> #include "../../eo/eoFunctor.h"
#include <memory/moMemory.h> #include "../memory/moMemory.h"
/** /**
* Abstract class for Acceptance criteria * Abstract class for Acceptance criteria

View file

@ -30,8 +30,8 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moAlwaysAcceptCrit_h #ifndef _moAlwaysAcceptCrit_h
#define _moAlwaysAcceptCrit_h #define _moAlwaysAcceptCrit_h
#include <acceptCrit/moAcceptanceCriterion.h> #include "moAcceptanceCriterion.h"
#include <memory/moDummyMemory.h> #include "../memory/moDummyMemory.h"
/** /**
* Acceptance Criterion for extreme diversification : always accept new solution * Acceptance Criterion for extreme diversification : always accept new solution

View file

@ -30,9 +30,9 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moBetterAcceptCrit_h #ifndef _moBetterAcceptCrit_h
#define _moBetterAcceptCrit_h #define _moBetterAcceptCrit_h
#include <acceptCrit/moAcceptanceCriterion.h> #include "moAcceptanceCriterion.h"
#include <memory/moDummyMemory.h> #include "../memory/moDummyMemory.h"
#include <comparator/moSolComparator.h> #include "../comparator/moSolComparator.h"
/** /**
* Acceptance Criterion for extreme intensification : accept if the new solution is better than previous one * Acceptance Criterion for extreme intensification : accept if the new solution is better than previous one

View file

@ -35,7 +35,7 @@
#ifndef _moDummyMonOp_h #ifndef _moDummyMonOp_h
#define _moDummyMonOp_h #define _moDummyMonOp_h
#include <eoOp.h> #include "../../eo/eoOp.h"
/** /**
* The mutation operator that does nothing at all ! * The mutation operator that does nothing at all !

View file

@ -30,9 +30,9 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moDummyLS_h #ifndef _moDummyLS_h
#define _moDummyLS_h #define _moDummyLS_h
#include <algo/moLocalSearch.h> #include "moLocalSearch.h"
#include <explorer/moDummyExplorer.h> #include "../explorer/moDummyExplorer.h"
#include <continuator/moTrueContinuator.h> #include "../continuator/moTrueContinuator.h"
/** /**
* Dummy Local Search: * Dummy Local Search:

View file

@ -30,11 +30,11 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moFirstImprHC_h #ifndef _moFirstImprHC_h
#define _moFirstImprHC_h #define _moFirstImprHC_h
#include <algo/moLocalSearch.h> #include "moLocalSearch.h"
#include <explorer/moFirstImprHCexplorer.h> #include "../explorer/moFirstImprHCexplorer.h"
#include <continuator/moTrueContinuator.h> #include "../continuator/moTrueContinuator.h"
#include <eval/moEval.h> #include "../eval/moEval.h"
#include <eoEvalFunc.h> #include <paradiseo/eo/eoEvalFunc.h>
/** /**
* First improvement HC: * First improvement HC:

View file

@ -30,16 +30,16 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moILS_h #ifndef _moILS_h
#define _moILS_h #define _moILS_h
#include <algo/moLocalSearch.h> #include "moLocalSearch.h"
#include <explorer/moILSexplorer.h> #include "../explorer/moILSexplorer.h"
#include <continuator/moIterContinuator.h> #include "../continuator/moIterContinuator.h"
#include <eoOp.h> #include <paradiseo/eo/eoOp.h>
#include <neighborhood/moDummyNeighbor.h> #include "../neighborhood/moDummyNeighbor.h"
#include <perturb/moMonOpPerturb.h> #include "../perturb/moMonOpPerturb.h"
#include <perturb/moPerturbation.h> #include "../perturb/moPerturbation.h"
#include <acceptCrit/moAlwaysAcceptCrit.h> #include "../acceptCrit/moAlwaysAcceptCrit.h"
#include <eval/moEval.h> #include "../eval/moEval.h"
#include <eoEvalFunc.h> #include <paradiseo/eo/eoEvalFunc.h>
/** /**

View file

@ -35,11 +35,11 @@
#ifndef _moLocalSearch_h #ifndef _moLocalSearch_h
#define _moLocalSearch_h #define _moLocalSearch_h
#include <explorer/moNeighborhoodExplorer.h> #include "../explorer/moNeighborhoodExplorer.h"
#include <continuator/moContinuator.h> #include "../continuator/moContinuator.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
#include <eoEvalFunc.h> #include "../../eo/eoEvalFunc.h"
#include <eoOp.h> #include "../../eo/eoOp.h"
/** /**
* the main algorithm of the local search * the main algorithm of the local search

View file

@ -30,11 +30,11 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moMetropolisHasting_h #ifndef _moMetropolisHasting_h
#define _moMetropolisHasting_h #define _moMetropolisHasting_h
#include <algo/moLocalSearch.h> #include "moLocalSearch.h"
#include <explorer/moMetropolisHastingExplorer.h> #include "../explorer/moMetropolisHastingExplorer.h"
#include <continuator/moTrueContinuator.h> #include "../continuator/moTrueContinuator.h"
#include <eval/moEval.h> #include "../eval/moEval.h"
#include <eoEvalFunc.h> #include "../../eo/eoEvalFunc.h"
/** /**
* Metropolis-Hasting local search * Metropolis-Hasting local search

View file

@ -30,11 +30,11 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moNeutralHC_h #ifndef _moNeutralHC_h
#define _moNeutralHC_h #define _moNeutralHC_h
#include <algo/moLocalSearch.h> #include "moLocalSearch.h"
#include <explorer/moNeutralHCexplorer.h> #include "../explorer/moNeutralHCexplorer.h"
#include <continuator/moTrueContinuator.h> #include "../continuator/moTrueContinuator.h"
#include <eval/moEval.h> #include "../eval/moEval.h"
#include <eoEvalFunc.h> #include <paradiseo/eo/eoEvalFunc.h>
/** /**
* Hill-Climbing local search * Hill-Climbing local search

View file

@ -30,11 +30,11 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moRandomBestHC_h #ifndef _moRandomBestHC_h
#define _moRandomBestHC_h #define _moRandomBestHC_h
#include <algo/moLocalSearch.h> #include "moLocalSearch.h"
#include <explorer/moRandomBestHCexplorer.h> #include "../explorer/moRandomBestHCexplorer.h"
#include <continuator/moTrueContinuator.h> #include "../continuator/moTrueContinuator.h"
#include <eval/moEval.h> #include "../eval/moEval.h"
#include <eoEvalFunc.h> #include <paradiseo/eo/eoEvalFunc.h>
/** /**
* Random Best HC: * Random Best HC:

View file

@ -30,11 +30,11 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moRandomNeutralWalk_h #ifndef _moRandomNeutralWalk_h
#define _moRandomNeutralWalk_h #define _moRandomNeutralWalk_h
#include <algo/moLocalSearch.h> #include "moLocalSearch.h"
#include <explorer/moRandomNeutralWalkExplorer.h> #include "../explorer/moRandomNeutralWalkExplorer.h"
#include <continuator/moTrueContinuator.h> #include "../continuator/moTrueContinuator.h"
#include <eval/moEval.h> #include "../eval/moEval.h"
#include <eoEvalFunc.h> #include <paradiseo/eo/eoEvalFunc.h>
/** /**
* Random Neutral Walk: * Random Neutral Walk:

View file

@ -30,11 +30,11 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moRandomSearch_h #ifndef _moRandomSearch_h
#define _moRandomSearch_h #define _moRandomSearch_h
#include <algo/moLocalSearch.h> #include "moLocalSearch.h"
#include <explorer/moRandomSearchExplorer.h> #include "../explorer/moRandomSearchExplorer.h"
#include <continuator/moTrueContinuator.h> #include "../continuator/moTrueContinuator.h"
#include <eoInit.h> #include <paradiseo/eo/eoInit.h>
#include <eoEvalFunc.h> #include <paradiseo/eo/eoEvalFunc.h>
/** /**
* Random Search: * Random Search:

View file

@ -30,11 +30,11 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moRandomWalk_h #ifndef _moRandomWalk_h
#define _moRandomWalk_h #define _moRandomWalk_h
#include <algo/moLocalSearch.h> #include "moLocalSearch.h"
#include <explorer/moRandomWalkExplorer.h> #include "../explorer/moRandomWalkExplorer.h"
#include <continuator/moIterContinuator.h> #include "../continuator/moIterContinuator.h"
#include <eval/moEval.h> #include "../eval/moEval.h"
#include <eoEvalFunc.h> #include <paradiseo/eo/eoEvalFunc.h>
/** /**
* Random Walk: * Random Walk:

View file

@ -30,13 +30,13 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moSA_h #ifndef _moSA_h
#define _moSA_h #define _moSA_h
#include <algo/moLocalSearch.h> #include "moLocalSearch.h"
#include <explorer/moSAexplorer.h> #include "../explorer/moSAexplorer.h"
#include <coolingSchedule/moCoolingSchedule.h> #include "../coolingSchedule/moCoolingSchedule.h"
#include <coolingSchedule/moSimpleCoolingSchedule.h> #include "../coolingSchedule/moSimpleCoolingSchedule.h"
#include <continuator/moTrueContinuator.h> #include "../continuator/moTrueContinuator.h"
#include <eval/moEval.h> #include "../eval/moEval.h"
#include <eoEvalFunc.h> #include <paradiseo/eo/eoEvalFunc.h>
/** /**
* Simulated Annealing * Simulated Annealing

View file

@ -30,11 +30,11 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moSimpleHC_h #ifndef _moSimpleHC_h
#define _moSimpleHC_h #define _moSimpleHC_h
#include <algo/moLocalSearch.h> #include "moLocalSearch.h"
#include <explorer/moSimpleHCexplorer.h> #include "../explorer/moSimpleHCexplorer.h"
#include <continuator/moTrueContinuator.h> #include "../continuator/moTrueContinuator.h"
#include <eval/moEval.h> #include "../eval/moEval.h"
#include <eoEvalFunc.h> #include <paradiseo/eo/eoEvalFunc.h>
/** /**
* Simple HC: * Simple HC:

View file

@ -30,18 +30,18 @@
#ifndef _moTS_h #ifndef _moTS_h
#define _moTS_h #define _moTS_h
#include <algo/moLocalSearch.h> #include "moLocalSearch.h"
#include <explorer/moTSexplorer.h> #include "../explorer/moTSexplorer.h"
#include <memory/moNeighborVectorTabuList.h> #include "../memory/moNeighborVectorTabuList.h"
#include <memory/moIntensification.h> #include "../memory/moIntensification.h"
#include <memory/moDummyIntensification.h> #include "../memory/moDummyIntensification.h"
#include <memory/moDiversification.h> #include "../memory/moDiversification.h"
#include <memory/moDummyDiversification.h> #include "../memory/moDummyDiversification.h"
#include <memory/moAspiration.h> #include "../memory/moAspiration.h"
#include <memory/moBestImprAspiration.h> #include "../memory/moBestImprAspiration.h"
#include <continuator/moTimeContinuator.h> #include "../continuator/moTimeContinuator.h"
#include <eval/moEval.h> #include "../eval/moEval.h"
#include <eoEvalFunc.h> #include <paradiseo/eo/eoEvalFunc.h>
/** /**
* Tabu Search * Tabu Search

View file

@ -30,14 +30,14 @@
#ifndef _moVNS_h #ifndef _moVNS_h
#define _moVNS_h #define _moVNS_h
#include <algo/moLocalSearch.h> #include "moLocalSearch.h"
#include <eoOp.h> #include <paeadiseo/eo/eoOp.h>
#include <comparator/moSolComparator.h> #include "../comparator/moSolComparator.h"
#include <continuator/moContinuator.h> #include "../continuator/moContinuator.h"
#include <explorer/moVNSexplorer.h> #include "../explorer/moVNSexplorer.h"
#include <neighborhood/moVariableNeighborhoodSelection.h> #include "../neighborhood/moVariableNeighborhoodSelection.h"
#include <acceptCrit/moAcceptanceCriterion.h> #include "../acceptCrit/moAcceptanceCriterion.h"
/** /**

View file

@ -35,8 +35,8 @@
#ifndef _moComparator_h #ifndef _moComparator_h
#define _moComparator_h #define _moComparator_h
#include <EO.h> #include <paradiseo/eo/EO.h>
#include <eoFunctor.h> #include <paradiseo/eo/eoFunctor.h>
/** /**

View file

@ -35,8 +35,8 @@
#ifndef _moEqualNeighborComparator_h #ifndef _moEqualNeighborComparator_h
#define _moEqualNeighborComparator_h #define _moEqualNeighborComparator_h
#include <neighborhood/moNeighbor.h> #include "../neighborhood/moNeighbor.h"
#include <comparator/moNeighborComparator.h> #include "moNeighborComparator.h"
/** /**
* Comparator of two neighbors : a neighbor is better if the fitness is higher or equal * Comparator of two neighbors : a neighbor is better if the fitness is higher or equal

View file

@ -35,7 +35,7 @@
#ifndef _moEqualSolComparator_h #ifndef _moEqualSolComparator_h
#define _moEqualSolComparator_h #define _moEqualSolComparator_h
#include <comparator/moSolComparator.h> #include "moSolComparator.h"
/** /**
* Comparator of two solutions : a neighbor is better if the fitness is higher or equal * Comparator of two solutions : a neighbor is better if the fitness is higher or equal

View file

@ -35,11 +35,11 @@
#ifndef _moEqualSolNeighborComparator_h #ifndef _moEqualSolNeighborComparator_h
#define _moEqualSolNeighborComparator_h #define _moEqualSolNeighborComparator_h
#include <EO.h> #include <paradiseo/eo/EO.h>
#include <eoFunctor.h> #include <paradiseo/eo/eoFunctor.h>
#include <neighborhood/moNeighbor.h> #include "../neighborhood/moNeighbor.h"
#include <comparator/moSolNeighborComparator.h> #include "../comparator/moSolNeighborComparator.h"
/** /**

View file

@ -35,8 +35,8 @@
#ifndef _moNeighborComparator_h #ifndef _moNeighborComparator_h
#define _moNeighborComparator_h #define _moNeighborComparator_h
#include <neighborhood/moNeighbor.h> #include "../neighborhood/moNeighbor.h"
#include <comparator/moComparator.h> #include "moComparator.h"
/** /**
* Comparator of two neighbors * Comparator of two neighbors

View file

@ -30,7 +30,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moSolComparator_h #ifndef _moSolComparator_h
#define _moSolComparator_h #define _moSolComparator_h
#include <comparator/moComparator.h> #include "moComparator.h"
/** /**
* Comparator of two solutions * Comparator of two solutions

View file

@ -35,11 +35,11 @@
#ifndef _moSolNeighborComparator_h #ifndef _moSolNeighborComparator_h
#define _moSolNeighborComparator_h #define _moSolNeighborComparator_h
#include <EO.h> #include <paradiseo/eo/EO.h>
#include <eoFunctor.h> #include <paradiseo/eo/eoFunctor.h>
#include <neighborhood/moNeighbor.h> #include "../neighborhood/moNeighbor.h"
#include <comparator/moComparator.h> #include "moComparator.h"
/** /**

View file

@ -35,8 +35,8 @@
#ifndef moAverageFitnessNeighborStat_h #ifndef moAverageFitnessNeighborStat_h
#define moAverageFitnessNeighborStat_h #define moAverageFitnessNeighborStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <continuator/moNeighborhoodStat.h> #include "moNeighborhoodStat.h"
/** /**
* From moNeighborhoodStat, to compute the average of fitness in the neighborhood * From moNeighborhoodStat, to compute the average of fitness in the neighborhood

View file

@ -35,7 +35,7 @@
#ifndef moBestFitnessStat_h #ifndef moBestFitnessStat_h
#define moBestFitnessStat_h #define moBestFitnessStat_h
#include <continuator/moStat.h> #include "moStat.h"
/** /**
* The statistic which save the best solution found during the search * The statistic which save the best solution found during the search

View file

@ -30,9 +30,9 @@
#ifndef _moBestNoImproveContinuator_h #ifndef _moBestNoImproveContinuator_h
#define _moBestNoImproveContinuator_h #define _moBestNoImproveContinuator_h
#include <continuator/moContinuator.h> #include "moContinuator.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
#include <comparator/moSolComparator.h> #include "../comparator/moSolComparator.h"
/** /**
* Stop when the best solution cannot be improved * Stop when the best solution cannot be improved

View file

@ -35,7 +35,7 @@
#ifndef moBestSoFarStat_h #ifndef moBestSoFarStat_h
#define moBestSoFarStat_h #define moBestSoFarStat_h
#include <continuator/moStat.h> #include "moStat.h"
/** /**
* The statistic which save the best solution found during the search * The statistic which save the best solution found during the search

View file

@ -35,7 +35,7 @@
#ifndef moBooleanStat_h #ifndef moBooleanStat_h
#define moBooleanStat_h #define moBooleanStat_h
#include <continuator/moStat.h> #include "moStat.h"
/** /**
* The statistic gives from a boolean variable * The statistic gives from a boolean variable

View file

@ -35,12 +35,12 @@
#ifndef moCheckpoint_h #ifndef moCheckpoint_h
#define moCheckpoint_h #define moCheckpoint_h
#include <continuator/moContinuator.h> #include "moContinuator.h"
#include <utils/eoMonitor.h> #include <paradiseo/eo/utils/eoMonitor.h>
#include <continuator/moStatBase.h> #include "moStatBase.h"
#include <utils/eoUpdater.h> #include <paradiseo/eo/utils/eoUpdater.h>
#include <continuator/moUpdater.h> #include "moUpdater.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
/** /**
* Continuator allowing to add others (continuators, stats, monitors or updaters) * Continuator allowing to add others (continuators, stats, monitors or updaters)

View file

@ -30,8 +30,8 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moCombinedContinuator_h #ifndef _moCombinedContinuator_h
#define _moCombinedContinuator_h #define _moCombinedContinuator_h
#include <continuator/moContinuator.h> #include "moContinuator.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
#include <vector> #include <vector>
/** /**

View file

@ -35,8 +35,8 @@
#ifndef _moContinuator_h #ifndef _moContinuator_h
#define _moContinuator_h #define _moContinuator_h
#include <eoFunctor.h> #include <paradiseo/eo/eoFunctor.h>
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
/** /**
* To make specific continuator from a solution * To make specific continuator from a solution

View file

@ -35,8 +35,8 @@
#ifndef moCounterMonitorSaver_h #ifndef moCounterMonitorSaver_h
#define moCounterMonitorSaver_h #define moCounterMonitorSaver_h
#include <utils/eoUpdater.h> #include <paradiseo/eo/utils/eoUpdater.h>
#include <utils/eoMonitor.h> #include <paradiseo/eo/utils/eoMonitor.h>
/** /**
* Class calling monitors with a given frequency * Class calling monitors with a given frequency

View file

@ -35,7 +35,7 @@
#ifndef moCounterStat_h #ifndef moCounterStat_h
#define moCounterStat_h #define moCounterStat_h
#include <continuator/moStat.h> #include "moStat.h"
/** /**
* The statistic gives the number of iteration * The statistic gives the number of iteration

View file

@ -35,8 +35,8 @@
#ifndef moDistanceStat_h #ifndef moDistanceStat_h
#define moDistanceStat_h #define moDistanceStat_h
#include <utils/eoDistance.h> #include <paradiseo/eo/utils/eoDistance.h>
#include <continuator/moStat.h> #include "moStat.h"
/** /**
* The statistic gives the distance to a reference solution * The statistic gives the distance to a reference solution

View file

@ -30,10 +30,10 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moEvalsContinuator_h #ifndef _moEvalsContinuator_h
#define _moEvalsContinuator_h #define _moEvalsContinuator_h
#include <continuator/moContinuator.h> #include "moContinuator.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
#include <eoEvalFuncCounter.h> #include <paradiseo/eo/eoEvalFuncCounter.h>
#include <eval/moEvalCounter.h> #include "../eval/moEvalCounter.h"
/** /**
* Continue until a maximum fixed number of full evaluation and neighbor evaluation is reached (total number of evaluation = full evaluation + incremental evaluation) * Continue until a maximum fixed number of full evaluation and neighbor evaluation is reached (total number of evaluation = full evaluation + incremental evaluation)

View file

@ -30,8 +30,8 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moFitContinuator_h #ifndef _moFitContinuator_h
#define _moFitContinuator_h #define _moFitContinuator_h
#include <continuator/moContinuator.h> #include "moContinuator.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
/** /**
* Continue until a maximum fitness is reached * Continue until a maximum fitness is reached

View file

@ -35,7 +35,7 @@
#ifndef moFitnessStat_h #ifndef moFitnessStat_h
#define moFitnessStat_h #define moFitnessStat_h
#include <continuator/moStat.h> #include "moStat.h"
/** /**
* Stat given the fitness of the current solution * Stat given the fitness of the current solution

View file

@ -30,9 +30,9 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moFullEvalContinuator_h #ifndef _moFullEvalContinuator_h
#define _moFullEvalContinuator_h #define _moFullEvalContinuator_h
#include <continuator/moContinuator.h> #include "moContinuator.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
#include <eoEvalFuncCounter.h> #include <paradiseo/eo/eoEvalFuncCounter.h>
/** /**
* Continue until a maximum fixed number of full evaluation is reached * Continue until a maximum fixed number of full evaluation is reached

View file

@ -30,8 +30,8 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moIterContinuator_h #ifndef _moIterContinuator_h
#define _moIterContinuator_h #define _moIterContinuator_h
#include <continuator/moContinuator.h> #include "moContinuator.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
/** /**
* Continue until a maximum fixed number of iterations is reached * Continue until a maximum fixed number of iterations is reached

View file

@ -35,9 +35,9 @@
#ifndef moMaxNeighborStat_h #ifndef moMaxNeighborStat_h
#define moMaxNeighborStat_h #define moMaxNeighborStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <continuator/moNeighborhoodStat.h> #include "moNeighborhoodStat.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
/** /**
* From moNeighborhoodStat, to compute the max fitness in the neighborhood * From moNeighborhoodStat, to compute the max fitness in the neighborhood

View file

@ -35,9 +35,9 @@
#ifndef moMedianNeighborStat_h #ifndef moMedianNeighborStat_h
#define moMedianNeighborStat_h #define moMedianNeighborStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <continuator/moNeighborhoodStat.h> #include "moNeighborhoodStat.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
/** /**
* From moNeighborhoodStat, * From moNeighborhoodStat,

View file

@ -35,9 +35,9 @@
#ifndef moMinNeighborStat_h #ifndef moMinNeighborStat_h
#define moMinNeighborStat_h #define moMinNeighborStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <continuator/moNeighborhoodStat.h> #include "moNeighborhoodStat.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
/** /**
* From moNeighborhoodStat, to compute the min fitness in the neighborhood * From moNeighborhoodStat, to compute the min fitness in the neighborhood

View file

@ -35,7 +35,7 @@
#ifndef moMinusOneCounterStat_h #ifndef moMinusOneCounterStat_h
#define moMinusOneCounterStat_h #define moMinusOneCounterStat_h
#include <continuator/moStat.h> #include "moStat.h"
/** /**
* The statistic gives the number of iteration minus 1 * The statistic gives the number of iteration minus 1

View file

@ -35,9 +35,9 @@
#ifndef moNbInfNeighborStat_h #ifndef moNbInfNeighborStat_h
#define moNbInfNeighborStat_h #define moNbInfNeighborStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <continuator/moNeighborhoodStat.h> #include "moNeighborhoodStat.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
/** /**
* From moNeighborhoodStat, to compute the number of solutions in the neighborhood * From moNeighborhoodStat, to compute the number of solutions in the neighborhood

View file

@ -35,9 +35,9 @@
#ifndef moNbSupNeighborStat_h #ifndef moNbSupNeighborStat_h
#define moNbSupNeighborStat_h #define moNbSupNeighborStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <continuator/moNeighborhoodStat.h> #include "moNeighborhoodStat.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
/** /**
* From moNeighborhoodStat, to compute the number of solutions in the neighborhood * From moNeighborhoodStat, to compute the number of solutions in the neighborhood

View file

@ -35,12 +35,12 @@
#ifndef moNeighborBestStat_h #ifndef moNeighborBestStat_h
#define moNeighborBestStat_h #define moNeighborBestStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <explorer/moNeighborhoodExplorer.h> #include "../explorer/moNeighborhoodExplorer.h"
#include <comparator/moNeighborComparator.h> #include "../comparator/moNeighborComparator.h"
#include <comparator/moSolNeighborComparator.h> #include "../comparator/moSolNeighborComparator.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
/** /**
* Compute the fitness of the best solution among k neighbor or all neighbors * Compute the fitness of the best solution among k neighbor or all neighbors

View file

@ -30,9 +30,9 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moNeighborEvalContinuator_h #ifndef _moNeighborEvalContinuator_h
#define _moNeighborEvalContinuator_h #define _moNeighborEvalContinuator_h
#include <continuator/moContinuator.h> #include "moContinuator.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
#include <eval/moEvalCounter.h> #include "../eval/moEvalCounter.h"
/** /**
* Continue until a maximum fixed number of neighbor evaluation is reached * Continue until a maximum fixed number of neighbor evaluation is reached

View file

@ -35,9 +35,9 @@
#ifndef moNeighborFitnessStat_h #ifndef moNeighborFitnessStat_h
#define moNeighborFitnessStat_h #define moNeighborFitnessStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
#include <eval/moEval.h> #include "../eval/moEval.h"
/** /**
* Compute the fitness of one random neighbor * Compute the fitness of one random neighbor

View file

@ -35,12 +35,13 @@
#ifndef moNeighborhoodStat_h #ifndef moNeighborhoodStat_h
#define moNeighborhoodStat_h #define moNeighborhoodStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include "../explorer/moNeighborhoodExplorer.h"
#include "../comparator/moNeighborComparator.h"
#include "../comparator/moSolNeighborComparator.h"
#include "../neighborhood/moNeighborhood.h"
#include <explorer/moNeighborhoodExplorer.h>
#include <comparator/moNeighborComparator.h>
#include <comparator/moSolNeighborComparator.h>
#include <neighborhood/moNeighborhood.h>
#include <vector> #include <vector>
#include <algorithm> // std::sort #include <algorithm> // std::sort

View file

@ -35,8 +35,8 @@
#ifndef moNeutralDegreeNeighborStat_h #ifndef moNeutralDegreeNeighborStat_h
#define moNeutralDegreeNeighborStat_h #define moNeutralDegreeNeighborStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <continuator/moNeighborhoodStat.h> #include "moNeighborhoodStat.h"
/** /**
* From moNeighborhoodStat, to compute the neutral degree of the solution * From moNeighborhoodStat, to compute the neutral degree of the solution

View file

@ -35,9 +35,9 @@
#ifndef moQ1NeighborStat_h #ifndef moQ1NeighborStat_h
#define moQ1NeighborStat_h #define moQ1NeighborStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <continuator/moNeighborhoodStat.h> #include "moNeighborhoodStat.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
/** /**
* From moNeighborhoodStat, * From moNeighborhoodStat,

View file

@ -35,9 +35,9 @@
#ifndef moQ3NeighborStat_h #ifndef moQ3NeighborStat_h
#define moQ3NeighborStat_h #define moQ3NeighborStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <continuator/moNeighborhoodStat.h> #include "moNeighborhoodStat.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
/** /**
* From moNeighborhoodStat, * From moNeighborhoodStat,

View file

@ -35,8 +35,8 @@
#ifndef moQuartilesNeighborStat_h #ifndef moQuartilesNeighborStat_h
#define moQuartilesNeighborStat_h #define moQuartilesNeighborStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <continuator/moNeighborhoodStat.h> #include "moNeighborhoodStat.h"
/** /**
* From moNeighborhoodStat, * From moNeighborhoodStat,

View file

@ -35,8 +35,8 @@
#ifndef moSecondMomentNeighborStat_h #ifndef moSecondMomentNeighborStat_h
#define moSecondMomentNeighborStat_h #define moSecondMomentNeighborStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <continuator/moNeighborhoodStat.h> #include "moNeighborhoodStat.h"
/** /**
* From moNeighborhoodStat, to compute the average and the standard deviation of fitness in the neighborhood * From moNeighborhoodStat, to compute the average and the standard deviation of fitness in the neighborhood

View file

@ -35,8 +35,8 @@
#ifndef moSizeNeighborStat_h #ifndef moSizeNeighborStat_h
#define moSizeNeighborStat_h #define moSizeNeighborStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <continuator/moNeighborhoodStat.h> #include "moNeighborhoodStat.h"
/** /**
* From moNeighborhoodStat, to compute the number of solutions in the neighborhood * From moNeighborhoodStat, to compute the number of solutions in the neighborhood

View file

@ -35,7 +35,7 @@
#ifndef moSolutionStat_h #ifndef moSolutionStat_h
#define moSolutionStat_h #define moSolutionStat_h
#include <continuator/moStat.h> #include "moStat.h"
/** /**
* The statistic which only give the current solution. * The statistic which only give the current solution.

View file

@ -35,7 +35,7 @@
#ifndef moStat_h #ifndef moStat_h
#define moStat_h #define moStat_h
#include <continuator/moStatBase.h> #include "moStatBase.h"
/** /**
* The actual class that will be used as base for all statistics * The actual class that will be used as base for all statistics

View file

@ -35,8 +35,8 @@
#ifndef moStatBase_h #ifndef moStatBase_h
#define moStatBase_h #define moStatBase_h
#include <eoFunctor.h> #include <paradiseo/eo/eoFunctor.h>
#include <utils/eoParam.h> #include <paradiseo/eo/utils/eoParam.h>
/** /**
* Base class for all statistics that need to be calculated * Base class for all statistics that need to be calculated

View file

@ -35,7 +35,7 @@
#ifndef moStatFromStat_h #ifndef moStatFromStat_h
#define moStatFromStat_h #define moStatFromStat_h
#include <continuator/moStat.h> #include "moStat.h"
/** /**
* The statistic which copy another statistic * The statistic which copy another statistic

View file

@ -35,8 +35,8 @@
#ifndef moStdFitnessNeighborStat_h #ifndef moStdFitnessNeighborStat_h
#define moStdFitnessNeighborStat_h #define moStdFitnessNeighborStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <continuator/moNeighborhoodStat.h> #include "moNeighborhoodStat.h"
/** /**
* From moNeighborhoodStat, to compute the average and the standard deviation of fitness in the neighborhood * From moNeighborhoodStat, to compute the average and the standard deviation of fitness in the neighborhood

View file

@ -32,7 +32,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#include <ctime> #include <ctime>
#include <continuator/moContinuator.h> #include "moContinuator.h"
/** /**
* Termination condition until a running time is reached. * Termination condition until a running time is reached.

View file

@ -35,7 +35,7 @@
#ifndef _moTrueContinuator_h #ifndef _moTrueContinuator_h
#define _moTrueContinuator_h #define _moTrueContinuator_h
#include <continuator/moContinuator.h> #include "moContinuator.h"
/** /**
* Continuator always return True * Continuator always return True

View file

@ -35,7 +35,7 @@
#ifndef moUnsignedStat_h #ifndef moUnsignedStat_h
#define moUnsignedStat_h #define moUnsignedStat_h
#include <continuator/moStat.h> #include "moStat.h"
/** /**
* The statistic gives from a boolean variable * The statistic gives from a boolean variable

View file

@ -35,8 +35,8 @@
#ifndef moUpdater_h #ifndef moUpdater_h
#define moUpdater_h #define moUpdater_h
#include <eoFunctor.h> #include <paradiseo/eo/eoFunctor.h>
#include <utils/eoParam.h> #include <paradiseo/eo/utils/eoParam.h>
/** /**
* Base class for to update what ever you want * Base class for to update what ever you want

View file

@ -30,9 +30,9 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moValueParamContinuator_h #ifndef _moValueParamContinuator_h
#define _moValueParamContinuator_h #define _moValueParamContinuator_h
#include <continuator/moContinuator.h> #include "moContinuator.h"
//#include <neighborhood/moNeighborhood.h> //#include <neighborhood/moNeighborhood.h>
#include <utils/eoParam.h> #include <paradiseo/eo/utils/eoParam.h>
/** /**
* Continue until a maximum fixed number of full evaluation is reached * Continue until a maximum fixed number of full evaluation is reached

View file

@ -35,8 +35,8 @@
#ifndef moValueStat_h #ifndef moValueStat_h
#define moValueStat_h #define moValueStat_h
#include <continuator/moStat.h> #include "moStat.h"
#include <utils/eoParam.h> #include <paradiseo/eo/utils/eoParam.h>
/** /**
* The statistic gives the number of iteration * The statistic gives the number of iteration

View file

@ -36,8 +36,8 @@
#define moVectorMonitor_h #define moVectorMonitor_h
#include <fstream> #include <fstream>
#include <utils/eoMonitor.h> #include <paradiseo/eo/utils/eoMonitor.h>
#include <utils/eoParam.h> #include <paradiseo/eo/utils/eoParam.h>
/** /**
* To save the values of the same type (double, unsigned int, or EOT) in a vector * To save the values of the same type (double, unsigned int, or EOT) in a vector

View file

@ -35,7 +35,7 @@
#ifndef _moCoolingSchedule_h #ifndef _moCoolingSchedule_h
#define _moCoolingSchedule_h #define _moCoolingSchedule_h
#include <eoFunctor.h> #include <paradiseo/eo/eoFunctor.h>
/** /**
* Cooling Schedule of the temperature in the simulated algorithm * Cooling Schedule of the temperature in the simulated algorithm

View file

@ -35,7 +35,7 @@
#ifndef _moDynSpanCoolingSchedule_h #ifndef _moDynSpanCoolingSchedule_h
#define _moDynSpanCoolingSchedule_h #define _moDynSpanCoolingSchedule_h
#include <coolingSchedule/moCoolingSchedule.h> #include "moCoolingSchedule.h"
/** /**
* Cooling Schedule of the temperature in the simulated algorithm * Cooling Schedule of the temperature in the simulated algorithm

View file

@ -35,7 +35,7 @@
#ifndef _moSimpleCoolingSchedule_h #ifndef _moSimpleCoolingSchedule_h
#define _moSimpleCoolingSchedule_h #define _moSimpleCoolingSchedule_h
#include <coolingSchedule/moCoolingSchedule.h> #include "moCoolingSchedule.h"
/** /**
* Classical cooling Schedule of the temperature in the simulated algorithm with initial and final temperature and a factor of decrease * Classical cooling Schedule of the temperature in the simulated algorithm with initial and final temperature and a factor of decrease

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

View file

@ -30,8 +30,8 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moLocalSearchInit_h #ifndef _moLocalSearchInit_h
#define _moLocalSearchInit_h #define _moLocalSearchInit_h
#include <eoInit.h> #include "../../eo/eoInit.h"
#include <algo/moLocalSearch.h> #include "../algo/moLocalSearch.h"
/** /**
* Initialization of the solution with a local search * Initialization of the solution with a local search

View file

@ -30,10 +30,10 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moMonOpPerturb_h #ifndef _moMonOpPerturb_h
#define _moMonOpPerturb_h #define _moMonOpPerturb_h
#include <eoEvalFunc.h> #include "../../eo/eoEvalFunc.h"
#include <eoOp.h> #include "../../eo/eoOp.h"
#include <perturb/moPerturbation.h> #include "moPerturbation.h"
#include <memory/moDummyMemory.h> #include "../memory/moDummyMemory.h"
/** /**
* Perturbation operator using only a eoMonOp * Perturbation operator using only a eoMonOp

View file

@ -30,9 +30,9 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moNeighborhoodPerturb_h #ifndef _moNeighborhoodPerturb_h
#define _moNeighborhoodPerturb_h #define _moNeighborhoodPerturb_h
#include <eval/moEval.h> #include "../eval/moEval.h"
#include <perturb/moPerturbation.h> #include "moPerturbation.h"
#include <neighborhood/moNeighborhood.h> #include "../neighborhood/moNeighborhood.h"
/** /**
* Neighborhood Perturbation: explore the neighborhood to perturb the solution (the neighborhood could be different as the one used in the Local Search) * Neighborhood Perturbation: explore the neighborhood to perturb the solution (the neighborhood could be different as the one used in the Local Search)

View file

@ -30,8 +30,8 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moPertubation_h #ifndef _moPertubation_h
#define _moPertubation_h #define _moPertubation_h
#include <eoOp.h> #include <paradiseo/eo/eoOp.h>
#include <memory/moMemory.h> #include "../memory/moMemory.h"
/** /**
* Abstract class for Perturbation operator * Abstract class for Perturbation operator

View file

@ -31,10 +31,10 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#define _moRestartPerturb_h #define _moRestartPerturb_h
#include <eoEvalFunc.h> #include <paradiseo/eo/eoEvalFunc.h>
#include <eoInit.h> #include <paradiseo/eo/eoInit.h>
#include <perturb/moPerturbation.h> #include "moPerturbation.h"
#include <memory/moCountMoveMemory.h> #include "../memory/moCountMoveMemory.h"
/** /**
* Restart Perturbation : restart when maximum number of iteration with no improvement is reached * Restart Perturbation : restart when maximum number of iteration with no improvement is reached

View file

@ -30,7 +30,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moSolInit_h #ifndef _moSolInit_h
#define _moSolInit_h #define _moSolInit_h
#include <eoInit.h> #include <paradiseo/eo/eoInit.h>
/** /**
* Initialization of the solution with the external solution * Initialization of the solution with the external solution