mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-15 19:31:27 +00:00
38 lines
868 B
Python
38 lines
868 B
Python
import numpy as np
|
|
from .space import Space
|
|
|
|
|
|
class Discrete(Space):
|
|
r"""A discrete space in :math:`\{ 0, 1, \\dots, n-1 \}`.
|
|
|
|
Example::
|
|
|
|
>>> Discrete(2)
|
|
|
|
"""
|
|
|
|
def __init__(self, n):
|
|
assert n >= 0
|
|
self.n = n
|
|
super(Discrete, self).__init__((), np.int64)
|
|
|
|
def sample(self):
|
|
return self.np_random.randint(self.n)
|
|
|
|
def contains(self, x):
|
|
if isinstance(x, int):
|
|
as_int = x
|
|
elif isinstance(x, (np.generic, np.ndarray)) and (
|
|
x.dtype.char in np.typecodes["AllInteger"] and x.shape == ()
|
|
):
|
|
as_int = int(x)
|
|
else:
|
|
return False
|
|
return as_int >= 0 and as_int < self.n
|
|
|
|
def __repr__(self):
|
|
return "Discrete(%d)" % self.n
|
|
|
|
def __eq__(self, other):
|
|
return isinstance(other, Discrete) and self.n == other.n
|