Bonmin  1.7
BonOAMessages.hpp
Go to the documentation of this file.
00001 // (C) Copyright Carnegie Mellon University 2006
00002 // All Rights Reserved.
00003 // This code is published under the Common Public License.
00004 //
00005 // Authors :
00006 // P. Bonami, Carnegie Mellon University
00007 //
00008 // Date :  07/15/2005
00009 
00010 #ifndef OaMessages_H
00011 #define OaMessages_H
00012 #include "CoinMessage.hpp"
00013 
00014 namespace Bonmin
00015 {
00016   enum OA_Message{
00017     FEASIBLE_NLP,
00018     INFEASIBLE_NLP,
00019     UPDATE_UB,
00020     SOLVED_LOCAL_SEARCH,
00021     LOCAL_SEARCH_ABORT,
00022     UPDATE_LB,
00023     ABORT,
00024     OASUCCESS,
00025     OAABORT,
00026     OA_STATS,
00027     LP_ERROR,
00028     PERIODIC_MSG,
00029     FP_DISTANCE,
00030     FP_MILP_VAL,
00031     FP_MAJOR_ITERATION,
00032     FP_MINOR_ITERATION,
00033     DUMMY_END
00034   };
00035 
00037   class OaMessages : public CoinMessages
00038   {
00039   public:
00040     OaMessages();
00041   };
00042 
00043 } //end namespace Bonmin
00044 #endif