DDC 0.14.0
Loading...
Searching...
No Matches
uniform_point_sampling.cpp
1// Copyright (C) The DDC development team, see COPYRIGHT.md file
2//
3// SPDX-License-Identifier: MIT
4
5#include <ostream>
6
7#include "coordinate.hpp"
8#include "real_type.hpp"
10
11namespace ddc::detail {
12
13void print_uniform_point_sampling(std::ostream& os, CoordinateElement const origin, Real const step)
14{
15 os << "UniformPointSampling(origin=" << origin << ", step=" << step << ')';
16}
17
18} // namespace ddc::detail
The top-level namespace of DDC.