ParCSR BoomerAMG Solver
-
bHYPRE_BoomerAMG__object
-
Symbol "bHYPRE
-
extern C struct bHYPRE_BoomerAMG__object* bHYPRE_BoomerAMG__create sidl_BaseInterface* _ex
-
Constructor function for the class
-
bHYPRE_BoomerAMG bHYPRE_BoomerAMG__createRemote(const char * url, sidl_BaseInterface *_ex)
-
RMI constructor function for the class
-
bHYPRE_BoomerAMG bHYPRE_BoomerAMG__wrapObj(void * data, sidl_BaseInterface *_ex)
-
Wraps up the private data struct pointer (struct bHYPRE_BoomerAMG__data) passed in rather than running the constructor
-
bHYPRE_BoomerAMG__connect
-
RMI connector function for the class
-
bHYPRE_BoomerAMG bHYPRE_BoomerAMG_Create( bHYPRE_MPICommunicator mpi_comm, bHYPRE_IJParCSRMatrix A, sidl_BaseInterface *_ex)
-
This function is the preferred way to create a BoomerAMG solver
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_SetLevelRelaxWt( bHYPRE_BoomerAMG self, double relax_wt, int32_t level, sidl_BaseInterface *_ex)
-
Method: SetLevelRelaxWt[]
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_InitGridRelaxation( bHYPRE_BoomerAMG self, struct sidl_int__array** num_grid_sweeps, struct sidl_int__array** grid_relax_type, struct sidl_int__array** grid_relax_points, int32_t coarsen_type, struct sidl_double__array** relax_weights, int32_t max_levels, sidl_BaseInterface *_ex)
-
Method: InitGridRelaxation[]
-
bHYPRE_BoomerAMG_SetOperator
-
Set the operator for the linear system being solved
-
bHYPRE_BoomerAMG_SetTolerance
-
(Optional) Set the convergence tolerance
-
bHYPRE_BoomerAMG_SetMaxIterations
-
(Optional) Set maximum number of iterations
-
bHYPRE_BoomerAMG_SetLogging
-
(Optional) Set the logging level, specifying the degree
of additional informational data to be accumulated
-
bHYPRE_BoomerAMG_SetPrintLevel
-
(Optional) Set the print level, specifying the degree
of informational data to be printed either to the screen or
to a file
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_GetNumIterations( bHYPRE_BoomerAMG self, int32_t* num_iterations, sidl_BaseInterface *_ex)
-
(Optional) Return the number of iterations taken
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_GetRelResidualNorm( bHYPRE_BoomerAMG self, double* norm, sidl_BaseInterface *_ex)
-
(Optional) Return the norm of the relative residual
-
bHYPRE_BoomerAMG_SetCommunicator
-
Set the MPI Communicator
-
bHYPRE_BoomerAMG_Destroy
-
The Destroy function doesn't necessarily destroy anything
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_SetIntParameter( bHYPRE_BoomerAMG self, const char* name, int32_t value, sidl_BaseInterface *_ex)
-
Set the int parameter associated with name
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_SetDoubleParameter( bHYPRE_BoomerAMG self, const char* name, double value, sidl_BaseInterface *_ex)
-
Set the double parameter associated with name
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_SetStringParameter( bHYPRE_BoomerAMG self, const char* name, const char* value, sidl_BaseInterface *_ex)
-
Set the string parameter associated with name
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_SetIntArray1Parameter( bHYPRE_BoomerAMG self, const char* name, int32_t* value, int32_t nvalues, sidl_BaseInterface *_ex)
-
Set the int 1-D array parameter associated with name
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_SetIntArray2Parameter( bHYPRE_BoomerAMG self, const char* name, struct sidl_int__array* value, sidl_BaseInterface *_ex)
-
Set the int 2-D array parameter associated with name
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_SetDoubleArray1Parameter( bHYPRE_BoomerAMG self, const char* name, double* value, int32_t nvalues, sidl_BaseInterface *_ex)
-
Set the double 1-D array parameter associated with name
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_SetDoubleArray2Parameter( bHYPRE_BoomerAMG self, const char* name, struct sidl_double__array* value, sidl_BaseInterface *_ex)
-
Set the double 2-D array parameter associated with name
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_GetIntValue( bHYPRE_BoomerAMG self, const char* name, int32_t* value, sidl_BaseInterface *_ex)
-
Set the int parameter associated with name
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_GetDoubleValue( bHYPRE_BoomerAMG self, const char* name, double* value, sidl_BaseInterface *_ex)
-
Get the double parameter associated with name
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_Setup( bHYPRE_BoomerAMG self, bHYPRE_Vector b, bHYPRE_Vector x, sidl_BaseInterface *_ex)
-
(Optional) Do any preprocessing that may be necessary in
order to execute Apply
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_Apply( bHYPRE_BoomerAMG self, bHYPRE_Vector b, bHYPRE_Vector* x, sidl_BaseInterface *_ex)
-
Apply the operator to b, returning x
-
SIDL_C_INLINE_DECL int32_t bHYPRE_BoomerAMG_ApplyAdjoint( bHYPRE_BoomerAMG self, bHYPRE_Vector b, bHYPRE_Vector* x, sidl_BaseInterface *_ex)
-
Apply the adjoint of the operator to b, returning x
-
struct bHYPRE_BoomerAMG__object* bHYPRE_BoomerAMG__cast void* obj sidl_BaseInterface* _ex
-
Cast method for interface and class type conversions
-
void* bHYPRE_BoomerAMG__cast2( void* obj, const char* type, sidl_BaseInterface *_ex)
-
String cast method for interface and class type conversions
-
SIDL_C_INLINE_DECL void bHYPRE_BoomerAMG__exec( bHYPRE_BoomerAMG self, const char* methodName, sidl_rmi_Call inArgs, sidl_rmi_Return outArgs, sidl_BaseInterface *_ex)
-
Select and execute a method by name
-
SIDL_C_INLINE_DECL char* bHYPRE_BoomerAMG__getURL( bHYPRE_BoomerAMG self, sidl_BaseInterface *_ex)
-
Get the URL of the Implementation of this object (for RMI)
-
SIDL_C_INLINE_DECL void bHYPRE_BoomerAMG__raddRef( bHYPRE_BoomerAMG self, sidl_BaseInterface *_ex)
-
On a remote object, addrefs the remote instance
-
SIDL_C_INLINE_DECL sidl_bool bHYPRE_BoomerAMG__isRemote( bHYPRE_BoomerAMG self, sidl_BaseInterface *_ex)
-
TRUE if this object is remote, false if local
-
sidl_bool bHYPRE_BoomerAMG__isLocal( bHYPRE_BoomerAMG self, sidl_BaseInterface *_ex)
-
TRUE if this object is remote, false if local
-
struct bHYPRE_BoomerAMG__object* bHYPRE_BoomerAMG__rmicast void* obj struct sidl_BaseInterface__object **_ex
-
Cast method for interface and class type conversions
-
**_ex
-
RMI connector function for the class
alphabetic index hierarchy of classes
generated by doc++