|
using | ZOSparseMatrix = std::true_type |
|
using | NotZOSparseMatrix = std::false_type |
|
using | SimdSparseMatrix = std::true_type |
|
using | NoSimdSparseMatrix = std::false_type |
|
using | MKLSparseMatrixFormat = std::true_type |
|
using | NotMKLSparseMatrixFormat = std::false_type |
|
template<class T > |
using | has_plus = typename std::conditional< std::is_arithmetic< T >::value, std::true_type, has_plus_impl< T > >::type |
|
template<class T > |
using | has_minus = typename std::conditional< std::is_arithmetic< T >::value, std::true_type, has_minus_impl< T > >::type |
|
template<class T > |
using | has_equal = typename std::conditional< std::is_arithmetic< T >::value, std::true_type, std::is_copy_assignable< T > >::type |
|
template<class T > |
using | has_plus_eq = typename std::conditional< std::is_arithmetic< T >::value, std::true_type, has_plus_eq_impl< T > >::type |
|
template<class T > |
using | has_minus_eq = typename std::conditional< std::is_arithmetic< T >::value, std::true_type, has_minus_eq_impl< T > >::type |
|
template<class T > |
using | has_mul = typename std::conditional< std::is_arithmetic< T >::value, std::true_type, has_mul_impl< T > >::type |
|
template<class T > |
using | has_mul_eq = typename std::conditional< std::is_arithmetic< T >::value, std::true_type, has_mul_eq_impl< T > >::type |
|