rssn 0.2.9

A comprehensive scientific computing library for Rust, aiming for feature parity with NumPy and SymPy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! FFI bindings for symbolic Lie group and Lie algebra operations.
//!
//! This module exposes foreign function interface (FFI) bindings for matrix Lie groups,
//! Lie algebras, exponentials, logarithms, and related structures.

/// Bincode-based FFI bindings for symbolic Lie group and Lie algebra operations.
pub mod bincode_api;
/// Handle-based FFI bindings for Lie groups using opaque group and algebra handles.
pub mod handle;
/// JSON-based FFI bindings for Lie groups and algebras using serialized symbolic data.
pub mod json;