definition:
|
uniform :: [a] -> Dist a
uniform [] = error "PFLP.uniform: list of events must be non-empty"
uniform xs@(_:_) = enum xs (repeat (1.0 / fromInt (length xs)))
|
demand:
|
argument 1
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
--- Creates a uniform distribution based on a given list of events. The list
--- of events must be non-empty.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({:}) |-> _}
|
name:
|
uniform
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[a] -> Dist a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|