10#ifndef TPETRA_CRSMATRIX_FWD_HPP
11#define TPETRA_CRSMATRIX_FWD_HPP
13#include "Tpetra_Details_DefaultTypes.hpp"
18#ifndef DOXYGEN_SHOULD_SKIP_THIS
20template<
class Scalar = ::Tpetra::Details::DefaultTypes::scalar_type,
22 class GlobalOrdinal = ::Tpetra::Details::DefaultTypes::global_ordinal_type,
23 class Node = ::Tpetra::Details::DefaultTypes::node_type>
30struct is_crs_matrix :
public std::false_type {};
31template <
typename... P>
32struct is_crs_matrix<
CrsMatrix<P...>> :
public std::true_type {};
33template <
typename... P>
34struct is_crs_matrix<const
CrsMatrix<P...>> :
public std::true_type {};
38inline constexpr bool is_crs_matrix_v = is_crs_matrix<T>::value;
Sparse matrix that presents a row-oriented interface that lets users read or modify entries.
int local_ordinal_type
Default value of Scalar template parameter.
Namespace Tpetra contains the class and methods constituting the Tpetra library.