mopac_core 0.1.1

High-performance Data-Oriented semi-empirical quantum chemistry core engine in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Core quantum-mechanical integrals for semi-empirical Hamiltonians.
//!
//! Licensed under the Apache License, Version 2.0 (the "License").

pub mod core_repulsion;
pub mod d_orbitals;
pub mod multipoles;
pub mod overlap;
pub mod rotation;
pub mod two_electron;

pub use core_repulsion::*;
pub use d_orbitals::*;
pub use multipoles::*;
pub use overlap::*;
pub use rotation::*;
pub use two_electron::*;