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

net.sourceforge.cilib.measurement.generic.SimulationSeed Maven / Gradle / Ivy

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

import net.sourceforge.cilib.algorithm.Algorithm;
import net.sourceforge.cilib.math.random.generator.Rand;
import net.sourceforge.cilib.measurement.Measurement;
import net.sourceforge.cilib.type.types.StringType;

public class SimulationSeed implements Measurement {

    public Measurement getClone() {
        return this;
    }

    public StringType getValue(Algorithm algorithm) {
        return new StringType(Long.toString(Rand.getSeed()));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy