OBOE 0.1
ExitCode.h
Go to the documentation of this file.
00001 // Copyright (c) 2004-2007 University of Geneva, HEC, Logilab
00002 //
00003 // OBOE is published under the Common Public License.
00004 //
00005 // Authors :
00006 // The OBOE team
00007 //
00008 
00009 #ifndef EXIT_CODE_H
00010 #define EXIT_CODE_H
00011 
00012 namespace Accpm {
00013 
00014   enum ExitCode { LOCSET_EMPTY = -5,
00015           CONVEXITY_FAILURE = -4,
00016           LA_ERROR = -3,
00017           CHOLESKY_FAILURE = -2,
00018           UNKNOWN = -1, 
00019           ITERATING = 0, 
00020           RELATIVE_GAP_REACHED = 2, 
00021           USER_STOP = 3,
00022           MAX_OUTER_ITERATIONS = 4};
00023 }
00024 
00025 #endif