Home
last modified time | relevance | path

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

/petsc/src/ksp/pc/impls/sor/
H A Dsor.c99 const char *sortype; in PCView_SOR() local
106 if (sym == SOR_APPLY_UPPER) sortype = "apply_upper"; in PCView_SOR()
107 else if (sym == SOR_APPLY_LOWER) sortype = "apply_lower"; in PCView_SOR()
108 else if (sym & SOR_EISENSTAT) sortype = "Eisenstat"; in PCView_SOR()
109 else if ((sym & SOR_SYMMETRIC_SWEEP) == SOR_SYMMETRIC_SWEEP) sortype = "symmetric"; in PCView_SOR()
110 else if (sym & SOR_BACKWARD_SWEEP) sortype = "backward"; in PCView_SOR()
111 else if (sym & SOR_FORWARD_SWEEP) sortype = "forward"; in PCView_SOR()
112 …else if ((sym & SOR_LOCAL_SYMMETRIC_SWEEP) == SOR_LOCAL_SYMMETRIC_SWEEP) sortype = "local_symmetri… in PCView_SOR()
113 else if (sym & SOR_LOCAL_FORWARD_SWEEP) sortype = "local_forward"; in PCView_SOR()
114 else if (sym & SOR_LOCAL_BACKWARD_SWEEP) sortype = "local_backward"; in PCView_SOR()
[all …]
/petsc/src/binding/petsc4py/demo/python_types/
H A Dmatpython_protocol.py157 sortype: Mat.SORType,
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A Dlibpetsc4py.pyx1163 PetscMatSORType sortype, argument
1172 …SOR(Mat_(mat), Vec_(b), asReal(omega), asInt(sortype), asReal(shift), asInt(its), asInt(lits), Vec…
H A DMat.pyx3962 sortype: SORType | None = None,
3977 if sortype is not None:
3978 csortype = <PetscMatSORType> asInt(sortype)