| 249baae7 | 27-Nov-2020 |
Barry Smith <bsmith@mcs.anl.gov> |
Clarify integers set with to ISCreateBlock() and ISBlockSetIndices() in manual pages.
Add additional IS manual page links.
Commit-type: docs /spend 15m Reported-by: Kyle B.Thompson
Development Too
Clarify integers set with to ISCreateBlock() and ISBlockSetIndices() in manual pages.
Add additional IS manual page links.
Commit-type: docs /spend 15m Reported-by: Kyle B.Thompson
Development Tools: Vim, Emacs, Eclipse
show more ...
|
| 6ad39164 | 28-Nov-2020 |
Barry Smith <bsmith@mcs.anl.gov> |
Remove ierr = VecSetInf(ksp->vec_sol);CHKERRQ(ierr); from KSPSetUp_Chebyshev() since ksp->vec_sol may not yet exist and it is not needed since VecSetInf(ksp->vec_sol) is set in KSPSolve() just before
Remove ierr = VecSetInf(ksp->vec_sol);CHKERRQ(ierr); from KSPSetUp_Chebyshev() since ksp->vec_sol may not yet exist and it is not needed since VecSetInf(ksp->vec_sol) is set in KSPSolve() just before the actual solve if ksp->reason = KSP_DIVERGED_PC_FAILED
VecSetInf() should use VecGetArrayWrite()
Note: It is not clear that setting VecSetInf(ksp->vec_sol) in KSPSolve() is useful unless the initial guess is marked as non-zero since ksp->vec_sol initial value is otherwise ignored.
Commit-type: error-checking, bug-fix /spend 30m Reported-by: Martin Diehl <martin.diehl@kuleuven.be>
show more ...
|