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
//! Self-Consistent Field (SCF) solvers and linear algebra for MOPAC_RS.
//!
//! Licensed under the Apache License, Version 2.0 (the "License").

pub mod camp_king;
pub mod density;
pub mod diis;
pub mod eigensolver;
pub mod scf_loop;
pub mod uhf_loop;

pub use camp_king::*;
pub use density::*;
pub use diis::*;
pub use eigensolver::*;
pub use scf_loop::*;
pub use uhf_loop::*;