Dip  0.92.4
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 // 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, and Ted Ralphs//
12 // All Rights Reserved. //
13 //===========================================================================//
14 
15 #ifndef GAP_STATUS_INCLUDED
16 #define GAP_STATUS_INCLUDED
17 
18 //===========================================================================//
19 #include <string>
20 //===========================================================================//
21 //---
22 //--- return codes
23 //---
24 //===========================================================================//
25 enum GAPStatus {
27  GAPStatusError, //general error
28  GAPStatusFileIO, //error in i/o
29  GAPStatusOutOfMemory //out of memory
30 };
31 const std::string GAPStatusStr[4] = {
32  "GAPStatusOk",
33  "GAPStatusError",
34  "GAPStatusFileIO",
35  "GAPStatusOutOfMemory"
36 };
37 #endif
GAPStatus
Definition: GAP_Status.h:25
const std::string GAPStatusStr[4]
Definition: GAP_Status.h:31