git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1701 331e1502-861f-0410-8da2-ba01fb791d7f
14 lines
302 B
C++
14 lines
302 B
C++
#ifndef _moIntensification_h
|
|
#define _moIntensification_h
|
|
|
|
#include <memory/moMemory.h>
|
|
#include <eoFunctor.h>
|
|
|
|
/**
|
|
* Abstract class for intensification strategy
|
|
*/
|
|
template< class Neighbor >
|
|
class moIntensification : public moMemory<Neighbor>, public eoUF<typename Neighbor::EOT &,bool>
|
|
{};
|
|
|
|
#endif
|