All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
type_stat.h
Go to the documentation of this file.
21 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
34 SCIP_STATUS_USERINTERRUPT = 1, /**< the user interrupted the solving process (by pressing CTRL-C) */
35 SCIP_STATUS_NODELIMIT = 2, /**< the solving process was interrupted because the node limit was reached */
36 SCIP_STATUS_TOTALNODELIMIT = 3, /**< the solving process was interrupted because the total node limit was
39 SCIP_STATUS_STALLNODELIMIT = 4, /**< the solving process was interrupted because the stalling node limit was
42 SCIP_STATUS_TIMELIMIT = 5, /**< the solving process was interrupted because the time limit was reached */
43 SCIP_STATUS_MEMLIMIT = 6, /**< the solving process was interrupted because the memory limit was reached */
44 SCIP_STATUS_GAPLIMIT = 7, /**< the solving process was interrupted because the gap limit was reached */
45 SCIP_STATUS_SOLLIMIT = 8, /**< the solving process was interrupted because the solution limit was
48 SCIP_STATUS_BESTSOLLIMIT = 9, /**< the solving process was interrupted because the solution improvement limit
51 SCIP_STATUS_OPTIMAL = 10, /**< the problem was solved to optimality, an optimal solution is available */
|