Skip to main content

sc_neurocore_engine/
neuron.rs

1// SPDX-License-Identifier: AGPL-3.0-or-later
2// Commercial license available
3// © Concepts 1996–2026 Miroslav Šotek. All rights reserved.
4// © Code 2020–2026 Miroslav Šotek. All rights reserved.
5// ORCID: 0009-0009-3560-0851
6// Contact: www.anulum.li | protoscience@anulum.li
7// SC-NeuroCore — Neuron Models
8
9//! Stable composition surface for the v3 engine's foundational neuron models.
10
11mod adex;
12mod bitstream_averager;
13mod dendritic_neuron;
14mod exp_if;
15mod fixed_point_lif;
16mod homeostatic_lif;
17mod izhikevich;
18mod lapicque;
19
20pub use adex::AdExNeuron;
21pub use bitstream_averager::BitstreamAverager;
22pub use dendritic_neuron::DendriticNeuron;
23pub use exp_if::ExpIfNeuron;
24pub use fixed_point_lif::{mask, FixedPointLif};
25pub use homeostatic_lif::HomeostaticLif;
26pub use izhikevich::Izhikevich;
27pub use lapicque::LapicqueNeuron;