Updated includes on mo/memory

This commit is contained in:
Ronaldd Pinho 2019-08-17 17:00:12 -03:00
commit 0c4937453e
14 changed files with 23 additions and 23 deletions

View file

@ -31,7 +31,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moAspiration_h
#define _moAspiration_h
#include <eoFunctor.h>
#include <paradiseo/eo/eoFunctor.h>
/**
* Abstract class for Aspiration Criteria

View file

@ -31,7 +31,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moBestImprAspiration_h
#define _moBestImprAspiration_h
#include <memory/moAspiration.h>
#include "moAspiration.h"
/**
* Aspiration criteria accepts a solution better than the best so far

View file

@ -30,7 +30,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moCountMoveMemory_h
#define _moCountMoveMemory_h
#include <memory/moMemory.h>
#include "moMemory.h"
/**
* Count the number of move, no move and the successive stagnation since the last Move

View file

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

View file

@ -30,8 +30,8 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moDummyDiversification_h
#define _moDummyDiversification_h
#include <memory/moDiversification.h>
#include <memory/moDummyMemory.h>
#include "moDiversification.h"
#include "moDummyMemory.h"
/**
* Dummy diversification strategy

View file

@ -30,8 +30,8 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moDummyIntensification_h
#define _moDummyIntensification_h
#include <memory/moIntensification.h>
#include <memory/moDummyMemory.h>
#include "moIntensification.h"
#include "moDummyMemory.h"
/**
* Dummy intensification strategy

View file

@ -30,7 +30,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moDummyMemory_h
#define _moDummyMemory_h
#include <memory/moMemory.h>
#include "moMemory.h"
/**
* Dummy memory to make an empty memory

View file

@ -30,8 +30,8 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moIndexedVectorTabuList_h
#define _moIndexedVectorTabuList_h
#include <utils/eoRndGenerators.h>
#include <memory/moTabuList.h>
#include <paradiseo/eo/utils/eoRndGenerators.h>
#include "moTabuList.h"
#include <vector>
#include <iostream>

View file

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

View file

@ -31,10 +31,10 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#define _moMonOpDiversification_h
#include <eoEvalFunc.h>
#include <eoOp.h>
#include <memory/moDiversification.h>
#include <memory/moDummyMemory.h>
#include <paradiseo/eo/eoEvalFunc.h>
#include <paradiseo/eo/eoOp.h>
#include "moDiversification.h"
#include "moDummyMemory.h"
/**
* Diversification strategy applies a "monOp" operator

View file

@ -30,7 +30,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moNeighborVectorTabuList_h
#define _moNeighborVectorTabuList_h
#include <memory/moTabuList.h>
#include "moTabuList.h"
#include <vector>
#include <iostream>

View file

@ -30,8 +30,8 @@
#ifndef _moRndIndexedVectorTabuList_h
#define _moRndIndexedVectorTabuList_h
#include <memory/moIndexedVectorTabuList.h>
#include <utils/eoRndGenerators.h>
#include "moIndexedVectorTabuList.h"
#include <paradiseo/eo/utils/eoRndGenerators.h>
/**

View file

@ -30,7 +30,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moSolVectorTabuList_h
#define _moSolVectorTabuList_h
#include <memory/moTabuList.h>
#include "moTabuList.h"
#include <vector>
#include <iostream>

View file

@ -30,7 +30,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr
#ifndef _moTabuList_h
#define _moTabuList_h
#include <memory/moMemory.h>
#include "moMemory.h"
/**
* Abstract class for the Tabu List