sc_neurocore_engine/neurons/channels.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 — Ion Channel Variant Neuron Models
8
9//! Compatibility facade for the ion-channel variant neuron family.
10//!
11//! Seven independent model implementations and their owned tests live in bounded child modules.
12//! Historical public re-exports remain unchanged.
13
14mod a_type_k;
15mod bk;
16mod ih;
17mod nmda;
18mod persistent_na;
19mod sk;
20mod t_type_ca;
21
22pub use a_type_k::ATypeKNeuron;
23pub use bk::BKNeuron;
24pub use ih::IhNeuron;
25pub use nmda::NMDANeuron;
26pub use persistent_na::PersistentNaNeuron;
27pub use sk::SKNeuron;
28pub use t_type_ca::TTypeCaNeuron;