Skip to main content

sc_neurocore_engine/neurons/
sensory.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 — Sensory Neuron Models
8
9//! Compatibility facade for biophysically grounded sensory neuron models.
10//!
11//! Twelve independent model implementations and their tests live in bounded
12//! child modules while the historical public re-exports remain unchanged.
13
14mod cochlear_hair_cell;
15mod cone_photoreceptor;
16mod direction_selective_rgc;
17mod inner_hair_cell;
18mod merkel_cell;
19mod nociceptor;
20mod olfactory_receptor_neuron;
21mod outer_hair_cell;
22mod pacinian_corpuscle;
23mod retinal_ganglion_cell;
24mod rod_photoreceptor;
25mod taste_receptor_cell;
26
27pub use cochlear_hair_cell::CochlearHairCell;
28pub use cone_photoreceptor::ConePhotoreceptor;
29pub use direction_selective_rgc::DirectionSelectiveRGC;
30pub use inner_hair_cell::InnerHairCell;
31pub use merkel_cell::MerkelCell;
32pub use nociceptor::Nociceptor;
33pub use olfactory_receptor_neuron::OlfactoryReceptorNeuron;
34pub use outer_hair_cell::OuterHairCell;
35pub use pacinian_corpuscle::PacinianCorpuscle;
36pub use retinal_ganglion_cell::RetinalGanglionCell;
37pub use rod_photoreceptor::RodPhotoreceptor;
38pub use taste_receptor_cell::TasteReceptorCell;