This file is indexed.

/usr/lib/python2.7/dist-packages/PySPH-1.0a4.dev0-py2.7-linux-x86_64.egg/pyzoltan/czoltan/czoltan_types.pxd is in python-pysph 0~20160514.git91867dc-4build1.

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
cdef extern from "zoltan_types.h":

    # basic type used by all of Zoltan
    ctypedef unsigned int ZOLTAN_ID_TYPE

    # MPI data type
    cdef unsigned int ZOLTAN_ID_MPI_TYPE

    # pointer to the basic type
    ctypedef ZOLTAN_ID_TYPE* ZOLTAN_ID_PTR

    # /*****************************************************************************/
    # /*
    #  * Error codes for Zoltan library
    #  *   ZOLTAN_OK     - no errors
    #  *   ZOLTAN_WARN   - some warning occurred in Zoltan library;
    #  *                   application should be able to continue running
    #  *   ZOLTAN_FATAL  - a fatal error occurred
    #  *   ZOLTAN_MEMERR - memory allocation failed; with this error, it could be
    #  *                   possible to try a different, more memory-friendly,
    #  *                   algorithm.
    #  */
    # /*****************************************************************************/
    cdef int ZOLTAN_OK
    cdef int ZOLTAN_WARN
    cdef int ZOLTAN_FATAL
    cdef int ZOLTAN_MEMERR

    # /*****************************************************************************/
    # /* Hypergraph query function types
    #  */
    # /*****************************************************************************/
    cdef int _ZOLTAN_COMPRESSED_EDGE
    cdef int _ZOLTAN_COMPRESSED_VERTEX