This file is indexed.

/usr/include/parallelinterface.hpp is in libnglib-dev 4.9.13.dfsg-8build1.

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
#ifndef FILE_PARALLELINTERFACE
#define FILE_PARALLELINTERFACE

#ifdef PARALLEL

#ifdef __cplusplus
extern "C" {
#endif

  // this interface is 0-base  !!

//   // these functions have O(N) complexity 
//   int NgPar_Glob2Loc_SurfEl ( int globnum ) ;
//   int NgPar_Glob2Loc_VolEl ( int globnum )  ;
//   int NgPar_Glob2Loc_Segm ( int globnum )  ;
//   int NgPar_Glob2Loc_Vert ( int globnum ) ;


  int NgPar_GetLoc2Glob_VolEl ( int locnum );

  // int NgPar_GetDistantNodeNums ( int nt, int locnum, int * procs, int * distnum);

  // number on distant processor 

  // gibt anzahl an distant pnums zurueck
  // * pnums entspricht ARRAY<int[2] >
  int NgPar_GetDistantNodeNums ( int nodetype, int locnum, int * pnums );
  int NgPar_GetNDistantNodeNums ( int nodetype, int locnum );

  int NgPar_GetDistantPNum ( int proc, int locnum ) ;
  int NgPar_GetDistantEdgeNum ( int proc, int locnum ) ;
  int NgPar_GetDistantFaceNum ( int proc, int locnum ) ;
  int NgPar_GetDistantElNum ( int proc, int locnum );

  bool NgPar_IsExchangeFace ( int fnr ) ;
  bool NgPar_IsExchangeVert ( int vnum );
  bool NgPar_IsExchangeEdge ( int ednum );
  bool NgPar_IsExchangeElement ( int elnum );

  void NgPar_PrintParallelMeshTopology ();
  bool NgPar_IsElementInPartition ( int elnum, int dest );

  bool NgPar_IsGhostFace ( int facenum );
  bool NgPar_IsGhostEdge ( int edgenum );

#ifdef __cplusplus
}
#endif

#endif

#endif