cMHN 1.2
C++ library for learning MHNs with pRC
Loading...
Searching...
No Matches
zero.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSD-2-Clause
2
3#ifndef pRC_CORE_COMPLEX_ZERO_H
4#define pRC_CORE_COMPLEX_ZERO_H
5
8
9namespace pRC
10{
11 template<class T>
12 struct Zero<Complex<T>>
13 {
14 constexpr auto operator()() const
15 {
16 return Complex<T>(zero<T>());
17 }
18 };
19}
20#endif // pRC_CORE_COMPLEX_ZERO_H
Definition complex.hpp:22
Definition value.hpp:12
Definition cholesky.hpp:10
Complex(T const &) -> Complex< T >
static constexpr auto zero()
Definition zero.hpp:12
constexpr auto operator()() const
Definition zero.hpp:14
Definition zero.hpp:11