IntUniform#

class eclypse.graph.assets.space.IntUniform[source]#

Bases: AssetSpace

Class to represent a uniform distribution of integer values.

Methods

__init__(low, high[, step])

Create a new IntUniform asset space.

__init__(low, high, step=1)[source]#

Create a new IntUniform asset space.

Parameters:
  • low (int) – The lower bound of the distribution.

  • high (int) – The upper bound of the distribution.

  • step (int) – The step size for the distribution. Default is 1.