feagi-structures 0.0.11

The most core library, defines the basic data types used by FEAGI, as well as some processors to modify them
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod cortical_mapped_xyzp_neuron_voxels;
/// XYZP neuron voxel representation.
///
/// Each voxel stores its (x, y, z) position and activation potential (p) as floats.
/// Simple and fast access, but not very memory efficient
mod neuron_voxel_xyzp;
mod neuron_voxel_xyzp_arrays;

pub use cortical_mapped_xyzp_neuron_voxels::CorticalMappedXYZPNeuronVoxels;
pub use neuron_voxel_xyzp::NeuronVoxelXYZP;
pub use neuron_voxel_xyzp_arrays::NeuronVoxelXYZPArrays;