Skip to main content

sc_neurocore_engine/neurons/
interneurons.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 — Interneuron compatibility facade
8
9//! Compatibility facade for bounded cortical and cerebellar interneuron modules.
10
11mod cerebellar_basket_neuron;
12mod chandelier_neuron;
13mod martinotti_neuron;
14mod pv_fast_spiking;
15mod sst_neuron;
16mod vip_neuron;
17
18pub use cerebellar_basket_neuron::CerebellarBasketNeuron;
19pub use chandelier_neuron::ChandelierNeuron;
20pub use martinotti_neuron::MartinottiNeuron;
21pub use pv_fast_spiking::PVFastSpikingNeuron;
22pub use sst_neuron::SSTNeuron;
23pub use vip_neuron::VIPNeuron;