DDC 0.1.0
Loading...
Searching...
No Matches
deriv.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
9/**
10 * @brief A templated struct representing a discrete dimension storing
11 * the derivatives of a function along a continuous dimension CDim.
12 */
13template <class CDim>
14struct Deriv
15{
16};
17
18} // namespace ddc
The top-level namespace of DDC.
A templated struct representing a discrete dimension storing the derivatives of a function along a co...
Definition deriv.hpp:15