mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-15 19:31:27 +00:00
The contains method in MultiDiscrete didn't have the check to see if the argument was positive
21 lines
760 B
Python
21 lines
760 B
Python
import gym
|
|
import numpy as np
|
|
|
|
class MultiDiscrete(gym.Space):
|
|
def __init__(self, nvec):
|
|
"""
|
|
nvec: vector of counts of each categorical variable
|
|
"""
|
|
self.nvec = np.asarray(nvec, dtype=np.int32)
|
|
assert self.nvec.ndim == 1, 'nvec should be a 1d array (or list) of ints'
|
|
gym.Space.__init__(self, (self.nvec.size,), np.int8)
|
|
def sample(self):
|
|
return (gym.spaces.np_random.rand(self.nvec.size) * self.nvec).astype(self.dtype)
|
|
def contains(self, x):
|
|
return (0 <= x).all() and (x < self.nvec).all() and x.dtype.kind in 'ui'
|
|
def to_jsonable(self, sample_n):
|
|
return [sample.tolist() for sample in sample_n]
|
|
def from_jsonable(self, sample_n):
|
|
return np.array(sample_n)
|
|
|