cMHN 1.1
C++ library for learning MHNs with pRC
Loading...
Searching...
No Matches
is_symmetric.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSD-2-Clause
2
3#ifndef pRC_CORE_TENSOR_OPERATOR_FUNCTIONS_IS_SYMMETRIC_H
4#define pRC_CORE_TENSOR_OPERATOR_FUNCTIONS_IS_SYMMETRIC_H
5
12
13namespace pRC
14{
15 template<class X, class R = RemoveReference<X>, If<IsTensorish<R>> = 0,
16 If<IsInvocable<Transpose, X>> = 0,
17 If<IsInvocable<IsApprox, ResultOf<Transpose, X>, X>> = 0,
18 class TT = typename R::Value>
19 static inline constexpr auto isSymmetric(X &&a,
20 TT const &tolerance = NumericLimits<TT>::tolerance())
21 {
22 return isApprox(transpose(a), a, tolerance);
23 }
24}
25#endif // pRC_CORE_TENSOR_OPERATOR_FUNCTIONS_IS_SYMMETRIC_H
Definition cholesky.hpp:18
static constexpr auto makeConstantSequence()
Definition sequence.hpp:402
static constexpr auto isSymmetric(X &&a, TT const &tolerance=NumericLimits< TT >::tolerance())
Definition is_symmetric.hpp:19
static constexpr auto transpose(JacobiRotation< T > const &a)
Definition jacobi_rotation.hpp:319
static constexpr auto isApprox(XA &&a, XB &&b, TT const &tolerance=NumericLimits< TT >::tolerance())
Definition is_approx.hpp:24
Definition limits.hpp:13