cMHN 1.2
C++ library for learning MHNs with pRC
Loading...
Searching...
No Matches
common.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSD-2-Clause
2
3#ifndef pRC_CORE_COMPLEX_COMMON_H
4#define pRC_CORE_COMPLEX_COMMON_H
5
8
9namespace std
10{
11 template<class T, class U>
13 struct common_type<pRC::Complex<T>, pRC::Complex<U>>
14 {
16 };
17
18 template<class T, pRC::IsValue U>
20 struct common_type<pRC::Complex<T>, U>
21 {
23 };
24
25 template<pRC::IsValue T, class U>
27 struct common_type<T, pRC::Complex<U>>
28 {
30 };
31}
32#endif // pRC_CORE_COMPLEX_COMMON_H
Definition complex.hpp:22
Definition value.hpp:12
Definition concepts.hpp:13
Definition cholesky.hpp:10
Definition common.hpp:10