naginterfaces.library.opt.nlp2_option_integer_set¶
- naginterfaces.library.opt.nlp2_option_integer_set(string, ivalue, comm, io_manager=None)[source]¶
nlp2_option_integer_set
may be used to supply individual int options tonlp2_solve()
. The initialization functionnlp2_init()
must have been called before callingnlp2_option_integer_set
.For full information please refer to the NAG Library document for e04wg
https://support.nag.com/numeric/nl/nagdoc_30.2/flhtml/e04/e04wgf.html
- Parameters
- stringstr
A single valid keyword of an int option (as described in Other Parameters for nlp2_solve).
- ivalueint
An int value associated with the keyword in .
- commdict, communication object, modified in place
Communication structure.
This argument must have been initialized by a prior call to
nlp2_init()
.- io_managerFileObjManager, optional
Manager for I/O in this routine.
- Raises
- NagValueError
- (errno )
The initialization function
nlp2_init()
has not been called.- (errno )
The supplied option is invalid. Check that the keywords are neither ambiguous nor misspelt. The option string is and .
- Notes
nlp2_option_integer_set
may be used to supply values for int options tonlp2_solve()
. It is only necessary to callnlp2_option_integer_set
for those arguments whose values are to be different from their default values. One call tonlp2_option_integer_set
sets one argument value.Each int option is defined by a single character string in and the corresponding value in .
Option settings are preserved following a call to
nlp2_solve()
and so the keyword ‘Defaults’ is provided to allow you to reset all the options to their default values before a subsequent call tonlp2_solve()
.A complete list of options, their abbreviations, synonyms and default values is given in Other Parameters for nlp2_solve.