type_stat.h
Go to the documentation of this file.
30/*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
43 SCIP_STATUS_USERINTERRUPT = 1, /**< the user interrupted the solving process (by pressing CTRL-C) */
44 SCIP_STATUS_NODELIMIT = 2, /**< the solving process was interrupted because the node limit was reached */
45 SCIP_STATUS_TOTALNODELIMIT = 3, /**< the solving process was interrupted because the total node limit was
48 SCIP_STATUS_STALLNODELIMIT = 4, /**< the solving process was interrupted because the stalling node limit was
51 SCIP_STATUS_TIMELIMIT = 5, /**< the solving process was interrupted because the time limit was reached */
52 SCIP_STATUS_MEMLIMIT = 6, /**< the solving process was interrupted because the memory limit was reached */
53 SCIP_STATUS_GAPLIMIT = 7, /**< the solving process was interrupted because the gap limit was reached */
54 SCIP_STATUS_PRIMALLIMIT = 16, /**< the solving process was interrupted because the primal limit was reached */
55 SCIP_STATUS_DUALLIMIT = 17, /**< the solving process was interrupted because the dual limit was reached */
56 SCIP_STATUS_SOLLIMIT = 8, /**< the solving process was interrupted because the solution limit was reached */
57 SCIP_STATUS_BESTSOLLIMIT = 9, /**< the solving process was interrupted because the solution improvement limit
60 SCIP_STATUS_RESTARTLIMIT = 10, /**< the solving process was interrupted because the restart limit was reached */
61 SCIP_STATUS_OPTIMAL = 11, /**< the problem was solved to optimality, an optimal solution is available */
66};
Definition: struct_stat.h:60