23 Mar
2017
23 Mar
'17
2:28 p.m.
On 23/03/17 14:25, Buesing, Henrik wrote:
Dear Lawrence,
Thank you for the explanation! Setting
options_prefix=""
and controlling everything from the command line is totally fine for me.
Note that if you have more than one different solve, you should give each solve a different options_prefix, so that you can control each one separately: e.g. solve(a == L, ..., options_prefix="foo_") solve(b == C, ..., options_prefix="bar_") now -foo_ksp_type cg -bar_ksp_type gmres Sets the KSP type of the first solve to be CG, but the second to be GMRES. Lawrence