hypre/struct_ls/pfmg.h

90 lines
3.0 KiB
C
Raw Normal View History

/*BHEADER**********************************************************************
2008-07-18 09:34:48 +08:00
* Copyright (c) 2008, Lawrence Livermore National Security, LLC.
* Produced at the Lawrence Livermore National Laboratory.
2008-07-18 09:34:48 +08:00
* This file is part of HYPRE. See file COPYRIGHT for details.
*
2008-07-18 09:34:48 +08:00
* HYPRE is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License (as published by the Free
* Software Foundation) version 2.1 dated February 1999.
*
* $Revision$
***********************************************************************EHEADER*/
2006-09-23 06:06:21 +08:00
/******************************************************************************
*
* Header info for the PFMG solver
*
*****************************************************************************/
#ifndef hypre_PFMG_HEADER
#define hypre_PFMG_HEADER
#include <assert.h>
/*--------------------------------------------------------------------------
* hypre_PFMGData:
*--------------------------------------------------------------------------*/
typedef struct
{
MPI_Comm comm;
double tol;
HYPRE_Int max_iter;
HYPRE_Int rel_change;
HYPRE_Int zero_guess;
HYPRE_Int max_levels; /* max_level <= 0 means no limit */
HYPRE_Int relax_type; /* type of relaxation to use */
double jacobi_weight; /* weighted jacobi weight */
HYPRE_Int usr_jacobi_weight; /* indicator flag for user weight */
HYPRE_Int rap_type; /* controls choice of RAP codes */
HYPRE_Int num_pre_relax; /* number of pre relaxation sweeps */
HYPRE_Int num_post_relax; /* number of post relaxation sweeps */
HYPRE_Int skip_relax; /* flag to allow skipping relaxation */
double relax_weight;
double dxyz[3]; /* parameters used to determine cdir */
HYPRE_Int num_levels;
HYPRE_Int *cdir_l; /* coarsening directions */
HYPRE_Int *active_l; /* flags to relax on level l*/
hypre_StructGrid **grid_l;
hypre_StructGrid **P_grid_l;
double *data;
hypre_StructMatrix **A_l;
hypre_StructMatrix **P_l;
hypre_StructMatrix **RT_l;
hypre_StructVector **b_l;
hypre_StructVector **x_l;
/* temp vectors */
hypre_StructVector **tx_l;
hypre_StructVector **r_l;
hypre_StructVector **e_l;
void **relax_data_l;
void **matvec_data_l;
void **restrict_data_l;
void **interp_data_l;
/* log info (always logged) */
HYPRE_Int num_iterations;
HYPRE_Int time_index;
HYPRE_Int print_level;
/* additional log info (logged when `logging' > 0) */
HYPRE_Int logging;
double *norms;
double *rel_norms;
} hypre_PFMGData;
#endif