Ifpack2 Templated Preconditioning Package Version 1.0
Loading...
Searching...
No Matches
Ifpack2_ScalingType.hpp
Go to the documentation of this file.
1// @HEADER
2// *****************************************************************************
3// Ifpack2: Templated Object-Oriented Algebraic Preconditioner Package
4//
5// Copyright 2009 NTESS and the Ifpack2 contributors.
6// SPDX-License-Identifier: BSD-3-Clause
7// *****************************************************************************
8// @HEADER
9
10#ifndef _IFPACK2_SCALINGTYPE_HPP_
11#define _IFPACK2_SCALINGTYPE_HPP_
16namespace Ifpack2 {
17
19
22 None,
23 LeftDiagonal,
24 RightDiagonal,
25 SymmetricDiagonal,
26 RowSum,
27 ColSum,
28 RowAndColSum
29};
30
31} // namespace Ifpack2
32
33#endif /* _IFPACK2_SCALINGTYPE_HPP_ */
None
Preconditioners and smoothers for Tpetra sparse matrices.
Definition Ifpack2_AdditiveSchwarz_decl.hpp:40
ScalingType
Ifpack2 scaling type selector.
Definition Ifpack2_ScalingType.hpp:21