This file is indexed.

/usr/include/dune/grid/alugrid.hh is in libdune-grid-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
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
87
88
89
90
91
92
#ifndef DUNE_ALUGRID_HH
#define DUNE_ALUGRID_HH

// only include this code, if HAVE_ALUGRID is true
#if HAVE_ALUGRID

#include <dune/grid/alugrid/common/declaration.hh>

#include <dune/grid/alugrid/3d/alugrid.hh>
#include <dune/grid/alugrid/3d/alu3dgridfactory.hh>

// 2d version 
#include <dune/grid/alugrid/2d/alugrid.hh>
#include <dune/grid/alugrid/2d/alu2dgridfactory.hh>

#include <dune/grid/alugrid/common/persistentcontainer.hh>

/** @file
    @author Robert Kloefkorn
    @brief Provides base classes for ALUGrid
**/

namespace Dune
{

/**
   \brief [<em> provides \ref Dune::Grid </em>]
   \brief 3D grid with support for hexahedrons.
   @ingroup GridImplementations
   @ingroup ALUCubeGrid
   The ALUCubeGrid implements the Dune GridInterface for 3d hexahedral meshes.
   This grid can be locally adapted (non-conforming) and used in parallel
   computations using dynamic load balancing. 

   @note
   Adaptive parallel grid supporting dynamic load balancing. This grid supports hexahedrons - a 2d/3d simplex
   grid is also available via the grid implementation ALUSimplexGrid or ALUConformGrid.

   (see ALUGrid homepage: http://www.mathematik.uni-freiburg.de/IAM/Research/alugrid/)

   Two tools are available for partitioning :
   \li Metis ( version 4.0 and higher, see http://glaros.dtc.umn.edu/gkhome/views/metis/metis/ )
   \li ParMETIS ( http://glaros.dtc.umn.edu/gkhome/metis/parmetis/overview )

   \li Available Implementations 
        - Dune::ALUCubeGrid<3,3>

   For installation instructions see http://www.dune-project.org/external_libraries/install_alugrid.html .
*/
template< int dim, int dimworld >
class ALUCubeGrid;
  


/**
   \brief [<em> provides \ref Dune::Grid </em>]
   \brief grid with support for simplicial mesh in 2d and 3d.
   @ingroup GridImplementations
   @ingroup ALUSimplexGrid
   The ALUSimplexGrid implements the Dune GridInterface for 2d triangular and 
   3d tetrahedral meshes. 
   This grid can be locally adapted (non-conforming) and used in parallel
   computations using dynamic load balancing. 

   @note
   Adaptive parallel grid supporting dynamic load balancing. 
   This grid supports triangular/tetrahedral elements - a 3d cube
   grid is also available via the grid implementation ALUCubeGrid or ALUConformGrid.

   (see ALUGrid homepage: http://www.mathematik.uni-freiburg.de/IAM/Research/alugrid/)

   Two tools are available for partitioning :
   \li Metis ( version 4.0 and higher, see http://glaros.dtc.umn.edu/gkhome/views/metis/metis/ )
   \li ParMETIS ( http://glaros.dtc.umn.edu/gkhome/metis/parmetis/overview )

   \li Available Implementations 
          - Dune::ALUSimplexGrid<3,3> 
          - Dune::ALUSimplexGrid<2,2>

   For installation instructions see http://www.dune-project.org/external_libraries/install_alugrid.html .
*/
template< int dim, int dimworld >
class ALUSimplexGrid;

//- include declaration of ALUGrid 
#include <dune/grid/alugrid/common/declaration.hh>

} //end  namespace Dune 

#endif // #ifdef HAVE_ALUGRID

#endif