00001 /* 00002 * Copyright (C) DOLPHIN Project-Team, INRIA Futurs, 2006-2007 00003 * (C) OPAC Team, LIFL, 2002-2007 00004 * 00005 * (c) Antonio LaTorre <atorre@fi.upm.es>, 2007 00006 * 00007 * This software is governed by the CeCILL license under French law and 00008 * abiding by the rules of distribution of free software. You can use, 00009 * modify and/ or redistribute the software under the terms of the CeCILL 00010 * license as circulated by CEA, CNRS and INRIA at the following URL 00011 * "http://www.cecill.info". 00012 * 00013 * As a counterpart to the access to the source code and rights to copy, 00014 * modify and redistribute granted by the license, users are provided only 00015 * with a limited warranty and the software's author, the holder of the 00016 * economic rights, and the successive licensors have only limited liability. 00017 * 00018 * In this respect, the user's attention is drawn to the risks associated 00019 * with loading, using, modifying and/or developing or reproducing the 00020 * software by the user in light of its specific status of free software, 00021 * that may mean that it is complicated to manipulate, and that also 00022 * therefore means that it is reserved for developers and experienced 00023 * professionals having in-depth computer knowledge. Users are therefore 00024 * encouraged to load and test the software's suitability as regards their 00025 * requirements in conditions enabling the security of their systems and/or 00026 * data to be ensured and, more generally, to use and operate it in the 00027 * same conditions as regards security. 00028 * The fact that you are presently reading this means that you have had 00029 * knowledge of the CeCILL license and that you accept its terms. 00030 * 00031 * ParadisEO WebSite : http://paradiseo.gforge.inria.fr 00032 * Contact: paradiseo-help@lists.gforge.inria.fr 00033 * 00034 */ 00035 00036 #ifndef _eoVRPStat_h 00037 #define _eoVRPStat_h 00038 00039 // The base definition of eoInit 00040 #include <utils/eoStat.h> 00041 00047 class eoVRPStat : public eoStat<eoVRP, double> { 00048 00049 public: 00050 00056 eoVRPStat (std::string _description = "eoVRPStat ") : eoStat<eoVRP, double> (0.0, _description) { 00057 00058 } 00059 00060 00066 void operator() (const eoPop<eoVRP>& _pop) { 00067 00068 double tmpStat (0.); 00069 eoStat<eoVRP, double>::value () = tmpStat; 00070 00071 } 00072 00073 00079 virtual std::string className (void) const { 00080 00081 return "eoVRPStat"; 00082 00083 } 00084 00085 00086 private: 00087 00088 }; 00089 00090 #endif
1.4.7