DDC 0.14.0
Loading...
Searching...
No Matches
non_uniform_point_sampling.cpp
1// Copyright (C) The DDC development team, see COPYRIGHT.md file
2//
3// SPDX-License-Identifier: MIT
4
5#include <cstddef>
6#include <ostream>
7
9
10namespace ddc::detail {
11
12void print_non_uniform_point_samplig(std::ostream& os, std::size_t const size)
13{
14 os << "NonUniformPointSampling(" << size << ')';
15}
16
17} // namespace ddc::detail
The top-level namespace of DDC.