sc_neurocore_engine/neurons/cerebellar.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 — Cerebellar Circuit Neuron Models
8
9//! Compatibility facade for cerebellar circuit neuron models.
10//!
11//! Each model owns its implementation and tests in a bounded child module
12//! while the historical public re-exports remain unchanged.
13
14mod dcn;
15mod golgi;
16mod granule;
17mod lugaro;
18mod stellate;
19mod unipolar_brush;
20
21pub use dcn::DCNNeuron;
22pub use golgi::GolgiCell;
23pub use granule::GranuleCell;
24pub use lugaro::LugaroCell;
25pub use stellate::StellateCell;
26pub use unipolar_brush::UnipolarBrushCell;