Home
last modified time | relevance | path

Searched refs:computevariablebounds (Results 1 – 20 of 20) sorted by relevance

/petsc/src/snes/impls/vi/
H A Dvi.c47 snes->ops->computevariablebounds = compute; in SNESVISetComputeVariableBounds_VI()
424 if (!snes->ops->computevariablebounds && snes->dm) { in SNESSetUp_VI()
427 if (flag) snes->ops->computevariablebounds = SNESVIDMComputeVariableBounds; in SNESSetUp_VI()
430 if (snes->ops->computevariablebounds) { in SNESSetUp_VI()
433 PetscUseTypeMethod(snes, computevariablebounds, snes->xl, snes->xu); in SNESSetUp_VI()
/petsc/src/snes/impls/ksponly/
H A Dksponly.c15 …PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObje… in SNESSolve_KSPONLY()
/petsc/src/snes/impls/composite/
H A Dsnescomposite.c319 if (snes->ops->computevariablebounds) { in SNESSetUp_Composite()
323 PetscUseTypeMethod(snes, computevariablebounds, snes->xl, snes->xu); in SNESSetUp_Composite()
332 if (snes->ops->computevariablebounds) { in SNESSetUp_Composite()
333 PetscCall(SNESVISetComputeVariableBounds(next->snes, snes->ops->computevariablebounds)); in SNESSetUp_Composite()
/petsc/src/snes/impls/richardson/
H A Dsnesrichardson.c34 …PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObje… in SNESSolve_NRichardson()
/petsc/src/snes/impls/gs/
H A Dsnesgs.c223 …PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObje… in SNESSolve_NGS()
/petsc/src/snes/impls/ngmres/
H A Danderson.c39 …PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObje… in SNESSolve_Anderson()
H A Dsnesngmres.c151 …PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObje… in SNESSolve_NGMRES()
/petsc/src/snes/impls/ls/
H A Dls.c139 …PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObje… in SNESSolve_NEWTONLS()
/petsc/include/petsc/private/
H A Dsnesimpl.h27 …PetscErrorCode (*computevariablebounds)(SNES, Vec, Vec); /* user provided routine to set box const… member
H A Ddmimpl.h78 PetscErrorCode (*computevariablebounds)(DM, Vec, Vec); member
/petsc/src/snes/impls/ncg/
H A Dsnesncg.c188 …PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObje… in SNESSolve_NCG()
/petsc/src/snes/impls/ms/
H A Dms.c327 …PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObje… in SNESSolve_MS()
/petsc/src/snes/impls/qn/
H A Dqn.c78 …PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObje… in SNESSolve_QN()
/petsc/src/snes/impls/al/
H A Dal.c291 …PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObje… in SNESSolve_NEWTONAL()
/petsc/src/snes/impls/ntrdc/
H A Dntrdc.c325 …PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObje… in SNESSolve_NEWTONTRDC()
/petsc/src/snes/impls/multiblock/
H A Dmultiblock.c452 …PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObje… in SNESSolve_Multiblock()
/petsc/src/snes/impls/tr/
H A Dtr.c517 …PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObje… in SNESSolve_NEWTONTR()
/petsc/src/snes/impls/fas/
H A Dfas.c823 …PetscCheck(!snes->xl && !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObje… in SNESSolve_FAS()
/petsc/src/snes/impls/nasm/
H A Dnasm.c729 …PetscCheck(!snes->xl & !snes->xu && !snes->ops->computevariablebounds, PetscObjectComm((PetscObjec… in SNESSolve_NASM()
/petsc/src/dm/interface/
H A Ddm.c3863 dm->ops->computevariablebounds = f; in DMSetVariableBounds()
3887 *flg = (dm->ops->computevariablebounds) ? PETSC_TRUE : PETSC_FALSE; in DMHasVariableBounds()
3916 PetscUseTypeMethod(dm, computevariablebounds, xl, xu); in DMComputeVariableBounds()