mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-08-07 03:37:02 +00:00
24 lines
979 B
C
24 lines
979 B
C
/*****************************************************************************
|
|
* CVS File Information :
|
|
* $RCSfile$
|
|
* Author: patmiller $
|
|
* Date: 2007/06/11 14:12:50 $
|
|
* Revision: 1.2 $
|
|
****************************************************************************/
|
|
/****************************************************************************/
|
|
/* FILE ****************** MPI_Graph_neighbors.c ************************/
|
|
/****************************************************************************/
|
|
/* Author : Lisa Alano July 23 2002 */
|
|
/* Copyright (c) 2002 University of California Regents */
|
|
/****************************************************************************/
|
|
|
|
#include "mpi.h"
|
|
|
|
int MPI_Graph_neighbors ( MPI_Comm comm, int rank, int maxneighbors,
|
|
int *neighbors )
|
|
{
|
|
_MPI_COVERAGE();
|
|
return PMPI_Graph_neighbors (comm, rank, maxneighbors, neighbors);
|
|
}
|
|
|