Package madkit.random
package madkit.random
Provides various utility classes and methods for generating random numbers in MaDKit
applications.
Especially, this package contains annotations and classes that are used to initialize
annotated fields with random values given bounds and constraints. When these
annotations are used on
Agent
fields, these fields are
automatically initialized by the MaDKit kernel just before the agent is launched.
This package also contains the Randomness
class that provides
utility methods related to randomness with MaDKit.-
ClassDescriptionThis annotation is used to mark a field as a boolean that should be randomized when
Randomness.randomizeFields(Object, java.util.random.RandomGenerator)
is used.This annotation is used to mark a field as a double that should be randomized whenRandomness.randomizeFields(Object, java.util.random.RandomGenerator)
is used.Annotation to specify that a float field should be randomized whenRandomness.randomizeFields(Object, java.util.random.RandomGenerator)
is used.This annotation is used to mark a field as an integer that should be randomized whenRandomness.randomizeFields(Object, java.util.random.RandomGenerator)
is used.This annotation is used to mark a field as a string that should be randomized whenRandomness.randomizeFields(Object, java.util.random.RandomGenerator)
is used.Provides various utility methods related to randomness with MaDKit.