DrawRegisterDynamic

Adds a method to the Krylov subspace solver package.

Synopsis

DrawRegisterDynamic(char *name_solver,char *path,char *name_create,int (*routine_create)(Draw))
Not Collective

Input Parameters

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

Notes

DrawRegisterDynamic() may be called multiple times to add several user-defined solvers.

If dynamic libraries are used, then the fourth input argument (routine_create) is ignored.

Sample usage

   DrawRegisterDynamic("my_draw_type",/home/username/my_lib/lib/libO/solaris/mylib.a,
               "MyDrawCreate",MyDrawCreate);

Then, your solver can be chosen with the procedural interface via

    DrawSetType(ksp,"my_draw_type")
or at runtime via the option
    -draw_type my_draw_type

Keywords

KSP, register

See Also

DrawRegisterAll(), DrawRegisterDestroy()

Level:developer
Location:src/sys/src/draw/interface/drawreg.c
Graphics (Draw) Index
Table of Contents