00001 //===========================================================================// 00002 // This file is part of the Decomp Solver Framework. // 00003 // // 00004 // Decomp is distributed under the Common Public License as part of the // 00005 // COIN-OR repository (http://www.coin-or.org). // 00006 // // 00007 // Author: Matthew Galati, Lehigh University // 00008 // // 00009 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// 00010 // All Rights Reserved. // 00011 //===========================================================================// 00012 00013 #ifndef GAP_STATUS_INCLUDED 00014 #define GAP_STATUS_INCLUDED 00015 00016 //===========================================================================// 00017 #include <string> 00018 //===========================================================================// 00019 //--- 00020 //--- return codes 00021 //--- 00022 //===========================================================================// 00023 enum GAPStatus { 00024 GAPStatusOk = 0, 00025 GAPStatusError, //general error 00026 GAPStatusFileIO, //error in i/o 00027 GAPStatusOutOfMemory //out of memory 00028 }; 00029 const std::string GAPStatusStr[4] = { 00030 "GAPStatusOk", 00031 "GAPStatusError", 00032 "GAPStatusFileIO", 00033 "GAPStatusOutOfMemory" 00034 }; 00035 #endif