Spectra  1.0.1
Header-only C++ Library for Large Scale Eigenvalue Problems
GEigsMode.h
1 // Copyright (C) 2016-2022 Yixuan Qiu <yixuan.qiu@cos.name>
2 //
3 // This Source Code Form is subject to the terms of the Mozilla
4 // Public License v. 2.0. If a copy of the MPL was not distributed
5 // with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
6 
7 #ifndef SPECTRA_GEIGS_MODE_H
8 #define SPECTRA_GEIGS_MODE_H
9 
10 namespace Spectra {
11 
17 enum class GEigsMode
18 {
19  Cholesky,
21  ShiftInvert,
22  Buckling,
23  Cayley
24 };
25 
26 } // namespace Spectra
27 
28 #endif // SPECTRA_GEIGS_MODE_H
@ Buckling
Buckling mode for generalized eigenvalue solver.
@ RegularInverse
Regular inverse mode for generalized eigenvalue solver.
@ Cayley
Cayley transformation mode for generalized eigenvalue solver.
@ Cholesky
Using Cholesky decomposition to solve generalized eigenvalues.
@ ShiftInvert
Shift-and-invert mode for generalized eigenvalue solver.