Dip-All  0.91.0
GAP_Status.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, Lehigh University //
8 // //
9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs//
10 // All Rights Reserved. //
11 //===========================================================================//
12 
13 #ifndef GAP_STATUS_INCLUDED
14 #define GAP_STATUS_INCLUDED
15 
16 //===========================================================================//
17 #include <string>
18 //===========================================================================//
19 //---
20 //--- return codes
21 //---
22 //===========================================================================//
23 enum GAPStatus {
25  GAPStatusError, //general error
26  GAPStatusFileIO, //error in i/o
27  GAPStatusOutOfMemory //out of memory
28 };
29 const std::string GAPStatusStr[4] = {
30  "GAPStatusOk",
31  "GAPStatusError",
32  "GAPStatusFileIO",
33  "GAPStatusOutOfMemory"
34 };
35 #endif
GAPStatus
Definition: GAP_Status.h:23
const std::string GAPStatusStr[4]
Definition: GAP_Status.h:29