End Simulation Criteria

This commit is contained in:
2025-01-17 19:39:51 +01:00
parent ccde6a9668
commit 7b46054b70
5 changed files with 196 additions and 43 deletions

View File

@@ -14,6 +14,7 @@ public interface Distribution {
/**
* Creates a new exponential distribution with the given rate.
*
* @param lambda The rate of the distribution.
*/
public Exponential(double lambda) {
@@ -35,7 +36,8 @@ public interface Distribution {
/**
* Creates a new normal distribution with the given mean and standard deviation.
* @param mean The mean of the distribution.
*
* @param mean The mean of the distribution.
* @param sigma The standard deviation of the distribution.
*/
public Normal(double mean, double sigma) {
@@ -60,7 +62,8 @@ public interface Distribution {
/**
* Creates a new normal distribution with the given mean and standard deviation.
* @param mean The mean of the distribution.
*
* @param mean The mean of the distribution.
* @param sigma The standard deviation of the distribution.
*/
public NormalBoxMuller(double mean, double sigma) {