Dip  0.92.4
DecompPortable.h
Go to the documentation of this file.
1 //===========================================================================//
2 // This file is part of the Decomp Solver Framework. //
3 // //
4 // Decomp is distributed under the Common Public License as part of the //
5 // COIN-OR repository (http://www.coin-or.org). //
6 // //
7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) //
8 // //
9 // Copyright (C) 2002-2007, Lehigh University, Matthew Galati, and Ted Ralphs//
10 // All Rights Reserved. //
11 //===========================================================================//
12 
13 #ifndef DECOMP_PORTABLE_INCLUDED
14 #define DECOMP_PORTABLE_INCLUDED
15 
16 #include <cstdio>
17 #include <cassert>
18 #include <vector>
19 #include <list>
20 #include <iostream>
21 #include <fstream>
22 #include <iomanip>
23 #include <numeric>
24 #include <sstream>
25 #include <algorithm>
26 #include <functional>
27 #include <string>
28 #include <map>
29 using namespace std;
30 
31 #include "CoinPackedVector.hpp"
32 #include "CoinPackedMatrix.hpp"
33 
34 #include "UtilMacros.h"
35 
36 #include "DecompConfig.h"
37 #include "DecompConstants.h"
38 #include "DecompTypes.h"
39 
40 #ifdef MODE_DEBUG_FULL
41 #define DECOMP_TEST_DUPINDEX true
42 #else
43 #define DECOMP_TEST_DUPINDEX false
44 #endif
45 
46 #endif