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 occurred"); because this would produce the following macro extension: if( error ) printf(("[%s:%d] ERROR: ", FILE, LINE); printf(("an error occurred"); Instead, they should be protected with brackets: if( error ) { SCIPerrorMessage("an error occurred"); }

    Definition in file message.h.

    Go to the source code of this file.