cMHN 1.1
C++ library for learning MHNs with pRC
Loading...
Searching...
No Matches
round.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSD-2-Clause
2
3#ifndef pRC_CORE_TENSOR_FUNCTIONS_ROUND_H
4#define pRC_CORE_TENSOR_FUNCTIONS_ROUND_H
5
9
10namespace pRC
11{
12 template<std::int64_t D = 0, class X,
15 static inline constexpr auto round(X &&a)
16 {
17 return loop<Round<D>>(forward<X>(a));
18 }
19}
20#endif // pRC_CORE_TENSOR_FUNCTIONS_ROUND_H
pRC::Size const D
Definition CalculatePThetaTests.cpp:9
Definition cholesky.hpp:18
static constexpr auto makeConstantSequence()
Definition sequence.hpp:402
static constexpr auto round(Complex< T > const &a)
Definition round.hpp:12