This file is indexed.

/usr/include/dune/localfunctions/mimetic.hh is in libdune-localfunctions-dev 2.2.1-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
// -*- tab-width: 4; indent-tabs-mode: nil -*-
#ifndef DUNE_MIMETICLOCALFINITEELEMENT_HH
#define DUNE_MIMETICLOCALFINITEELEMENT_HH

#include <dune/geometry/type.hh>

#include "common/localfiniteelementtraits.hh"
#include "mimetic/mimeticall.hh"

namespace Dune 
{
  template<class D, class R, int dim>
  class MimeticLocalFiniteElement
  {
	Dune::GeometryType gt;
	MimeticLocalBasis<D,R,dim> basis;
	MimeticLocalCoefficients coefficients;
	MimeticLocalInterpolation<MimeticLocalBasis<D,R,dim> > interpolation;
	
  public:
	typedef Dune::LocalFiniteElementTraits<MimeticLocalBasis<D,R,dim>,
										   MimeticLocalCoefficients,
										   MimeticLocalInterpolation<MimeticLocalBasis<D,R,dim> > > Traits;

	MimeticLocalFiniteElement () 
	{}
	
	MimeticLocalFiniteElement (Dune::GeometryType::BasicType basicType) 
	  : gt(basicType,dim)
	{}
	
	MimeticLocalFiniteElement (Dune::GeometryType::BasicType basicType, unsigned int variant) 
	  : gt(basicType,dim), basis(variant), coefficients(variant)
	{}
	
	const typename Traits::LocalBasisType& localBasis () const 
	{
	  return basis;
	}
	
	const typename Traits::LocalCoefficientsType& localCoefficients () const 
	{
	  return coefficients;
	}
	
	const typename Traits::LocalInterpolationType& localInterpolation () const 
	{
	  return interpolation;
	}
	
	Dune::GeometryType type () const { return gt; }
  };
}

#endif