pub trait Topological<N>where
    N: Neural,{
    // Required methods
    fn init_lateral(&self, neurons: &mut N);
    fn clone_dyn(&self) -> BoxedTopological<N>;
}
Expand description

Interface for structures encapsulating representations of network layer topologies.

Required Methods§

source

fn init_lateral(&self, neurons: &mut N)

source

fn clone_dyn(&self) -> BoxedTopological<N>

Implementors§

source§

impl<D, N> Topological<N> for CartesianTopology<D>where N: Neural, D: Dimension,

source§

impl<N> Topological<N> for BoxedTopological<N>where N: Neural,