Hi,
My question is: is there a difference between a linear problem solved with LinearProblem() and the same linear problem solved with NonlinearProblem()?
If I pass
petsc_options = {"ksp_type": "preonly",
"pc_type": "lu",
"pc_factor_mat_solver_type": "mumps",
}
then both methods are equivalent. Am I correct?
Thanks.