Spectra
1.2.0
Header-only C++ Library for Large Scale Eigenvalue Problems
Toggle main menu visibility
Loading...
Searching...
No Matches
GEigsMode.h
1
// Copyright (C) 2016-2025 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
,
20
RegularInverse
,
21
ShiftInvert
,
22
Buckling
,
23
Cayley
24
};
25
26
}
// namespace Spectra
27
28
#endif
// SPECTRA_GEIGS_MODE_H
Spectra::GEigsMode
GEigsMode
Definition
GEigsMode.h:18
Spectra::GEigsMode::Buckling
@ Buckling
Buckling mode for generalized eigenvalue solver.
Definition
GEigsMode.h:22
Spectra::GEigsMode::RegularInverse
@ RegularInverse
Regular inverse mode for generalized eigenvalue solver.
Definition
GEigsMode.h:20
Spectra::GEigsMode::Cayley
@ Cayley
Cayley transformation mode for generalized eigenvalue solver.
Definition
GEigsMode.h:23
Spectra::GEigsMode::Cholesky
@ Cholesky
Using Cholesky decomposition to solve generalized eigenvalues.
Definition
GEigsMode.h:19
Spectra::GEigsMode::ShiftInvert
@ ShiftInvert
Shift-and-invert mode for generalized eigenvalue solver.
Definition
GEigsMode.h:21
Spectra
Util
GEigsMode.h
Generated by
1.17.0