| 4336a9ee | 08-Sep-2011 |
Barry Smith <bsmith@mcs.anl.gov> |
In both petsc-3.1-p8 and petsc-dev, it looks like you can't choose cycle type W for boomerAMG. Is this by design?
static const char *HYPREBoomerAMGCycleType[] = {"","V","W"};
(....snip...)
Pets
In both petsc-3.1-p8 and petsc-dev, it looks like you can't choose cycle type W for boomerAMG. Is this by design?
static const char *HYPREBoomerAMGCycleType[] = {"","V","W"};
(....snip...)
PetscOptionsEList("-pc_hypre_boomeramg_cycle_type","Cycle type","None",HYPREBoomerAMGCycleType,2,HYPREBoomerAMGCycleType[jac->cycletype],&indx,&flg);
HYPREBoomerAMGCycleType is length 3, but the length passed to PetscOptionsEList is 2, so cycle type "W" can't be chosen.
Hg-commit: d16789af6f37cfe5e8f44d7cc43441b7dae31958
show more ...
|