Skip to main content

rusticle/
lib.rs

1//! # Rusticle - A high-performance Rust library for numerical computing
2//! 
3//! This library provides a comprehensive set of tools for numerical computing,
4//! including support for complex numbers, linear algebra and more.
5//! 
6pub mod core;
7
8// Global re-exports
9pub use core::Complex;