Scippy

SCIP

Solving Constraint Integer Programs

message.h File Reference

Detailed Description

message output methods

Author
Tobias Achterberg

Because the message functions are implemented as defines with more than one function call, they shouldn't be used as a single statement like in: if( error ) SCIPerrorMessage("an error occured"); because this would produce the following macro extension: if( error ) printf(("[%s:%d] ERROR: ", FILE, LINE); printf(("an error occured"); Instead, they should be protected with brackets: if( error ) { SCIPerrorMessage("an error occured"); }

Definition in file message.h.

Go to the source code of this file.