Changed to use hypre_Solver_struct approach used in SStruct code for type safety
and to eliminate the need to explicitly cast to/from void *. Using this approach in ExxonMobil solvers work.
This commit is contained in:
parent
f3221ade95
commit
2be5708cc6
@ -155,7 +155,7 @@ typedef struct
|
||||
* hypre_ParVector
|
||||
*--------------------------------------------------------------------------*/
|
||||
|
||||
typedef struct
|
||||
typedef struct hypre_ParVector_struct
|
||||
{
|
||||
MPI_Comm comm;
|
||||
|
||||
@ -211,7 +211,7 @@ typedef struct
|
||||
* Parallel CSR Matrix
|
||||
*--------------------------------------------------------------------------*/
|
||||
|
||||
typedef struct
|
||||
typedef struct hypre_ParCSRMatrix_struct
|
||||
{
|
||||
MPI_Comm comm;
|
||||
|
||||
|
||||
@ -25,7 +25,7 @@
|
||||
* Parallel CSR Matrix
|
||||
*--------------------------------------------------------------------------*/
|
||||
|
||||
typedef struct
|
||||
typedef struct hypre_ParCSRMatrix_struct
|
||||
{
|
||||
MPI_Comm comm;
|
||||
|
||||
|
||||
@ -28,7 +28,7 @@
|
||||
* hypre_ParVector
|
||||
*--------------------------------------------------------------------------*/
|
||||
|
||||
typedef struct
|
||||
typedef struct hypre_ParVector_struct
|
||||
{
|
||||
MPI_Comm comm;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user