ContentsIndexHome
PreviousUpNext
IAimmsSolverConnection::MessagePriorityLevel Enumeration

The MessagePriorityLevel enumeration describes the possible priority levels for solver messages passed to AIMMS.

enum MessagePriorityLevel {
  PRIO_ALWAYS,
  PRIO_ERROR,
  PRIO_WARNING,
  PRIO_REMARK,
  PRIO_DETAIL
};
Members 
Description 
PRIO_ALWAYS 
Priority level always. 
PRIO_ERROR 
Priority level error. 
PRIO_WARNING 
Priority level warning. 
PRIO_REMARK 
Priority level remark. 
PRIO_DETAIL 
Priority level detail. 

With the PassMessage method messages can be passed to AIMMS. The general solvers option 'Solver window messages' determines which of those messages are printed in the AIMMS message window. 

Possible values of general solvers option 'Solver window messages' are:

  • Never: print messages with priority PRIO_ALWAYS;
  • Error: print messages with priority PRIO_ALWAYS or PRIO_ERROR;
  • Warning: print messages with priority PRIO_ALWAYS, PRIO_ERROR or PRIO_WARNING;
  • Remark : print messages with priority PRIO_ALWAYS, PRIO_ERROR, PRIO_WARNING or PRIO_REMARK;
  • All : print all messages passed with PassMessage.

Copyright © 1993–2016 by AIMMS B.V. All rights reserved.