Home
last modified time | relevance | path

Searched refs:meth (Results 1 – 4 of 4) sorted by relevance

/petsc/src/ksp/pc/impls/parms/
H A Dparms.c32 PetscBool nonsymperm, meth[8]; member
46 PetscInt meth[8]; in PCSetUp_PARMS() local
178 for (i = 0; i < 8; i++) meth[i] = parms->meth[i] ? 1 : 0; in PCSetUp_PARMS()
179 parms_PCSetPermScalOptions(parms->pc, &meth[0], 1); in PCSetUp_PARMS()
180 parms_PCSetPermScalOptions(parms->pc, &meth[4], 0); in PCSetUp_PARMS()
217 …if (parms->meth[0]) PetscCall(PetscViewerASCIIPrintf(viewer, " Using nonsymmetric permutation for… in PCView_PARMS()
218 …if (parms->meth[1]) PetscCall(PetscViewerASCIIPrintf(viewer, " Using column permutation for inter… in PCView_PARMS()
219 …if (parms->meth[2]) PetscCall(PetscViewerASCIIPrintf(viewer, " Using row scaling for interlevel b… in PCView_PARMS()
220 …if (parms->meth[3]) PetscCall(PetscViewerASCIIPrintf(viewer, " Using column scaling for interleve… in PCView_PARMS()
221 …if (parms->meth[4]) PetscCall(PetscViewerASCIIPrintf(viewer, " Using nonsymmetric permutation for… in PCView_PARMS()
[all …]
/petsc/src/binding/petsc4py/demo/legacy/wrap-swig/
H A Dsetup.py10 meth = UnixCCompiler.runtime_library_dir_option.im_func variable
12 meth = UnixCCompiler.runtime_library_dir_option variable
13 FCompiler.runtime_library_dir_option = meth
/petsc/src/binding/petsc4py/demo/legacy/taosolve/
H A Drosenbrock.py112 for meth in methods:
115 if meth: tao.setType(meth)
/petsc/src/binding/petsc4py/test/
H A Dtest_pc_py.py184 def _applyMeth(self, meth): argument
186 if meth == 'matApply':
187 getattr(self.pc, meth)(X, Y)
190 getattr(self.pc, meth)(x, y)
194 self.assertTrue(self._getCtx().log[meth] == 1)
198 nmeth = self._getCtx().log[meth]