00001 // -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*- 00002 00003 //----------------------------------------------------------------------------- 00004 // FlowShopInit.h 00005 // (c) OPAC Team (LIFL), Dolphin Project (INRIA), 2007 00006 /* 00007 This library... 00008 00009 Contact: paradiseo-help@lists.gforge.inria.fr, http://paradiseo.gforge.inria.fr 00010 */ 00011 //----------------------------------------------------------------------------- 00012 00013 #ifndef FLOWSHOPINIT_H_ 00014 #define FLOWSHOPINIT_H_ 00015 00016 #include <eoInit.h> 00017 #include <FlowShop.h> 00018 00022 class FlowShopInit : public eoInit<FlowShop> 00023 { 00024 public: 00025 00030 FlowShopInit(unsigned int _N); 00031 00032 00037 void operator()(FlowShop & _flowshop); 00038 00039 00040 private: 00041 00043 unsigned int N; 00044 00045 }; 00046 00047 #endif /*FLOWSHOPINIT_H_*/
1.4.7