Home
last modified time | relevance | path

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

/petsc/src/ksp/ksp/tutorials/
H A Dex74.c132 PetscErrorCode (*irkcreate)(PetscInt, PetscScalar **, PetscScalar **, PetscReal **); in main() local
133 PetscCall(PetscFunctionListFind(IRKList, irktype, &irkcreate)); in main()
134 PetscCall((*irkcreate)(nstages, &A, &b, &c)); in main()
/petsc/src/ts/impls/implicit/irk/
H A Dirk.c773 PetscErrorCode (*irkcreate)(TS); in TSIRKSetType_IRK() local
780 PetscCall(PetscFunctionListFind(TSIRKList, irktype, &irkcreate)); in TSIRKSetType_IRK()
781 …PetscCheck(irkcreate, PetscObjectComm((PetscObject)ts), PETSC_ERR_ARG_UNKNOWN_TYPE, "Unknown TSIRK… in TSIRKSetType_IRK()
782 PetscCall((*irkcreate)(ts)); in TSIRKSetType_IRK()