Home
last modified time | relevance | path

Searched refs:poststep (Results 1 – 6 of 6) sorted by relevance

/petsc/src/ts/interface/ftn-custom/
H A Dztsf.c53 PetscFortranCallbackId poststep; member
82 …PetscObjectUseFortranCallback(ts, _cb.poststep, (TS *, PetscErrorCode * /* PETSC_F90_2PTR_PROTO_NO… in ourpoststep()
173 …SetFortranCallback((PetscObject)*ts, PETSC_FORTRAN_CALLBACK_CLASS, &_cb.poststep, (PetscFortranCal… in tssetpoststep_()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A DTS.pyx2410 poststep: TSPostStepFunction | None,
2419 poststep
2422 Additional positional arguments for ``poststep``.
2424 Additional keyword arguments for ``poststep``.
2431 if poststep is not None:
2434 context = (poststep, args, kargs)
2442 """Return the poststep function."""
2497 discontinuities in callback routines (e.g. prestep and poststep
H A Dpetscts.pxi598 (poststep, args, kargs) = Ts.get_attr('__poststep__')
599 poststep(Ts, *args, **kargs)
H A Dlibpetsc4py.pyx2362 PetscErrorCode (*poststep)(PetscTS) except PETSC_ERR_PYTHON
/petsc/include/petsc/private/
H A Dtsimpl.h191 PetscErrorCode (*poststep)(TS); member
/petsc/src/ts/interface/
H A Dts.c3393 ts->poststep = func; in TSSetPostStep()
3417 if (ts->poststep) { in TSPostStep()
3426 PetscCallBack("TS callback poststep", (*ts->poststep)(ts)); in TSPostStep()