hypre/utilities/hypre_ap.c
falgout e3181f26b1 Added 64 bit feature using HYPRE_Int (see tracker [issue489] for details).
Changed MPI routines to hypre_MPI routines.
Added hypre_printf, etc. routines.
Added AUTOTEST tests to look for 'int' and 'MPI_' calls.
Added a new approach for the Fortran interface (not implemented everywhere yet).
2010-12-20 19:27:44 +00:00

19 lines
333 B
C

#include "_hypre_utilities.h"
/* This file will eventually contain functions needed to support
a runtime decision of whether to use the assumed partition */
/* returns 1 if the assumed partition is in use */
HYPRE_Int HYPRE_AssumedPartitionCheck()
{
#ifdef HYPRE_NO_GLOBAL_PARTITION
return 1;
#else
return 0;
#endif
}