DMLS intégré et testé
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1817 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
2a102a5cf7
commit
6720152ff7
24 changed files with 1977 additions and 29 deletions
|
|
@ -44,14 +44,16 @@
|
|||
/**
|
||||
* Abstract class for multi-objective local search neighborhood exploration
|
||||
*/
|
||||
template < class Neighborhood >
|
||||
template < class Neighbor >
|
||||
class moeoPopNeighborhoodExplorer: public eoFunctorBase{
|
||||
|
||||
public:
|
||||
|
||||
typedef typename Neighbor::EOT MOEOT;
|
||||
/**
|
||||
* abstract functor which realise exploration
|
||||
*/
|
||||
virtual void operator()(eoPop < typename Neighborhood::EOT > &, std::vector <unsigned int>, eoPop < typename Neighborhood::EOT > &) = 0;
|
||||
virtual void operator()(eoPop<MOEOT> &, std::vector <unsigned int>, eoPop<MOEOT> &) = 0;
|
||||
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue