scirs2-spatial 0.4.2

Spatial algorithms module for SciRS2 (scirs2-spatial)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Core Neuromorphic Computing Components
//!
//! This module provides the fundamental building blocks for neuromorphic computing,
//! including spiking neurons, synapses, and spike events that form the basis of
//! brain-inspired spatial algorithms.

pub mod events;
pub mod neurons;
pub mod synapses;

// Re-export core types for convenient access
pub use events::SpikeEvent;
pub use neurons::SpikingNeuron;
pub use synapses::Synapse;