it.unibo.alchemist.boundary.variables.LinearVariable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alchemist-loading Show documentation
Show all versions of alchemist-loading Show documentation
Alchemist Machinery to load from files
/*
* Copyright (C) 2010-2023, Danilo Pianini and contributors
* listed, for each module, in the respective subproject's build.gradle.kts file.
*
* This file is part of Alchemist, and is distributed under the terms of the
* GNU General Public License, with a linking exception,
* as described in the file LICENSE in the Alchemist distribution's top directory.
*/
package it.unibo.alchemist.boundary.variables;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.stream.DoubleStream;
import java.util.stream.Stream;
/**
* This class represents a linear variable, namely a variable whose values span
* linearly between minimum and maximum.
*/
public final class LinearVariable extends PrintableVariable {
private static final long serialVersionUID = 2462199794377640948L;
private static final Logger L = LoggerFactory.getLogger(LinearVariable.class);
private final double min, max, step, def;
/**
* @param def default value
* @param min minimum (inclusive)
* @param max maximum (inclusive)
* @param step number of steps
*/
public LinearVariable(final double def, final double min, final double max, final double step) {
if (max < min) {
throw new IllegalArgumentException("The maximum value is smaller than the minimum.");
}
if (def > max || def < min) {
L.warn("The provided default value for a linear variable ({}) is out of bounds: [{}, {}]", def, min, max);
}
this.min = min;
this.max = max;
this.step = step;
this.def = def;
}
@Override
public Double getDefault() {
return def;
}
@Override
public long steps() {
final long num = (long) Math.ceil((max - min) / step);
if (min + step * num <= max) {
return num + 1;
}
return num;
}
@Override
public Stream stream() {
return DoubleStream.iterate(min, x -> x + step).limit(steps()).boxed();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy