Anton Romanov 518e01ca93 refactor
2021-06-01 14:05:19 +04:00

18 lines
453 B
Java

/*
* Copyright (C) 2021 Anton Romanov - All Rights Reserved
* You may use, distribute and modify this code, please write to: romanov73@gmail.com.
*
*/
package ru.ulstu.method.exponential.parameter;
public class Gamma extends ExponentialMethodParameter {
public Gamma() {
super("Gamma", DEFAULT_MIN_VALUE, DEFAULT_MAX_VALUE, DEFAULT_OPTIMIZATION_STEP);
}
public static Gamma getInstance() {
return new Gamma();
}
}