Dip  0.92.4
DecompConstants.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_CONSTANTS_INCLUDED
14 #define DECOMP_CONSTANTS_INCLUDED
15 
16 #include "DecompTypes.h"
17 
18 const char DecompVersion[10] = "0.1";
19 const double DecompEpsilon = 1.0e-6;
20 
21 #ifdef __DECOMP_LP_CLP__
23 const double DecompInf = OsiClpInfinity;
24 #endif
25 
26 #ifdef __DECOMP_LP_CPX__
28 const double DecompInf = CPX_INFBOUND;
29 #endif
30 
41 
42 const char decompPhaseStr[5][20] = {"PHASE_INIT",
43  "PHASE_PRICE",
44  "PHASE_CUT",
45  "PHASE_DONE",
46  "PHASE_UNKNOWN"};
47 
51 
52 const char decompStatStr[3][20] = {"STAT_FEASIBLE",
53  "STAT_INFEASIBLE",
54  "STAT_UNKNOWN"};
55 
56 #endif
static const double OsiClpInfinity
decompPhase
const char DecompVersion[10]
decompAlgoType
decompStat
const double DecompEpsilon
Definition: Decomp.h:100
const char decompPhaseStr[5][20]
Definition: Decomp.h:128
const char decompStatStr[3][20]
Definition: Decomp.h:124