es.udc.gii.common.eaf.benchmark.constrained_real_param.g03.G03ObjectiveFunction.java Source code

Java tutorial

Introduction

Here is the source code for es.udc.gii.common.eaf.benchmark.constrained_real_param.g03.G03ObjectiveFunction.java

Source

/*
* Copyright (C) 2010 Grupo Integrado de Ingeniera
* 
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* 
* This program 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 General Public License for more details.
* 
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

/*
 * G02ObjectiveFunction.java
 *
 * Created on 28 de agosto de 2007, 11:10
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package es.udc.gii.common.eaf.benchmark.constrained_real_param.g03;

import es.udc.gii.common.eaf.problem.objective.ObjectiveFunction;
import org.apache.commons.math.stat.StatUtils;

/**
 *
 * @author Grupo Integrado de Ingeniera (<a href="http://www.gii.udc.es">www.gii.udc.es</a>) 
 * @since 1.0
 */
public class G03ObjectiveFunction extends ObjectiveFunction {

    public G03ObjectiveFunction() {
    }

    @Override
    public void reset() {
    }

    @Override
    public double evaluate(double[] values) {

        double[] norm_values;

        norm_values = G03Function.normalize(values);

        return -Math.pow(Math.sqrt(norm_values.length), norm_values.length) * StatUtils.product(norm_values);

    }

}