lie 0.1.2

A numerical library for working with Lie Groups and Algebras
Documentation
1
2
3
4
5
6
7
8
9
10
use lie::lie_algebra::*;
use lie::sylvester::*;

#[test]
fn test_sylvester_structure() {
    let basis = gen_sylvester(3);
    let x = find_structure_constants(&basis);

    println!("{}", x.len());
}