Skip to content

Commit ff6121f

Browse files
committed
add new conflict graph message and move other message to info
1 parent a51276e commit ff6121f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/CoinMessage.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@ static Coin_message us_english[] = {
6060
#endif
6161
{ COIN_GENERAL_INFO, 9, 1, "%s" },
6262
{ COIN_GENERAL_INFO2, 10, 2, "%s" },
63+
{ COIN_CGRAPH_INFO, 11, 1, "Conflict graph built in %.3f seconds, density: %.3f%%"},
64+
{ COIN_CGRAPH_FIX_VAR, 12, 1, "Fixing %d variables based on conflict analysis."},
6365
{ COIN_GENERAL_WARNING, 3007, 1, "%s" },
64-
{ COIN_CGRAPH_INFO, 3009, 1, "Conflict graph built in %.3f seconds, density: %.3f%%"},
6566
{ COIN_DUMMY_END, 999999, 0, "" }
6667
};
6768
// **** aiutami!

src/CoinMessage.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ enum COIN_Message {
6464
COIN_GENERAL_INFO2,
6565
COIN_GENERAL_WARNING,
6666
COIN_CGRAPH_INFO,
67+
COIN_CGRAPH_FIX_VAR,
6768
COIN_DUMMY_END
6869
};
6970

@@ -81,7 +82,7 @@ class COINUTILSLIB_EXPORT CoinMessage : public CoinMessages {
8182
/**@name Constructors etc */
8283
//@{
8384
/*! \brief Constructor
84-
85+
8586
Build a CoinMessages object and load it with the standard set of
8687
Coin messages.
8788
*/

0 commit comments

Comments
 (0)