Suppress suffix messages

Dear all.

How can I suppress messages like the ones below from showing up in my terminal? I’m using Linux btw.

suffix feaserror OUT;
suffix opterror OUT;
suffix numfcevals OUT;
suffix numiters OUT;

Best,
Walton.

Each time that the solver creates a new suffix, one of these messages appears. The message is just the suffix command that was executed.

To suppress these messages, define the suffixes before calling the solver. In this case, you would add the following statements before the first solve command:

suffix feaserror OUT;
suffix opterror OUT;
suffix numfcevals OUT;
suffix numiters OUT;

This will suppress the messages for all solves until there is a reset or the AMPL process exits.

Hi, Bob!

Thank you very much for your help!

Best,
Walton.