CPXXparamsetdel and CPXparamsetdel
The routine
CPXXparamsetdel/CPXparamsetdel
deletes a parameter from a parameter set.
int CPXXparamsetdel( CPXCENVptr env, CPXPARAMSETptr ps, int whichparam)
int CPXparamsetdel( CPXCENVptr env, CPXPARAMSETptr ps, int whichparam)
Description
The routine
CPXXparamsetdel/CPXparamsetdel
deletes the parameter whichparam from the
parameter set ps.
The CPLEX Parameters Reference Manual provides a list of parameters with their types, options, and default values.
Arguments
- env
-
A pointer to the CPLEX environment as returned by
CPXXopenCPLEX/CPXopenCPLEX. - ps
-
A pointer to the CPLEX parameter set as returned by
CPXXparamsetcreate/CPXparamsetcreateusingenvas the environment. - whichparam
- The symbolic constant (or reference number) of the parameter to delete.
Return
The routine returns 0 (zero) if successful and nonzero if an error occurs.Example
status = CPXparamsetdel (env, ps, CPXPARAM_Advance);
See also Parameter sets and Examples for multiobjective optimization in the CPLEX User's Manual.