pub struct ArraySpace<S, const N: usize> { /* private fields */ }
Expand description
A Cartesian product of N
spaces of the same type (but not necessarily the same space).
An ArraySpace
is more general than a PowerSpace
because the inner
spaces do not all have to be the same, but less general than
a tuple space because the inner spaces must have the same type.
Implementations§
Trait Implementations§
Source§impl<S: Clone, const N: usize> Clone for ArraySpace<S, N>
impl<S: Clone, const N: usize> Clone for ArraySpace<S, N>
Source§fn clone(&self) -> ArraySpace<S, N>
fn clone(&self) -> ArraySpace<S, N>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de, S, const N: usize> Deserialize<'de> for ArraySpace<S, N>where
S: Serialize + Deserialize<'de>,
impl<'de, S, const N: usize> Deserialize<'de> for ArraySpace<S, N>where
S: Serialize + Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<S, const N: usize> Distribution<<ArraySpace<S, N> as Space>::Element> for ArraySpace<S, N>
impl<S, const N: usize> Distribution<<ArraySpace<S, N> as Space>::Element> for ArraySpace<S, N>
Source§fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> <Self as Space>::Element
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> <Self as Space>::Element
Generate a random value of
T
, using rng
as the source of randomness.Source§fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
Create an iterator that generates random values of
T
, using rng
as
the source of randomness. Read moreSource§impl<S: FeatureSpace, const N: usize> FeatureSpace for ArraySpace<S, N>
Features are the concatenation of inner feature vectors
impl<S: FeatureSpace, const N: usize> FeatureSpace for ArraySpace<S, N>
Features are the concatenation of inner feature vectors
Source§fn num_features(&self) -> usize
fn num_features(&self) -> usize
Length of the encoded feature vectors.
Source§fn features_out<'a, F: Float>(
&self,
element: &Self::Element,
out: &'a mut [F],
zeroed: bool,
) -> &'a mut [F]
fn features_out<'a, F: Float>( &self, element: &Self::Element, out: &'a mut [F], zeroed: bool, ) -> &'a mut [F]
Encode the feature vector of an element into a mutable slice. Read more
Source§fn features<T>(&self, element: &Self::Element) -> T
fn features<T>(&self, element: &Self::Element) -> T
Encode the feature vector of an element into an array.
Source§fn batch_features_out<'a, I, A>(
&self,
elements: I,
out: &mut ArrayBase<A, Ix2>,
zeroed: bool,
)
fn batch_features_out<'a, I, A>( &self, elements: I, out: &mut ArrayBase<A, Ix2>, zeroed: bool, )
Encode the feature vectors of multiple elements into rows of a two-dimensional array. Read more
Source§fn batch_features<'a, I, T>(&self, elements: I) -> Twhere
I: IntoIterator<Item = &'a Self::Element>,
I::IntoIter: ExactSizeIterator,
Self::Element: 'a,
T: BuildFromArray2D,
<T::Array as NumArray2D>::Elem: Float,
fn batch_features<'a, I, T>(&self, elements: I) -> Twhere
I: IntoIterator<Item = &'a Self::Element>,
I::IntoIter: ExactSizeIterator,
Self::Element: 'a,
T: BuildFromArray2D,
<T::Array as NumArray2D>::Elem: Float,
Encode the feature vectors of multiple elements as rows of a two-dimensional array.
Source§impl<S: FiniteSpace, const N: usize> FiniteSpace for ArraySpace<S, N>
impl<S: FiniteSpace, const N: usize> FiniteSpace for ArraySpace<S, N>
Source§impl<S: Space, const N: usize> LogElementSpace for ArraySpace<S, N>
impl<S: Space, const N: usize> LogElementSpace for ArraySpace<S, N>
Source§impl<S: NonEmptySpace, const N: usize> NonEmptySpace for ArraySpace<S, N>
impl<S: NonEmptySpace, const N: usize> NonEmptySpace for ArraySpace<S, N>
Source§fn some_element(&self) -> <Self as Space>::Element
fn some_element(&self) -> <Self as Space>::Element
An arbitrary deterministic element from the space.
Source§impl<S, const N: usize> Serialize for ArraySpace<S, N>where
for<'a> S: Serialize + Deserialize<'a>,
impl<S, const N: usize> Serialize for ArraySpace<S, N>where
for<'a> S: Serialize + Deserialize<'a>,
Source§impl<S: Space + SubsetOrd, const N: usize> SubsetOrd for ArraySpace<S, N>
impl<S: Space + SubsetOrd, const N: usize> SubsetOrd for ArraySpace<S, N>
Source§fn subset_cmp(&self, other: &Self) -> Option<Ordering>
fn subset_cmp(&self, other: &Self) -> Option<Ordering>
Compare using the subset relationship. This is a partial order.
Source§fn strict_subset_of(&self, other: &Self) -> bool
fn strict_subset_of(&self, other: &Self) -> bool
Check if this is a strict subset of
other
.Source§fn subset_of(&self, other: &Self) -> bool
fn subset_of(&self, other: &Self) -> bool
Check if this is a subset (strict or equal) of
other
.Source§fn strict_superset_of(&self, other: &Self) -> bool
fn strict_superset_of(&self, other: &Self) -> bool
Check if this is a strict superset of
other
.Source§fn superset_of(&self, other: &Self) -> bool
fn superset_of(&self, other: &Self) -> bool
Check if this is a superset (strict or equal) of
other
.impl<S: Copy, const N: usize> Copy for ArraySpace<S, N>
impl<S: Eq, const N: usize> Eq for ArraySpace<S, N>
impl<S, const N: usize> StructuralPartialEq for ArraySpace<S, N>
Auto Trait Implementations§
impl<S, const N: usize> Freeze for ArraySpace<S, N>where
S: Freeze,
impl<S, const N: usize> RefUnwindSafe for ArraySpace<S, N>where
S: RefUnwindSafe,
impl<S, const N: usize> Send for ArraySpace<S, N>where
S: Send,
impl<S, const N: usize> Sync for ArraySpace<S, N>where
S: Sync,
impl<S, const N: usize> Unpin for ArraySpace<S, N>where
S: Unpin,
impl<S, const N: usize> UnwindSafe for ArraySpace<S, N>where
S: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more