This file is indexed.

/usr/include/dune/pdelab/gridoperator/common/gridoperatorutilities.hh is in libdune-pdelab-dev 2.5.0~20170124g7cf9f47a-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
83
84
85
86
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:

#ifndef DUNE_PDELAB_GRIDOPERATOR_COMMON_GRIDOPERATORUTILITIES_HH
#define DUNE_PDELAB_GRIDOPERATOR_COMMON_GRIDOPERATORUTILITIES_HH

#include <dune/pdelab/backend/interface.hh>

namespace Dune{
  namespace PDELab{

    //! Traits class for the grid operator.
    /**
     * This class collects types and auxilliary information about the
     * grid operator.
     *
     * \tparam GFSU The trial function space.
     * \tparam GFSV The test function space.
     * \tparam MB   The matrix backend.
     * \tparam DF   The domain (solution) field type.
     * \tparam RF   The range (residual) field type.
     * \tparam JF   The jacobian field type.
     * \tparam CU   The type of the trial grid function space constraints.
     * \tparam CV   The type of the test grid function space constraints.
     * \tparam A    The global assembler.
     * \tparam LA   The local assembler.
     */
    template<typename GFSU, typename GFSV,
             typename MB,
             typename DF, typename RF, typename JF,
             typename CU, typename CV,
             typename A, typename LA>
    struct GridOperatorTraits
    {

      //! The trial grid function space.
      typedef GFSU TrialGridFunctionSpace;

      //! The test grid function space.
      typedef GFSV TestGridFunctionSpace;


      //! The type of the trial grid function space constraints.
      typedef CU TrialGridFunctionSpaceConstraints;

      //! The type of the test grid function space constraints.
      typedef CV TestGridFunctionSpaceConstraints;


      //! The matrix backend of the grid operator.
      typedef MB MatrixBackend;


      //! The field type of the domain (solution).
      typedef DF DomainField;

      //! The type of the domain (solution).
      using Domain = Dune::PDELab::Backend::Vector<GFSU,DF>;


      //! The field type of the range (residual).
      typedef RF RangeField;

      //! The type of the range (residual).
      using Range = Dune::PDELab::Backend::Vector<GFSV,RF>;


      //! The field type of the jacobian.
      typedef JF JacobianField;

      //! The type of the jacobian.
      using Jacobian = Dune::PDELab::Backend::Matrix<MB,Domain,Range,JF>;


      //! The global assembler of the grid operator.
      typedef A Assembler;

      //! The local assembler of the grid operator.
      typedef LA LocalAssembler;

    };

  } // namespace PDELab
} // namespace Dune

#endif // DUNE_PDELAB_GRIDOPERATOR_COMMON_GRIDOPERATORUTILITIES_HH