Searched refs:irktype (Results 1 – 2 of 2) sorted by relevance
| /petsc/src/ts/impls/implicit/irk/ |
| H A D | irk.c | 637 TSIRKType irktype; in TSView_IRK() local 640 PetscCall(TSIRKGetType(ts, &irktype)); in TSView_IRK() 641 PetscCall(PetscViewerASCIIPrintf(viewer, " IRK type %s\n", irktype)); in TSView_IRK() 683 PetscErrorCode TSIRKSetType(TS ts, TSIRKType irktype) in TSIRKSetType() argument 687 PetscAssertPointer(irktype, 2); in TSIRKSetType() 688 PetscTryMethod(ts, "TSIRKSetType_C", (TS, TSIRKType), (ts, irktype)); in TSIRKSetType() 707 PetscErrorCode TSIRKGetType(TS ts, TSIRKType *irktype) in TSIRKGetType() argument 711 PetscUseMethod(ts, "TSIRKGetType_C", (TS, TSIRKType *), (ts, irktype)); in TSIRKGetType() 761 static PetscErrorCode TSIRKGetType_IRK(TS ts, TSIRKType *irktype) in TSIRKGetType_IRK() argument 766 *irktype = irk->method_name; in TSIRKGetType_IRK() [all …]
|
| /petsc/src/ksp/ksp/tutorials/ |
| H A D | ex74.c | 93 char irktype[256] = IRKGAUSS; in main() local 115 …OptionsFList("-irk_type", "IRK method family", "", IRKList, irktype, irktype, sizeof(irktype), NUL… in main() 133 PetscCall(PetscFunctionListFind(IRKList, irktype, &irkcreate)); in main()
|