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

📄 adf.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/GP/src/ADF.cpp *  \brief  Implementation of ADF. *  \author Christian Gagne *  \author Matthew Walker *  \author Marc Parizeau *  $Revision: 1.5 $ *  $Date: 2005/10/04 16:25:10 $ */#include "beagle/GP.hpp"using namespace Beagle;/*! *  \brief Construct a new ADF primitive. *  \param inIndex Index of the associated tree. *  \param inNumberArgs Number of arguments of the ADF. *  \param inName Name of the ADF primitive. *  \param inArgsName Name of the associated argument primitive. */GP::ADF::ADF(unsigned int inIndex,             unsigned int inNumberArgs,             Beagle::string  inName,             Beagle::string  inArgsName) :  GP::Invoker(inIndex, inNumberArgs, inName, inArgsName){ }/*! *  \brief Generate a new ADF primitive from the given specifications. *  \param inIndex Tree index for which the primitive is created. *  \param inName Name of the primitive generated. *  \param inArgsName Name of the arguments associated to the invoker created. *  \param ioContext Evolutionary context. */GP::Invoker::Handle GP::ADF::generateInvoker(unsigned int inIndex,                                             Beagle::string inName,                                             Beagle::string inArgsName,                                             GP::Context& ioContext) const{  Beagle_StackTraceBeginM();  GP::Tree::Handle lTree = ioContext.getIndividual()[inIndex];  return new GP::ADF(inIndex, lTree->getNumberArguments(), inName, inArgsName);  Beagle_StackTraceEndM("GP::Invoker::Handle GP::ADF::generateInvoker(unsigned int inIndex, string inName, string inArgsName, GP::Context& ioContext) const");}/*! *  \brief Return indices of the trees that can be invoked by the ADF. *  \param outCandidates Indices of tree that can be selected as invokable in the actual context. *  \param inNumberArguments Number of arguments for which the selection is desired. *  \param ioContext Evolutionary context. */void GP::ADF::getCandidatesToInvoke(std::vector< unsigned int,BEAGLE_STLALLOCATOR<unsigned int> >& outCandidates,                                    unsigned int inNumberArguments,                                    GP::Context& ioContext) const{  Beagle_StackTraceBeginM();  outCandidates.resize(0);  for(unsigned int i=(ioContext.getGenotypeIndex()+1); i<ioContext.getIndividual().size(); ++i) {    GP::Tree::Handle lTree = castHandleT<GP::Tree>(ioContext.getIndividual()[i]);    const unsigned int lNbArgsTree = lTree->getNumberArguments();    if(inNumberArguments == GP::Primitive::eAny) outCandidates.push_back(i);    else if((inNumberArguments==GP::Primitive::eBranch) && (lNbArgsTree>0))      outCandidates.push_back(i);    else if(inNumberArguments == lNbArgsTree) outCandidates.push_back(i);  }  Beagle_StackTraceEndM("void GP::ADF::getCandidatesToInvoke(std::vector< unsigned int,BEAGLE_STLALLOCATOR<unsigned int> >& outCandidates, unsigned int inNumberArguments, GP::Context& ioContext) const");}/*! *  \brief Get reference the tree to invoke. *  \param ioContext Evolutionary context. *  \return Handle to the invoked tree. */GP::Tree::Handle GP::ADF::getInvokedTree(GP::Context& ioContext) const{  Beagle_StackTraceBeginM();  Beagle_AssertM(mIndex < ioContext.getIndividual().size());  return ioContext.getIndividual()[mIndex];  Beagle_StackTraceEndM("GP::Tree::Handle GP::ADF::getInvokedTree(GP::Context& ioContext) const");}/*! *  \brief Invoke GP tree to execute as ADF. *  \param outResult Result of GP tree invocation *  \param ioTree Tree to invoke. *  \param ioContext Evolutionary context. */void GP::ADF::invoke(GP::Datum& outResult, GP::Tree::Handle ioTree, GP::Context& ioContext){  Beagle_StackTraceBeginM();  GP::Tree::Handle lOldGenotypeHandle = ioContext.getGenotypeHandle();  unsigned int lOldGenotypeIndex = ioContext.getGenotypeIndex();  ioContext.setGenotypeHandle(ioTree);  ioContext.setGenotypeIndex(mIndex);  ioContext.incrementNodesExecuted();  ioContext.pushCallStack(0);  (*ioTree)[0].mPrimitive->execute(outResult, ioContext);  ioContext.popCallStack();  ioContext.checkExecutionTime();  ioContext.setGenotypeHandle(lOldGenotypeHandle);  ioContext.setGenotypeIndex(lOldGenotypeIndex);  Beagle_StackTraceEndM("void GP::ADF::invoke(GP::Datum& outResult, GP::Tree::Handle ioTree, GP::Context& ioContext)");}/*! *  \brief Validate the ADF position in the tree. *  \param ioContext Evolutionary context. *  \return True if the ADF is correctly positioned, false if not. *  \throw Beagle::AssertException If the context is in a bad state. */bool GP::ADF::validate(GP::Context& ioContext) const{  Beagle_StackTraceBeginM();  if(mIndex <= ioContext.getGenotypeIndex()) return false;  if(mIndex >= (ioContext.getIndividual().size()-1)) return false;  if(ioContext.getIndividual()[mIndex]->getNumberArguments() != getNumberArguments()) return false;  return GP::Primitive::validate(ioContext);  Beagle_StackTraceEndM("bool GP::ADF::validate(GP::Context& ioContext) const");}

⌨️ 快捷键说明

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