Changed includes in acceptCrit folder to relative includes
This commit is contained in:
parent
bedb18ff3e
commit
2afe369ff1
3 changed files with 7 additions and 7 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue