More StringTools tests

refs #53
This commit is contained in:
2015-12-27 15:05:06 +01:00
parent 74e5dbd532
commit bd10e078de
3 changed files with 67 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ package eva2.optimization.operator.paramcontrol;
///**
// * Adapt an instance parameter by time, from given start to end value.
// * This only works if iterations are known. The new variant allows exponential adaption,
// * where the second parameter (endV) is interpreted as halfing time in percent of the
// * where the second parameter (endV) is interpreted as halving time in percent of the
// * full run.
// *
// * @author mkron

View File

@@ -11,7 +11,7 @@ import java.io.Serializable;
* frequency, turning sin(t) into sin(((t+1)^d)-1) which is linear for d=1. For slightly smaller values,
* the frequency slowly decreases, while for slightly larger values, it slowly increases.
*/
@Description("Sinusoidally oscillating value, the frequency may be varyied with time. E.g. use dampening 0.9 " +
@Description("Sinusoidally oscillating value, the frequency may be varied with time. E.g. use dampening 0.9 " +
"for a slightly decreasing frequency, dampening 1.1 for a slight increase. The frequency is modified " +
"in the form sin(t) -> sin(-1+(t+1)^d)")
public class SinusoidalParamAdaption implements InterfaceHasUpperDoubleBound, ParamAdaption, GenericParamAdaption, Serializable {