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
12
13
14
15
16
//! The JIT compiler for RSSN

// Unavoidable for functionality issues.
#![allow(unsafe_code)]

#[cfg(feature = "jit")]
pub mod engine;
#[cfg(feature = "jit")]
pub mod instructions;

#[cfg(feature = "jit")]
pub use engine::JitEngine;
#[cfg(feature = "jit")]
pub use instructions::Instruction;
#[cfg(feature = "jit")]
pub use instructions::JitType;