Package | Description |
---|---|
desmoj.core.dist |
Distributions to model stochastic effects.
|
Modifier and Type | Field and Description |
---|---|
static Operator |
Operator.ABS_DIFF
Absolute difference operator, for arguments
a |
static Operator |
Operator.DIVIDE
Divide operator, for arguments
a |
static Operator |
Operator.MINUS
Minus operator, for arguments
a |
static Operator |
Operator.MULTIPLY
Multiply operator, for arguments
a |
static Operator |
Operator.PLUS
Plus operator, for arguments
a |
static Operator |
Operator.POW
Power operator, for arguments
a |
Modifier and Type | Method and Description |
---|---|
Operator |
ContDistAggregate.getOperator()
The Operator used to combine the input distributions.
|
Constructor and Description |
---|
ContDistAggregate(Model owner,
java.lang.String name,
java.util.List<NumericalDist<?>> dists,
Operator operator,
boolean showInReport,
boolean showInTrace)
Creates a stream of pseudo random numbers following a distribution that
is specified by a list of other distributions and an operator to aggregate them.
|
ContDistAggregate(Model owner,
java.lang.String name,
NumericalDist<?> dist1,
NumericalDist<?> dist2,
Operator operator,
boolean showInReport,
boolean showInTrace)
Creates a stream of pseudo random numbers following a distribution that
is specified by two other distributions and an operator to aggregate them.
|