integral-core 0.1.0

Integral engines (Obara-Saika / Rys) and operator layer for the integral crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! `integral-core` — Layer 1 (integral engines) + Layer 2 (operator/derivative layer).
//!
//! - [`os`] — the one-electron Obara–Saika engine (overlap, kinetic,
//!   nuclear-attraction, and multipole/dipole integrals).
//! - [`os_eri`] — the OS/HGP two-electron (ERI) engine.
//! - [`rys`] — the Rys-quadrature ERI engine.
//! - [`operator`] — the L2 one-electron operator DSL over `r` and `p`.
//! - [`deriv`] — geometric (nuclear-coordinate) first derivatives.
//!
//! See `ARCHITECTURE.md` (L1/L2).

#![forbid(unsafe_code)]

pub mod deriv;
pub mod operator;
pub mod os;
pub mod os_eri;
pub mod rys;