Home
last modified time | relevance | path

Searched refs:pcmg (Results 1 – 2 of 2) sorted by relevance

/petsc/src/ksp/pc/tests/
H A Dex5.c39 PC pcmg, pc; in main() local
65 PetscCall(KSPGetPC(kspmg, &pcmg)); in main()
67 PetscCall(PCSetType(pcmg, PCMG)); in main()
68 PetscCall(PCMGSetLevels(pcmg, levels, NULL)); in main()
69 PetscCall(PCMGSetType(pcmg, am)); in main()
71 PetscCall(PCMGGetCoarseSolve(pcmg, &cksp)); in main()
81 PetscCall(PCMGSetResidual(pcmg, levels - 1 - i, residual, NULL)); in main()
85 PetscCall(PCMGSetInterpolation(pcmg, levels - 1 - i, mat[i])); in main()
86 PetscCall(PCMGSetRestriction(pcmg, levels - 1 - i, mat[i])); in main()
87 PetscCall(PCMGSetCycleTypeOnLevel(pcmg, levels - 1 - i, (PCMGCycleType)cycles)); in main()
[all …]
/petsc/src/snes/tutorials/
H A Dex12.c62 PC pcmg; /* This is needed for error monitoring */ member