Dune Core Modules (unstable)

monomiallocalcoefficients.hh
1 // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 // vi: set et ts=4 sw=2 sts=2:
3 // SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
4 // SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
5 #ifndef DUNE_LOCALFUNCTIONS_MONOMIAL_MONOMIALLOCALCOEFFICIENTS_HH
6 #define DUNE_LOCALFUNCTIONS_MONOMIAL_MONOMIALLOCALCOEFFICIENTS_HH
7 
8 #include <cstddef>
9 #include <vector>
10 
11 #include "../common/localkey.hh"
12 
13 namespace Dune
14 {
15 
23  template<int static_size>
25  {
26  public:
29  : index(static_size, LocalKey(0,0,0))
30  {
31  for(int i = 0; i < static_size; ++i)
32  index[i].index(i);
33  }
34 
36  std::size_t size () const
37  {
38  return static_size;
39  }
40 
42  const LocalKey& localKey (std::size_t i) const
43  {
44  return index[i];
45  }
46 
47  private:
48  std::vector<LocalKey> index;
49  };
50 
51 }
52 #endif //DUNE_LOCALFUNCTIONS_MONOMIAL_MONOMIALLOCALCOEFFICIENTS_HH
Describe position of one degree of freedom.
Definition: localkey.hh:24
Definition: monomiallocalcoefficients.hh:25
std::size_t size() const
number of coefficients
Definition: monomiallocalcoefficients.hh:36
MonomialLocalCoefficients()
Standard constructor.
Definition: monomiallocalcoefficients.hh:28
const LocalKey & localKey(std::size_t i) const
get i'th index
Definition: monomiallocalcoefficients.hh:42
Dune namespace.
Definition: alignedallocator.hh:13
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.80.0 (Apr 27, 22:29, 2024)