Skip to main content

sc_neurocore_engine/neurons/
multi_compartment.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 — Multi-compartment neuron models
8
9//! Multi-compartment neuron models grouped by model responsibility.
10//!
11//! Each private child owns one model's equations, state, and tests.
12//! Public re-exports preserve the established module surface.
13
14mod astrocyte_lif;
15mod booth_rinzel;
16mod dendrify;
17mod dendritic_nmda;
18mod hay_l5;
19mod marder_stg;
20mod multicompartment_mcn;
21mod pinsky_rinzel;
22mod rall_cable;
23mod two_compartment_lif;
24
25pub use astrocyte_lif::AstrocyteLIFNeuron;
26pub use booth_rinzel::BoothRinzelNeuron;
27pub use dendrify::DendrifyNeuron;
28pub use dendritic_nmda::DendriticNMDANeuron;
29pub use hay_l5::HayL5PyramidalNeuron;
30pub use marder_stg::MarderSTGNeuron;
31pub use multicompartment_mcn::MulticompartmentMCNNeuron;
32pub use pinsky_rinzel::PinskyRinzelNeuron;
33pub use rall_cable::RallCableNeuron;
34pub use two_compartment_lif::TwoCompartmentLIFNeuron;