DDC 0.0.0

a discrete domain computation library

null_extrapolation_rule.hpp
1// Copyright (C) The DDC development team, see COPYRIGHT.md file
2//
3// SPDX-License-Identifier: MIT
4
5#pragma once
6
7namespace ddc {
8
10{
11 template <class CoordType, class ChunkSpan>
13 {
14 return 0.0;
15 }
16};
17} // namespace ddc
The top-level namespace of DDC.
Definition aligned_allocator.hpp:11
constexpr bool enable_chunk
Definition chunk_traits.hpp:16
Definition chunk_span.hpp:30
Definition null_extrapolation_rule.hpp:10
KOKKOS_FUNCTION double operator()(CoordType, ChunkSpan) const
Definition null_extrapolation_rule.hpp:12