feagi_data_structures 0.0.50-beta.60

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
12
/// 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;
mod cortical_mapped_xyzp_neuron_voxels;

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