ocas-core 0.14.0

Core runtime, memory management, and numerical backend glue for oCAS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Core runtime, memory management, and backend glue for oCAS.
//!
//! This crate provides the foundation used by all other oCAS crates:
//! - arena allocation for expression nodes
//! - unified error types
//! - thread pool utilities
//! - FFI glue conventions
//! - thin wrappers around numerical backends (GMP, MPFR, FLINT, etc.)

#![warn(missing_docs)]

pub mod arena;
pub mod error;
pub mod thread_pool;

#[cfg(feature = "gmp")]
pub mod gmp;