Home
last modified time | relevance | path

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

/petsc/src/ksp/pc/impls/factor/ilu/
H A Dilu.c28 …PetscErrorCode PCFactorSetDropTolerance_ILU(PC pc, PetscReal dt, PetscReal dtcol, PetscInt dtcount) in PCFactorSetDropTolerance_ILU() argument
33 …(PC_Factor *)ilu)->info.dtcol != dtcol || ((PC_Factor *)ilu)->info.dtcount != dtcount), PetscObjec… in PCFactorSetDropTolerance_ILU()
36 ((PC_Factor *)ilu)->info.dtcount = dtcount; in PCFactorSetDropTolerance_ILU()
297 ((PC_Factor *)ilu)->info.dtcount = PETSC_DEFAULT; in PCCreate_ILU()
/petsc/src/ksp/pc/impls/factor/
H A Dfactimpl.c47 …scErrorCode PCFactorSetDropTolerance_Factor(PC pc, PetscReal dt, PetscReal dtcol, PetscInt dtcount) in PCFactorSetDropTolerance_Factor() argument
52 …edt || ilu->info.dt != dt || ilu->info.dtcol != dtcol || ilu->info.dtcount != dtcount), PetscObjec… in PCFactorSetDropTolerance_Factor()
56 ilu->info.dtcount = dtcount; in PCFactorSetDropTolerance_Factor()
279 …ASCIIPrintf(viewer, " max nonzeros per row %" PetscInt_FMT "\n", (PetscInt)factor->info.dtcount)); in PCView_Factor()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A Dpetscmat.pxi444 PetscReal usedt, dt, dtcol, dtcount
1148 cdef dtcount = options.pop('dtcount', None)
1149 if dtcount is not None:
1151 info.dtcount = <PetscReal>asInt(dtcount)
/petsc/src/binding/petsc4py/src/lib-petsc/
H A Dcustom.h249 info->dtcount = (PetscReal)PETSC_DEFAULT; in MatFactorInfoDefaults()
/petsc/include/
H A Dpetscmat.h1539 PetscReal dtcount; /* maximum nonzeros to be allowed per row */ member
/petsc/doc/manual/
H A Dksp.md790 PCFactorSetDropTolerance(PC pc,PetscReal dt,PetscReal dtcol,PetscInt dtcount);