Initializing help system before first use

XPRS_nml_destroy

XPRS_nml_destroy


Purpose
Destroys a namelist and frees any memory associated with it. Note you need only destroy namelists created by XPRS_nml_destroy - those returned by XPRSgetnamelistobject are automatically destroyed when you destroy the problem object.
Synopsis
int XPRS_CC XPRS_nml_destroy(XPRSnamelist nml);
Argument
nml 
The namelist to be destroyed.
Example
XPRSnamelist mylist;
XPRS_nml_create(&mylist);
...
XPRS_nml_destroy(&mylist);
Related topics