3#ifndef pRC_CORE_TENSOR_OPERATOR_FUNCTIONS_IS_SYMMETRIC_H
4#define pRC_CORE_TENSOR_OPERATOR_FUNCTIONS_IS_SYMMETRIC_H
24 template<
class X,
class R = RemoveReference<X>, If<IsTensorish<R>> = 0,
25 If<IsInvocable<Transpose, X>> = 0,
26 If<IsInvocable<IsApprox, ResultOf<Transpose, X>, X>> = 0,
27 class TT =
typename R::Value>
Definition cholesky.hpp:18
static constexpr auto isSymmetric(X &&a, TT const &tolerance=NumericLimits< TT >::tolerance())
Checks if a Tensor is symmetric.
Definition is_symmetric.hpp:28
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())
Checks if two pRC objects agree up to a given tolerance.
Definition is_approx.hpp:44
static constexpr Conditional< IsSatisfied< C >, RemoveConstReference< X >, X > copy(X &&a)
Definition copy.hpp:13