This file is indexed.

/usr/include/dune/localfunctions/lagrange/p23d/p23dlocalcoefficients.hh is in libdune-localfunctions-dev 2.5.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#ifndef DUNE_P2_3DLOCALCOEFFICIENTS_HH
#define DUNE_P2_3DLOCALCOEFFICIENTS_HH

#include <cstddef>
#include <vector>

#include <dune/localfunctions/common/localkey.hh>

namespace Dune
{

  /**@ingroup LocalLayoutImplementation
         \brief Layout map for P23D elements

         \nosubgrouping
     \implements Dune::LocalCoefficientsVirtualImp
   */
  class P23DLocalCoefficients
  {
  public:
    //! \brief Standard constructor
    P23DLocalCoefficients () : li(10)
    {
      // Vertex shape functions
      li[0] = LocalKey(0,3,0);
      li[1] = LocalKey(1,3,0);
      li[2] = LocalKey(2,3,0);
      li[3] = LocalKey(3,3,0);

      // Edge bubbles
      li[4] = LocalKey(0,2,0);
      li[5] = LocalKey(2,2,0);
      li[6] = LocalKey(1,2,0);
      li[7] = LocalKey(3,2,0);
      li[8] = LocalKey(4,2,0);
      li[9] = LocalKey(5,2,0);
    }

    //! number of coefficients
    std::size_t size () const
    {
      return 10;
    }

    //! get i'th index
    const LocalKey& localKey (std::size_t i) const
    {
      return li[i];
    }

  private:
    std::vector<LocalKey> li;
  };

}

#endif