diff options
author | Harpreet | 2016-09-03 00:34:27 +0530 |
---|---|---|
committer | Harpreet | 2016-09-03 00:34:27 +0530 |
commit | 4b64cf486f5c999fd8167758cae27839f3b50848 (patch) | |
tree | d9d06639fb7fa61aef59be0363655e4747105ec7 /newstructure/thirdparty/linux/include/coin/CbcMessage.hpp | |
parent | d19794fb80a271a4c885ed90f97cfc12baa012f2 (diff) | |
download | FOSSEE-Optim-toolbox-development-4b64cf486f5c999fd8167758cae27839f3b50848.tar.gz FOSSEE-Optim-toolbox-development-4b64cf486f5c999fd8167758cae27839f3b50848.tar.bz2 FOSSEE-Optim-toolbox-development-4b64cf486f5c999fd8167758cae27839f3b50848.zip |
Structure updated and intqpipopt files added
Diffstat (limited to 'newstructure/thirdparty/linux/include/coin/CbcMessage.hpp')
-rw-r--r-- | newstructure/thirdparty/linux/include/coin/CbcMessage.hpp | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/newstructure/thirdparty/linux/include/coin/CbcMessage.hpp b/newstructure/thirdparty/linux/include/coin/CbcMessage.hpp new file mode 100644 index 0000000..50690cf --- /dev/null +++ b/newstructure/thirdparty/linux/include/coin/CbcMessage.hpp @@ -0,0 +1,94 @@ +/* $Id: CbcMessage.hpp 1791 2012-06-08 15:15:10Z stefan $ */ +// Copyright (C) 2002, International Business Machines +// Corporation and others. All Rights Reserved. +// This code is licensed under the terms of the Eclipse Public License (EPL). + +#ifndef CbcMessage_H +#define CbcMessage_H + +#if defined(_MSC_VER) +// Turn off compiler warning about long names +# pragma warning(disable:4786) +#endif + +/** This deals with Cbc messages (as against Clp messages etc). + CoinMessageHandler.hpp is the general part of message handling. + All it has are enum's for the various messages. + CbcMessage.cpp has text in various languages. + + It is trivial to use the .hpp and .cpp file as a basis for + messages for other components. + */ + +#include "CoinMessageHandler.hpp" +enum CBC_Message { + CBC_END_GOOD, + CBC_MAXNODES, + CBC_MAXTIME, + CBC_MAXSOLS, + CBC_EVENT, + CBC_MAXITERS, + CBC_SOLUTION, + CBC_END_SOLUTION, + CBC_SOLUTION2, + CBC_END, + CBC_INFEAS, + CBC_STRONG, + CBC_SOLINDIVIDUAL, + CBC_INTEGERINCREMENT, + CBC_STATUS, + CBC_GAP, + CBC_ROUNDING, + CBC_TREE_SOL, + CBC_ROOT, + CBC_GENERATOR, + CBC_BRANCH, + CBC_STRONGSOL, + CBC_NOINT, + CBC_VUB_PASS, + CBC_VUB_END, + CBC_NOTFEAS1, + CBC_NOTFEAS2, + CBC_NOTFEAS3, + CBC_CUTOFF_WARNING1, + CBC_ITERATE_STRONG, + CBC_PRIORITY, + CBC_WARNING_STRONG, + CBC_START_SUB, + CBC_END_SUB, + CBC_THREAD_STATS, + CBC_CUTS_STATS, + CBC_STRONG_STATS, + CBC_UNBOUNDED, + CBC_OTHER_STATS, + CBC_HEURISTICS_OFF, + CBC_STATUS2, + CBC_FPUMP1, + CBC_FPUMP2, + CBC_STATUS3, + CBC_OTHER_STATS2, + CBC_RELAXED1, + CBC_RELAXED2, + CBC_RESTART, + CBC_GENERAL, + CBC_ROOT_DETAIL, +#ifndef NO_FATHOM_PRINT + CBC_FATHOM_CHANGE, +#endif + CBC_DUMMY_END +}; + +class CbcMessage : public CoinMessages { + +public: + + /**@name Constructors etc */ + //@{ + /** Constructor */ + CbcMessage(Language language = us_en); + //@} + +}; + +#endif + |