eryon 0.0.3

eryon is a harmonic, topological framework for managing computational entities at scale.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
    Appellation: neural <test>
    Contrib: @FL03
*/
use eryon::actors::NeuralNode;
use rstmt::nrt::Triad;

#[test]
fn test_neural_node() {
    let headspace = Triad::major(0); // c-major

    let node = NeuralNode::<f32>::from_headspace(headspace);
    //
    assert_eq!(node.headspace(), &headspace);
}