Thyra Version of the Day
Loading...
Searching...
No Matches
Thyra_IdentityLinearOpBase.hpp
1// @HEADER
2// *****************************************************************************
3// Thyra: Interfaces and Support for Abstract Numerical Algorithms
4//
5// Copyright 2004 NTESS and the Thyra contributors.
6// SPDX-License-Identifier: BSD-3-Clause
7// *****************************************************************************
8// @HEADER
9
10#ifndef THYRA_IDENTITY_LINEAR_OP_BASE_HPP
11#define THYRA_IDENTITY_LINEAR_OP_BASE_HPP
12
13#include "Thyra_LinearOpBase.hpp"
14
15namespace Thyra {
16
35template<class Scalar>
36class IdentityLinearOpBase : virtual public LinearOpBase<Scalar>
37{};
38
39} // namespace Thyra
40
41#endif // THYRA_IDENTITY_LINEAR_OP_BASE_HPP
Interface class for identity linear operators.
Base class for all linear operators.