/usr/src/RPM/BUILD/CoinBlis-0.93.5/Blis/src/BlisMessage.h
Go to the documentation of this file.
00001 /*===========================================================================*
00002  * This file is part of the BiCePS Linear Integer Solver (BLIS).             *
00003  *                                                                           *
00004  * BLIS is distributed under the Eclipse Public License as part of the       *
00005  * COIN-OR repository (http://www.coin-or.org).                              *
00006  *                                                                           *
00007  * Authors:                                                                  *
00008  *                                                                           *
00009  *          Yan Xu, Lehigh University                                        *
00010  *          Ted Ralphs, Lehigh University                                    *
00011  *                                                                           *
00012  * Conceptual Design:                                                        *
00013  *                                                                           *
00014  *          Yan Xu, Lehigh University                                        *
00015  *          Ted Ralphs, Lehigh University                                    *
00016  *          Laszlo Ladanyi, IBM T.J. Watson Research Center                  *
00017  *          Matthew Saltzman, Clemson University                             *
00018  *                                                                           * 
00019  *                                                                           *
00020  * Copyright (C) 2001-2013, Lehigh University, Yan Xu, and Ted Ralphs.       *
00021  * All Rights Reserved.                                                      *
00022  *===========================================================================*/
00023 
00024 #ifndef BlisMessage_H_
00025 #define BlisMessage_H_
00026 
00027 //#############################################################################
00028 
00029 #if defined(_MSC_VER)
00030 // Turn off compiler warning about long names
00031 #  pragma warning(disable:4786)
00032 #endif
00033 
00035 #include "CoinMessageHandler.hpp"
00036 
00037 //#############################################################################
00038 
00039 enum BLIS_Message
00040 {
00041     BLIS_CUTOFF_INC,
00042     BLIS_CUT_STAT_FINAL,
00043     BLIS_CUT_STAT_NODE,
00044     BLIS_GAP_NO,
00045     BLIS_GAP_YES,
00046     BLIS_HEUR_BEFORE_ROOT,
00047     BLIS_HEUR_STAT_FINAL,
00048     BLIS_HEUR_STAT_NODE,
00049     BLIS_ROOT_PROCESS,
00050     BLIS_ROOT_TIME,
00051     BLIS_W_LP,
00053     BLIS_DUMMY_END
00054 };
00055 
00056 //#############################################################################
00057 
00058 class BlisMessage : public CoinMessages 
00059 {
00060 public:
00061     
00065     BlisMessage(Language language=us_en);
00067 };
00068 
00069 //#############################################################################
00070 
00071 #endif