Home
last modified time | relevance | path

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

/petsc/src/ts/impls/implicit/sundials/
H A Dsundials.h44 PetscInt maxord; /* max order of BDF / Adams method */ member
H A Dsundials.c351 if (cvode->maxord != PETSC_DEFAULT) PetscCallExternal(CVodeSetMaxOrd, cvode->mem, cvode->maxord); in TSSetUp_Sundials()
400 …d", "Max Order for BDF/Adams method", "TSSundialsSetMaxOrd", cvode->maxord, &cvode->maxord, NULL)); in TSSetFromOptions_Sundials()
431 PetscCall(PetscViewerASCIIPrintf(viewer, "SUNDIALS maxord %" PetscInt_FMT "\n", cvode->maxord)); in TSView_Sundials()
649 PetscErrorCode TSSundialsSetMaxord(TS ts, PetscInt maxord) in TSSundialsSetMaxord() argument
652 PetscValidLogicalCollectiveInt(ts, maxord, 2); in TSSundialsSetMaxord()
653 PetscTryMethod(ts, "TSSundialsSetMaxOrd_C", (TS, PetscInt), (ts, maxord)); in TSSundialsSetMaxord()
907 cvode->maxord = PETSC_DEFAULT; in TSCreate_Sundials()