sundials are of the form [slv][PbName][ls][prec]_[p]
sundials的例子都是[slv][PbName]_[ls]_[prec]_[p] 这样的形式命名的,
中括号里面就是每个模块
[slv]
identifies the solver (for cvode examples this is cv, while for fcvode examples, this is fcv);
[slv]部分表明了使用了什么求解器
[PbName]
identifies the problem;
问题的名称
[ls]
identifies the linear solver module used (for examples using fixed-point iteration for the
nonlinear system solver, non specifies that no linear solver was used);
[ls]表明使用了线性求解器,如果没有[ls],则表示没有使用线性求解器
[prec]
indicates the cvode preconditioner module used, bp for cvbandpre or bbd for cvbb dpre (only if applicable, for examples using a Krylov linear solver);
使用什么预调节器
[p]
indicates an example using the parallel vector module nvector parallel.
是否使用了并行计算向量模块