DecompPortable.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef DECOMP_PORTABLE_INCLUDED
00014 #define DECOMP_PORTABLE_INCLUDED
00015
00016 #include <cstdio>
00017 #include <cassert>
00018 #include <vector>
00019 #include <list>
00020 #include <iostream>
00021 #include <fstream>
00022 #include <iomanip>
00023 #include <numeric>
00024 #include <sstream>
00025 #include <algorithm>
00026 #include <functional>
00027 #include <string>
00028 #include <map>
00029 using namespace std;
00030
00031 #include "CoinPackedVector.hpp"
00032 #include "CoinPackedMatrix.hpp"
00033
00034 #include "UtilMacros.h"
00035
00036 #include "DecompConfig.h"
00037 #include "DecompConstants.h"
00038 #include "DecompTypes.h"
00039
00040 #ifdef MODE_DEBUG_FULL
00041 #define DECOMP_TEST_DUPINDEX true
00042 #else
00043 #define DECOMP_TEST_DUPINDEX false
00044 #endif
00045
00046 #endif