All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.cilib.tuning.TuningControlParameter Maven / Gradle / Ivy

/**           __  __
 *    _____ _/ /_/ /_    Computational Intelligence Library (CIlib)
 *   / ___/ / / / __ \   (c) CIRG @ UP
 *  / /__/ / / / /_/ /   http://cilib.net
 *  \___/_/_/_/_.___/
 */
package net.sourceforge.cilib.tuning;

import net.sourceforge.cilib.algorithm.AbstractAlgorithm;
import net.sourceforge.cilib.controlparameter.ControlParameter;

public class TuningControlParameter implements ControlParameter {
    
    private int index;

    @Override
    public double getParameter() {
        TuningAlgorithm algorithm = (TuningAlgorithm) AbstractAlgorithm.getAlgorithmList().get(0);
        return algorithm.getCurrentParameters().doubleValueOf(index);
    }

    @Override
    public double getParameter(double min, double max) {
        return getParameter();
    }

    @Override
    public TuningControlParameter getClone() {
        return this;
    }

    public void setIndex(int index) {
        this.index = index;
    }

    public int getIndex() {
        return index;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy