00001 // -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*- 00002 00003 // "eoNoAspirCrit.h" 00004 00005 // (c) OPAC Team, LIFL, 2003-2006 00006 00007 /* TEXT LICENCE 00008 00009 Contact: paradiseo-help@lists.gforge.inria.fr 00010 */ 00011 00012 #ifndef __moNoAspirCrit_h 00013 #define __moNoAspirCrit_h 00014 00015 #include "moAspirCrit.h" 00016 00018 00021 template < class M > class moNoAspirCrit:public moAspirCrit < M > 00022 { 00023 00025 00032 bool operator () (const M & __move, 00033 const typename M::EOType::Fitness & __sol) 00034 { 00035 00036 return false; 00037 } 00038 00040 00043 void init () 00044 { 00045 } 00046 }; 00047 00048 #endif
1.5.1