conflux/
lib.rs

1#![warn(missing_docs)]
2/*!
3Fixed point iterations library for SCF problems
4*/
5
6#[macro_use]
7/// Core operations and mathematics
8pub mod core;
9
10/// Mixers from the solver module
11pub mod solvers;
12
13/// Everything our users need
14pub mod prelude;
15
16#[cfg(test)]
17/// Top level testing
18mod testing;