Bonmin 1.4trunk
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     LP_ERROR,
00026     PERIODIC_MSG,
00027     FP_DISTANCE,
00028     FP_MILP_VAL,
00029     FP_MAJOR_ITERATION,
00030     FP_MINOR_ITERATION,
00031     DUMMY_END
00032   };
00033 
00035   class OaMessages : public CoinMessages
00036   {
00037   public:
00038     OaMessages();
00039   };
00040 
00041 } //end namespace Bonmin
00042 #endif