SNESRegister(char *name_solver,char *path,char *name_create,int (*routine_create)(SNES))Not collective
name_solver | - name of a new user-defined solver |
path | - path (either absolute or relative) the library containing this solver |
name_create | - name of routine to create method context |
routine_create | - routine to create method context |
If dynamic libraries are used, then the fourth input argument (routine_create) is ignored.
SNESRegister("my_solver",/home/username/my_lib/lib/libg/solaris/mylib.a, "MySolverCreate",MySolverCreate);
Then, your solver can be chosen with the procedural interface via
SNESSetType(snes,"my_solver")or at runtime via the option
-snes_type my_solver
Location: src/snes/interface/snes.c
SNES Index
Table of Contents