cMHN 1.2
C++ library for learning MHNs with pRC
Loading...
Searching...
No Matches
not_equal.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSD-2-Clause
2
3#ifndef pRC_CORE_CONTAINER_FUNCTIONS_NOT_EQUAL_H
4#define pRC_CORE_CONTAINER_FUNCTIONS_NOT_EQUAL_H
5
7
8namespace pRC
9{
10 template<Allocation A1, Allocation A2, class TA, class TB, Size... Ns>
11 requires IsPredicate<Equal, CommonArray<A1, TA, Ns...>,
12 CommonArray<A2, TA, Ns...>>
13 static inline constexpr auto operator!=(
16 {
17 return !(lhs == rhs);
18 }
19}
20#endif // pRC_CORE_CONTAINER_FUNCTIONS_NOT_EQUAL_H
Definition declarations.hpp:12
Definition cholesky.hpp:10
std::size_t Size
Definition basics.hpp:31
CommonArray(T const (&)[N]) -> CommonArray< Allocation::Stack, T, N >
static constexpr auto operator!=(JacobiRotation< TA > const &a, JacobiRotation< TB > const &b)
Definition jacobi_rotation.hpp:291
Allocation
Definition allocation.hpp:18