Forgot to add a file on previous checkin...

This commit is contained in:
cleary 1998-02-23 19:44:14 +00:00
parent ca7bd67aca
commit e9bdaa2fc2
2 changed files with 35 additions and 0 deletions

View File

@ -37,6 +37,17 @@ HYPRE_FreeDistributedMatrix( HYPRE_DistributedMatrix matrix )
}
/*--------------------------------------------------------------------------
* HYPRE_LimitedFreeDistributedMatrix
*--------------------------------------------------------------------------*/
int
HYPRE_LimitedFreeDistributedMatrix( HYPRE_DistributedMatrix matrix )
{
return( hypre_LimitedFreeDistributedMatrix( (hypre_DistributedMatrix *) matrix ) );
}
/*--------------------------------------------------------------------------
* HYPRE_InitializeDistributedMatrix
*--------------------------------------------------------------------------*/

View File

@ -0,0 +1,24 @@
/*BHEADER**********************************************************************
* (c) 1997 The Regents of the University of California
*
* See the file COPYRIGHT_and_DISCLAIMER for a complete copyright
* notice, contact person, and disclaimer.
*
* $Revision$
*********************************************************************EHEADER*/
/******************************************************************************
*
* Header info for the hypre_DistributedMatrix structures
*
*****************************************************************************/
#ifndef HYPRE_DISTRIBUTED_MATRIX_TYPES_HEADER
#define HYPRE_DISTRIBUTED_MATRIX_TYPES_HEADER
#include "mpi.h"
typedef void *HYPRE_DistributedMatrix;
#endif