Home
last modified time | relevance | path

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

/petsc/src/ts/impls/implicit/glle/
H A Dglle.h34 PetscBool fsal; /* First Same As Last: X[1] = h*Ydot[s-1] (and stiffly accurate) */ member
H A Dglle.c275 scheme->fsal = scheme->stiffly_accurate; /* FSAL is stronger */ in TSGLLESchemeCreate()
277 if (r > 1 && b[1 * s + j] != 0.) scheme->fsal = PETSC_FALSE; in TSGLLESchemeCreate()
278 if (b[1 * s + r - 1] != 1.) scheme->fsal = PETSC_FALSE; in TSGLLESchemeCreate()
280 if (r > 1 && v[1 * r + j] != 0.) scheme->fsal = PETSC_FALSE; in TSGLLESchemeCreate()
338 …Stiffly accurate: %s, FSAL: %s\n", sc->stiffly_accurate ? "yes" : "no", sc->fsal ? "yes" : "no")); in TSGLLESchemeView()