Home
last modified time | relevance | path

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

/petsc/src/snes/impls/vi/rs/
H A Dvirs.c19 PetscErrorCode SNESVIGetInactiveSet(SNES snes, IS *inact) in SNESVIGetInactiveSet() argument
24 *inact = vi->IS_inact; in SNESVIGetInactiveSet()
388 const PetscInt *krows, *inact; in SNESSolve_VINEWTONRSLS() local
397 PetscCall(ISGetIndices(vi->IS_inact, &inact)); in SNESSolve_VINEWTONRSLS()
399 for (k = 0; k < cnt; k++) nrows[k] = inact[krows[k] - rstart]; in SNESSolve_VINEWTONRSLS()
401 PetscCall(ISRestoreIndices(vi->IS_inact, &inact)); in SNESSolve_VINEWTONRSLS()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A DSNES.pyx2203 cdef IS inact = IS()
2204 CHKERR(SNESVIGetInactiveSet(self.snes, &inact.iset))
2205 CHKERR(PetscINCREF(inact.obj))
2206 return inact