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