EPSRegisterDynamic(char *name_solver,char *path,char *name_create,PetscErrorCode (*routine_create)(EPS))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 the solver context | |
routine_create | - routine to create the solver context |
If dynamic libraries are used, then the fourth input argument (routine_create) is ignored.
EPSRegisterDynamic("my_solver",/home/username/my_lib/lib/libO/solaris/mylib.a, "MySolverCreate",MySolverCreate);
Then, your solver can be chosen with the procedural interface via
EPSSetType(eps,"my_solver")or at runtime via the option
-eps_type my_solver
Environmental variables such as ${PETSC_ARCH}, ${PETSC_DIR}, ${PETSC_LIB_DIR}, and others of the form ${any_environmental_variable} occuring in pathname will be replaced with appropriate values.
Location: src/eps/interface/basic.c
Index of all EPS routines
Table of Contents for all manual pages
Index of all manual pages