Package-level declarations

Types

Link copied to clipboard
A variable spanning over an arbitrary set of values.
Link copied to clipboard
class Constant<V>(val value: V) : DependentVariable<V>

A constant value, expressed as a variable to promote code reuse in Alchemist specifications.

Link copied to clipboard
This variable is a flag.
Link copied to clipboard
A variable ranging geometrically (exponentially) in a range.
Link copied to clipboard
data class JSR223Variable @JvmOverloads constructor(val language: String, val formula: String, val timeout: Long = 1000) : DependentVariable<Any?>

This variable loads any JSR-233 language available in the classpath.

Link copied to clipboard
This class represents a linear variable, namely a variable whose values span linearly between minimum and maximum.
Link copied to clipboard
A numeric constant.
Link copied to clipboard
abstract class PrintableVariable<V : Serializable?> : Variable<V>
A variable stub, with a default toString method.