⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crossoversbxfltvecop.cpp

📁 非常好的进化算法EC 实现平台 可以实现多种算法 GA GP
💻 CPP
字号:
/* *  Open BEAGLE *  Copyright (C) 2001-2005 by Christian Gagne and Marc Parizeau * *  This library is free software; you can redistribute it and/or *  modify it under the terms of the GNU Lesser General Public *  License as published by the Free Software Foundation; either *  version 2.1 of the License, or (at your option) any later version. * *  This library is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU *  Lesser General Public License for more details. * *  You should have received a copy of the GNU Lesser General Public *  License along with this library; if not, write to the Free Software *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA * *  Contact: *  Laboratoire de Vision et Systemes Numeriques *  Departement de genie electrique et de genie informatique *  Universite Laval, Quebec, Canada, G1K 7P4 *  http://vision.gel.ulaval.ca * *//*! *  \file   beagle/GA/src/CrossoverSBXFltVecOp.cpp *  \brief  Source code of class GA::CrossoverSBXFltVecOp. *  \author Christian Gagne *  \author Marc Parizeau *  $Revision: 1.6 $ *  $Date: 2005/10/04 09:32:52 $ */#include "beagle/GA.hpp"#include <cfloat>#include <cmath>#include <float.h>#include <algorithm>#include <string>using namespace Beagle;/*! *  \brief Construct a real-valued simulated binary crossover (SBX) operator. *  \param inMatingPbName Mating probability parameter name. *  \param inName Name of the operator. */Beagle::GA::CrossoverSBXFltVecOp::CrossoverSBXFltVecOp(string inMatingPbName,                                                       string inName) :  CrossoverOp(inMatingPbName, inName){ }/*! *  \brief Initialize the real-valued simulated binary crossover (SBX) operator. *  \param ioSystem System of the evolution. */void Beagle::GA::CrossoverSBXFltVecOp::initialize(Beagle::System& ioSystem){  Beagle_StackTraceBeginM();  CrossoverOp::initialize(ioSystem);  if(ioSystem.getRegister().isRegistered(mMatingProbaName)) {    ioSystem.getRegister().deleteEntry(mMatingProbaName);  }  if(ioSystem.getRegister().isRegistered(mMatingProbaName)) {    mMatingProba = castHandleT<Float>(ioSystem.getRegister()[mMatingProbaName]);  } else {    mMatingProba = new Float(float(0.3));    Register::Description lDescription(      "Individual SBX crossover prob.",      "Float",      "0.3",      "Real-valued simulated binary crossover (SBX) probability of a single individual."    );    ioSystem.getRegister().addEntry(mMatingProbaName, mMatingProba, lDescription);  }  if(ioSystem.getRegister().isRegistered("ga.float.maxvalue")) {    mMaxValue = castHandleT<DoubleArray>(ioSystem.getRegister()["ga.float.maxvalue"]);  } else {    mMaxValue = new DoubleArray(1,DBL_MAX);    std::ostringstream lOSS;    lOSS << "Maximum values assigned to vector's floats. ";    lOSS << "Value can be a scalar, which limit the value for all float ";    lOSS << "vector parameters, or a vector which limit the value for the parameters ";    lOSS << "individually. If the maximum value is smaller than the ";    lOSS << "float vector size, the limit used for the last values of the float vector ";    lOSS << "is equal to the last value of the maximum value vector.";    Register::Description lDescription(      "Maximum vector values",      "DoubleArray",      dbl2str(DBL_MAX),      lOSS.str().c_str()    );    ioSystem.getRegister().addEntry("ga.float.maxvalue", mMaxValue, lDescription);  }  if(ioSystem.getRegister().isRegistered("ga.float.minvalue")) {    mMinValue = castHandleT<DoubleArray>(ioSystem.getRegister()["ga.float.minvalue"]);  } else {    mMinValue = new DoubleArray(1,DBL_MIN);    std::ostringstream lOSS;    lOSS << "Minimum  values assigned to vector's floats. ";    lOSS << "Value can be a scalar, which limit the value for all float ";    lOSS << "vector parameters, or a vector which limit the value for the parameters ";    lOSS << "individually. If the minimum value is smaller than the ";    lOSS << "float vector size, the limit used for the last values of the float vector ";    lOSS << "is equal to the last value of the minimum value vector.";    Register::Description lDescription(      "Minimum values",      "DoubleArray",      dbl2str(DBL_MIN),      lOSS.str().c_str()    );    ioSystem.getRegister().addEntry("ga.float.minvalue", mMinValue, lDescription);  }  if(ioSystem.getRegister().isRegistered("ga.cxsbx.nu")) {    mNu = castHandleT<Double>(ioSystem.getRegister()["ga.cxsbx.nu"]);  } else {    mNu = new Double(2.0);    Register::Description lDescription(      "SBX crossover nu value",      "Double",      "2.0",      "SBX crossover nu parameter moduling crossover."    );    ioSystem.getRegister().addEntry("ga.cxsbx.nu", mNu, lDescription);  }  Beagle_StackTraceEndM("void GA::CrossoverSBXFltVecOp::initialize(System& ioSystem)");}/*! *  \brief Mate two GA individuals for real-valued SBX crossover. *  \param ioIndiv1   First individual to mate. *  \param ioContext1 Evolutionary context of the first individual. *  \param ioIndiv2   Second individual to mate. *  \param ioContext2 Evolutionary context of the second individual. *  \return True if the individuals are effectively mated, false if not. */bool Beagle::GA::CrossoverSBXFltVecOp::mate(Beagle::Individual& ioIndiv1,                                            Beagle::Context&    ioContext1,                                            Beagle::Individual& ioIndiv2,                                            Beagle::Context&    ioContext2){  Beagle_StackTraceBeginM();  unsigned int lNbGenotypes = minOf<unsigned int>(ioIndiv1.size(), ioIndiv2.size());  if(lNbGenotypes==0) return false;  Beagle_LogDebugM(    ioContext1.getSystem().getLogger(),    "crossover", "Beagle::GA::CrossoverSBXFltVecOp",    string("The first individual mated is (before real-valued SBX crossover): ")+    ioIndiv1.serialize()  );  Beagle_LogDebugM(    ioContext1.getSystem().getLogger(),    "crossover", "Beagle::GA::CrossoverSBXFltVecOp",    string("The second individual mated is (before real-valued SBX crossover): ")+    ioIndiv2.serialize()  );  const double lNu=mNu->getWrappedValue();  for(unsigned int i=0; i<lNbGenotypes; ++i) {    GA::FloatVector::Handle lFloatVector1 = castHandleT<FloatVector>(ioIndiv1[i]);    GA::FloatVector::Handle lFloatVector2 = castHandleT<FloatVector>(ioIndiv2[i]);    const unsigned int lSize = minOf<unsigned int>(lFloatVector1->size(), lFloatVector2->size());    for(unsigned int j=0; j<lSize; ++j) {      const double lMaxVal = j<mMaxValue->size() ? (*mMaxValue)[j] : mMaxValue->back();      const double lMinVal = j<mMinValue->size() ? (*mMinValue)[j] : mMinValue->back();      const double lU_i = ioContext1.getSystem().getRandomizer().rollUniform();      const double lX1_i = (*lFloatVector1)[j];      const double lX2_i = (*lFloatVector2)[j];      double lBeta_i = (lU_i<=0.5) ? (2.0*lU_i) : (1.0/(2.0*(1.0-lU_i)));      lBeta_i = std::pow(lBeta_i, 1.0/(lNu+1.0));        (*lFloatVector1)[j] = 0.5 * (((1.0+lBeta_i)*lX1_i) + ((1.0-lBeta_i)*lX2_i));      (*lFloatVector2)[j] = 0.5 * (((1.0-lBeta_i)*lX1_i) + ((1.0+lBeta_i)*lX2_i));      if((*lFloatVector1)[j] > lMaxVal) (*lFloatVector1)[j] = lMaxVal;      if((*lFloatVector1)[j] < lMinVal) (*lFloatVector1)[j] = lMinVal;      if((*lFloatVector2)[j] > lMaxVal) (*lFloatVector2)[j] = lMaxVal;      if((*lFloatVector2)[j] < lMinVal) (*lFloatVector2)[j] = lMinVal;    }  }  Beagle_LogDebugM(    ioContext1.getSystem().getLogger(),    "crossover", "Beagle::GA::CrossoverSBXFltVecOp",    string("The first individual mated is (after real-valued SBX crossover): ")+    ioIndiv1.serialize()  );  Beagle_LogDebugM(    ioContext1.getSystem().getLogger(),    "crossover", "Beagle::GA::CrossoverSBXFltVecOp",    string("The second individual mated is (after real-valued SBX crossover): ")+    ioIndiv2.serialize()  );  return true;  Beagle_StackTraceEndM("bool GA::CrossoverSBXFltVecOp::mate(Individual& ioIndiv1, Context& ioContext1, Individual& ioIndiv2, Context& ioContext2)");}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -