Examples of UniformRedistribution


Examples of com.barrybecker4.optimization.parameter.redistribution.UniformRedistribution

    public static DoubleParameter createUniformParameter(double val, double minVal, double maxVal,
                                                         String paramName, double[] specialValues,
                                                         double[] specialValueProbabilities) {
        DoubleParameter param = new DoubleParameter(val, minVal, maxVal, paramName);
        param.setRedistributionFunction(
                new UniformRedistribution(specialValues, specialValueProbabilities));
        return param;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.