version 0.4.1
Ikarus::traits::EigenSparseMatrix Concept Reference

Concept to check if a type is an Eigen SparseMatrix. More...

#include <ikarus/utils/traits.hh>

Concept definition

template<typename T>
concept Ikarus::traits::EigenSparseMatrix = std::is_base_of_v<Eigen::SparseMatrixBase<T>, T>
Concept to check if a type is an Eigen SparseMatrix.
Definition: traits.hh:517

Detailed Description

This concept checks if the given type is derived from Eigen::SparseMatrixBase.

Template Parameters
TThe type to check.