yufmath 0.1.1

A Rust CAS Lib.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Rust API 接口
//!
//! 本模块提供 Yufmath 库的主要 Rust API 接口,
//! 包括主要的 Yufmath 结构和相关配置选项。

pub mod yufmath;
pub mod config;
pub mod progress;
pub mod error;
pub mod async_compute;

pub use yufmath::Yufmath;
pub use config::{ComputeConfig, PrecisionConfig, ParallelConfig, CacheConfig, MemoryConfig};
pub use progress::{ComputeProgress, PerformanceStats, PerformanceMonitor, ProgressCallback, ComputePhase};
pub use error::YufmathError;
pub use async_compute::{AsyncComputation, BatchAsyncComputer, AsyncConfig, TaskStatus};