psg_suppress_message = true/false
This is the MATLAB Workspace global logical parameter that allows to suppress PSG Solver’s messages during the solving process (except PSG Warnings and Errors).
By default psg_suppress_message = false and PSG messages are generated during solving the problem.
If psg_suppress_message = true (in Workspace), no messages are generated during solving the problem.
It is possible to turn on messages by typing psg_suppress_message = false in Workspace (or in program).
Notice that psg_supress_message also works in local function’s space.
The following priorities for psg_suppress_message definition are used:
1. | If psg_suppress_message is defined in a function (true/false), this value is accepted. In this case, the global workspace definition of psg_suppress_message is ignored. |
2. | If psg_supress_message is not defined locally (in function), the global value is valid (if it was defined). |
3. | If psg_suppress_message is not defined globally or locally by default psg_suppress_message=false. |