Dip 0.95.0
Loading...
Searching...
No Matches
config_default.h
Go to the documentation of this file.
1//===========================================================================//
2// This file is part of the DIP Solver Framework. //
3// //
4// DIP is distributed under the Eclipse Public License as part of the //
5// COIN-OR repository (http://www.coin-or.org). //
6// //
7// Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) //
8// Ted Ralphs, Lehigh University (ted@lehigh.edu) //
9// Jiadong Wang, Lehigh University (jiw408@lehigh.edu) //
10// //
11// Copyright (C) 2002-2019, Lehigh University, Matthew Galati, Ted Ralphs //
12// All Rights Reserved. //
13//===========================================================================//
14
15/* include the COIN-OR-wide system specific configure header */
16#include "configall_system.h"
17
18/* include the public project specific macros */
19#include "config_dip_default.h"
20
21/***************************************************************************/
22/* HERE DEFINE THE PROJECT SPECIFIC MACROS */
23/* These are only in effect in a setting that doesn't use configure */
24/***************************************************************************/
25
26/***************************************************************************/
27/* HERE DEFINE MS PRAGMAS TO DISABLE SOME WARNINGS */
28/***************************************************************************/
29
30#include "CoinPragma.hpp"
31
32#if defined(_MSC_VER)
33// warning C4290: C++ exception specification ignored except to indicate
34// a function is not __declspec(nothrow)
35# pragma warning(disable:4290)
36//warning C4996: 'std::xxx' was declared deprecated
37# pragma warning(disable:4996)
38#endif
39
40/***************************************************************************/
41/* HERE DEFINE THE CONFIGURATION SPECIFIC MACROS */
42/***************************************************************************/
43
44/* Define to 1 if the Cgl package is used */
45#define COIN_HAS_CGL 1
46
47/* Define to 1 if the CoinUtils package is used */
48#define COIN_HAS_COINUTILS 1
49
50/* Define to 1 if the Osi package is available */
51#define COIN_HAS_OSI 1
52
53/* Define to the debug sanity check level (0 is no test) */
54//#define COIN_DECOMP_CHECKLEVEL 0
55
56/* Define to the debug verbosity level (0 is no output) */
57//#define COIN_DECOMP_VERBOSITY 0
58
59