lphy.base.distribution.DistributionConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lphy-base Show documentation
Show all versions of lphy-base Show documentation
The standard library of LPhy, which contains the required generative distributions and basic functions.
The newest version!
package lphy.base.distribution;
public class DistributionConstants {
public static final String pParamName = "p";
public static final String nParamName = "n";
public static final String rParamName = "r";
public static final String shapeParamName = "shape";
public static final String alphaParamName = "alpha";
public static final String betaParamName = "beta";
// the argument name for the mean of a distribution
public static final String meanParamName = "mean";
public static final String medianParamName = "median";
// the argument name for the standard deviation of a distribution
public static final String sdParamName = "sd";
public static final String scaleParamName = "scale";
public static final String concParamName = "conc";
public static final String repsParamName = "reps";
// the argument name for the lower bound of a distribution
public static final String lowerParamName = "lower";
// the argument name for the upper bound of a distribution
public static final String upperParamName = "upper";
// add a double/integer to the returned result from a distribution
public static final String offsetParamName = "offset";
// type for sequence
public static final String typeParamName = "type";
}