This file is indexed.

/usr/lib/python2.7/dist-packages/PySPH-1.0a4.dev0-py2.7-linux-x86_64.egg/pyzoltan/core/zoltan_dd.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
"""Wrapper for the Zoltan Distributed Directory and routines"""
cimport mpi4py.MPI as mpi
from mpi4py.mpi_c cimport MPI_Comm

from pyzoltan.czoltan.czoltan_dd cimport *
from pyzoltan.czoltan.czoltan_types cimport ZOLTAN_ID_TYPE, ZOLTAN_ID_PTR

from carray cimport UIntArray, IntArray

cdef class Zoltan_DD:
    # Pointer to the Zoltan DD
    cdef Zoltan_DD_Directory* dd

    # MPI communicator
    cdef MPI_Comm comm