//=========================================================================== /*! * * * \brief Objective function DTLZ1 * * * * \author T.Voss, T. Glasmachers, O.Krause * \date 2010-2011 * * * \par Copyright 1995-2017 Shark Development Team * *

* This file is part of Shark. * * * Shark 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 3 of the License, or * (at your option) any later version. * * Shark 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 Shark. If not, see . * */ //=========================================================================== #ifndef SHARK_OBJECTIVEFUNCTIONS_BENCHMARK_DTLZ1_H #define SHARK_OBJECTIVEFUNCTIONS_BENCHMARK_DTLZ1_H #include #include namespace shark { /** * \brief Implements the benchmark function DTLZ1. * * See: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.18.7531&rep=rep1&type=pdf * The benchmark function exposes the following features: * - Scalable w.r.t. the searchspace and w.r.t. the objective space. * - Highly multi-modal. */ struct DTLZ1 : public MultiObjectiveFunction { DTLZ1(std::size_t numVariables = 0) : m_objectives(2), m_handler(numVariables,0,1 ){ announceConstraintHandler(&m_handler); } /// \brief From INameable: return the class name. std::string name() const { return "DTLZ1"; } std::size_t numberOfObjectives()const{ return m_objectives; } bool hasScalableObjectives()const{ return true; } void setNumberOfObjectives( std::size_t numberOfObjectives ){ m_objectives = numberOfObjectives; } std::size_t numberOfVariables()const{ return m_handler.dimensions(); } bool hasScalableDimensionality()const{ return true; } void setNumberOfVariables( std::size_t numberOfVariables ){ m_handler.setBounds( SearchPointType(numberOfVariables,0), SearchPointType(numberOfVariables,1) ); } ResultType eval( const SearchPointType & x ) const { m_evaluationCounter++; ResultType value( numberOfObjectives() ); std::size_t k = numberOfVariables() - numberOfObjectives()+1; double g = (double)k; for( std::size_t i = numberOfVariables() - k; i < numberOfVariables(); i++ ) g += sqr( x( i ) - 0.5 ) - std::cos( 20.0 * M_PI * ( x( i ) - 0.5) ); g *= 100; for (std::size_t i = 0; i < numberOfObjectives(); i++) { value[i] = 0.5*(1.0 + g); for( std::size_t j = 0; j < numberOfObjectives() - i -1; ++j) value[i] *= x( j ); if (i > 0) value[i] *= 1 - x( numberOfObjectives() - i -1); } return value; } private: std::size_t m_objectives; BoxConstraintHandler m_handler; }; } #endif