//! Two-Center Two-Electron Integral (TEI) Engine.
//!
//! Licensed under the Apache License, Version 2.0 (the "License").
//! Implements Klopman-Ohno / Dewar multipole expansions over Slater orbitals.
use crateEV_ANGSTROM_FACTOR;
/// Evaluate the two-center two-electron monopole integral $\gamma_{AB} = (s_A s_A | s_B s_B)$ in eV.
///
/// Uses the Dewar-Klopman semi-empirical formula:
/// $$\gamma_{AB}(R) = \frac{e^2}{\sqrt{R^2 + (\rho_A + \rho_B)^2}}$$
/// where $\rho_A = \frac{e^2}{2 g_{ss}^A}$ and $\rho_B = \frac{e^2}{2 g_{ss}^B}$.
///
/// Properties:
/// * At $R = 0$ (one-center limit), $\gamma_{AA}(0) = g_{ss}^A$.
/// * At $R \to \infty$ (long-range limit), $\gamma_{AB}(R) \to \frac{e^2}{R}$ (Coulomb law).