Source code for rlgraph.spaces.bool_box

# Copyright 2018 The RLgraph authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import numpy as np

from rlgraph.utils.util import dtype
from rlgraph.spaces.box_space import BoxSpace


[docs]class BoolBox(BoxSpace): def __init__(self, shape=None, **kwargs): super(BoolBox, self).__init__(low=False, high=True, shape=shape, dtype=np.bool_, **kwargs)
[docs] def sample(self, size=None, fill_value=None): shape = self._get_np_shape(num_samples=size) if fill_value is None: sample_ = np.random.choice(a=[False, True], size=shape) else: sample_ = np.full(shape=size, fill_value=fill_value) return sample_
[docs] def contains(self, sample): if self.shape == (): return isinstance(sample, (bool, np.bool_)) else: return dtype(sample.dtype, "np") == np.bool_