pRC
multi-purpose Tensor Train library for C++
Loading...
Searching...
No Matches
print.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSD-2-Clause
2
3#ifndef pRC_CORE_RANDOM_PRINT_H
4#define pRC_CORE_RANDOM_PRINT_H
5
8
9namespace pRC
10{
11 template<Size N, class S>
12 static inline auto print(SeedSequence<N> const &seq, S &&stream)
13 {
15 print(":", stream);
16 for(Index i = 0; i < N; ++i)
17 {
18 print(" ", stream);
19 print(seq.param()[i], stream);
20 }
21 }
22}
23#endif // pRC_CORE_RANDOM_PRINT_H
Definition seq.hpp:13
Definition cholesky.hpp:18
static auto print(String< N > const &string, std::FILE *stream)
Definition print.hpp:18
static constexpr Conditional< IsSatisfied< C >, RemoveConstReference< X >, X > copy(X &&a)
Definition copy.hpp:13
static constexpr auto name()
Definition type_name.hpp:11
Size Index
Definition type_traits.hpp:21