Initializing help system before first use

problem.setmessagestatus

Purpose
Manages suppression of messages.
Synopsis
problem.setmessagestatus(msgcode, status)
Arguments
msgcode 
The id number of the message. Refer to the Section 9 of the Xpress Optimizer reference manual for a list of possible message numbers.
status 
Nonzero if the message is not suppressed; 0 otherwise.
Example
Attempting to optimize a problem that has no matrix loaded gives error 91. The following code uses setmessagestatus to suppress the error message:
p = xpress.problem()
p.setmessagestatus(91, 0)
p.lpoptimize("")
Further information
If a message is suppressed globally then the message can only be enabled for any problem once the global suppression is removed with a call to setmessagestatus with prob passed as None.
Related topics

© 2001-2024 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.