Home
last modified time | relevance | path

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

/petsc/src/ts/interface/ftn-custom/
H A Dztsf.c52 PetscFortranCallbackId prestep; member
74 …PetscObjectUseFortranCallback(ts, _cb.prestep, (TS *, PetscErrorCode * /* PETSC_F90_2PTR_PROTO_NOV… in ourprestep()
166 …tSetFortranCallback((PetscObject)*ts, PETSC_FORTRAN_CALLBACK_CLASS, &_cb.prestep, (PetscFortranCal… in tssetprestep_()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A DTS.pyx2366 prestep: TSPreStepFunction | None,
2375 prestep
2378 Additional positional arguments for ``prestep``.
2380 Additional keyword arguments for ``prestep``.
2387 if prestep is not None:
2390 context = (prestep, args, kargs)
2398 """Return the prestep function.
2497 discontinuities in callback routines (e.g. prestep and poststep
H A Dpetscts.pxi590 (prestep, args, kargs) = Ts.get_attr('__prestep__')
591 prestep(Ts, *args, **kargs)
H A Dlibpetsc4py.pyx2359 PetscErrorCode (*prestep)(PetscTS) except PETSC_ERR_PYTHON
/petsc/include/petsc/private/
H A Dtsimpl.h187 PetscErrorCode (*prestep)(TS); member
/petsc/src/ts/interface/
H A Dts.c3115 ts->prestep = func; in TSSetPreStep()
3139 if (ts->prestep) { in TSPreStep()
3148 PetscCallBack("TS callback preset", (*ts->prestep)(ts)); in TSPreStep()