This file is indexed.

/usr/include/dune/localfunctions/raviartthomas/raviartthomas0q.hh is in libdune-localfunctions-dev 2.3.1-1.

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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#ifndef DUNE_RAVIARTTHOMAS0QLOCALFINITEELEMENT_HH
#define DUNE_RAVIARTTHOMAS0QLOCALFINITEELEMENT_HH

#warning This header is deprecated, please use\
  dune/localfunctions/raviartthomas/raviartthomascube.hh instead

#include "raviartthomascube.hh"

namespace Dune
{

  /**
   * \brief Lowest order Raviart-Thomas shape functions on quadrilaterals.
   *
   * The dimensions d=2 and dim=3 are supported. This is a convenience class
   * to include the Raviart-Thomas-0 basis elements on quadrilaterals.
   *
   * \tparam D Type to represent the field in the domain.
   * \tparam R Type to represent the field in the range.
   * \tparam dim Dimension.
   *
   * \deprecated This class is deprecated and will be removed after Dune 2.3.
   *             Use RaviartThomasCubeLocalFiniteElement<D, R, dim, 0> instead.
   */
  template<class D, class R, int dim>
  class RT0QLocalFiniteElement;

  /**
   * \brief Specialization on 2d quadrilaterals for lowest order Raviart-Thomas shape functions.
   *
   * \tparam D Type to represent the field in the domain.
   * \tparam R Type to represent the field in the range.
   *
   * \deprecated This class is deprecated and will be removed after Dune 2.3.
   *             Use RaviartThomasCubeLocalFiniteElement<D, R, 2, 0> instead.
   */
  template<class D, class R>
  class
  DUNE_DEPRECATED_MSG("Use RaviartThomasCubeLocalFiniteElement<D, R, 2, 0> instead")
  RT0QLocalFiniteElement<D, R, 2>
    : public RaviartThomasCubeLocalFiniteElement<D, R, 2, 0>
  {
  public:
    RT0QLocalFiniteElement ()
      : RaviartThomasCubeLocalFiniteElement<D, R, 2, 0>::RaviartThomasCubeLocalFiniteElement()
    {}

    RT0QLocalFiniteElement (int s)
      : RaviartThomasCubeLocalFiniteElement<D, R, 2, 0>::RaviartThomasCubeLocalFiniteElement(s)
    {}
  };

  /**
   * \brief Specialization on 3d quadrilaterals for lowest order Raviart-Thomas shape functions.
   *
   * \tparam D Type to represent the field in the domain.
   * \tparam R Type to represent the field in the range.
   *
   * \deprecated This class is deprecated and will be removed after Dune 2.3.
   *             Use RaviartThomasCubeLocalFiniteElement<D, R, 3, 0> instead.
   */
  template<class D, class R>
  class
  DUNE_DEPRECATED_MSG("Use RaviartThomasCubeLocalFiniteElement<D, R, 3, 0> instead")
  RT0QLocalFiniteElement<D, R, 3>
    : public RaviartThomasCubeLocalFiniteElement<D, R, 3, 0>
  {
  public:
    RT0QLocalFiniteElement ()
      : RaviartThomasCubeLocalFiniteElement<D, R, 3, 0>::RaviartThomasCubeLocalFiniteElement()
    {}

    RT0QLocalFiniteElement (int s)
      : RaviartThomasCubeLocalFiniteElement<D, R, 3, 0>::RaviartThomasCubeLocalFiniteElement(s)
    {}
  };

}

#endif