summaryrefslogtreecommitdiff
path: root/newstructure/thirdparty/linux/include/coin/CbcMessage.hpp
diff options
context:
space:
mode:
authorHarpreet2016-09-03 00:36:51 +0530
committerHarpreet2016-09-03 00:36:51 +0530
commita0d9443af147e949c1e6a01ac24749d12593ec5b (patch)
tree1a1955c5482ae608fd7f618b06f4ecc6a0d39a23 /newstructure/thirdparty/linux/include/coin/CbcMessage.hpp
parent4b64cf486f5c999fd8167758cae27839f3b50848 (diff)
downloadFOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.tar.gz
FOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.tar.bz2
FOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.zip
cbcintlinprog added
Diffstat (limited to 'newstructure/thirdparty/linux/include/coin/CbcMessage.hpp')
-rw-r--r--newstructure/thirdparty/linux/include/coin/CbcMessage.hpp94
1 files changed, 0 insertions, 94 deletions
diff --git a/newstructure/thirdparty/linux/include/coin/CbcMessage.hpp b/newstructure/thirdparty/linux/include/coin/CbcMessage.hpp
deleted file mode 100644
index 50690cf..0000000
--- a/newstructure/thirdparty/linux/include/coin/CbcMessage.hpp
+++ /dev/null
@@ -1,94 +0,0 @@
-/* $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
-