/*!
## Algorithms to compute (some) eigenvalues/eigenvectors for symmetric matrices.
*/pubmoddavidson;pubmodlanczos;/// Option to compute the lowest, highest or somewhere in the middle part of the
/// spectrum
#[derive(Clone, PartialEq)]pubenumSpectrumTarget{
Lowest,
Highest,
Target(f64),}/// Correction method for the Davidson algorithm
#[derive(Debug, Copy, Clone)]pubenumDavidsonCorrection{DPR,GJD,}