Suppose that we want to remove the dynamical system entitled ``D4 Symmetric System''
which is defined in the file d4_def.c. To remove this:
1.
Edit the Makefile in your local models subdirectory. Delete the name of the file
which contains the dynamical system from the SOURCES_A
list. In our example, we would remove the line d4_def.c\ from the Makefile.
2.
Edit the file modellib_ds_def.h and
delete all references to the dynamical system you wish to remove. To remove the D4 Symmetric System,
delete the lines
extern int d4_init();
and
{2, "D4 Symmetric System", d4_init},
from the file.
3.
Remake modellib.a and dstool_u as explained in previous sections.