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_OPTIMAL = 1, /**< the problem was solved to optimality, an optimal solution is available */
47 SCIP_STATUS_USERINTERRUPT = 10, /**< the user interrupted the solving process (SIGINT or SCIPinterruptSolve()) */
49 SCIP_STATUS_NODELIMIT = 20, /**< the solving process was interrupted because the node limit was reached */
50 SCIP_STATUS_TOTALNODELIMIT = 21, /**< the solving process was interrupted because the total node limit was
52 SCIP_STATUS_STALLNODELIMIT = 22, /**< the solving process was interrupted because the stalling node limit was
54 SCIP_STATUS_TIMELIMIT = 23, /**< the solving process was interrupted because the time limit was reached */
55 SCIP_STATUS_MEMLIMIT = 24, /**< the solving process was interrupted because the memory limit was reached */
56 SCIP_STATUS_GAPLIMIT = 25, /**< the solving process was interrupted because the gap limit was reached */
57 SCIP_STATUS_PRIMALLIMIT = 26, /**< the solving process was interrupted because the primal limit was reached */
58 SCIP_STATUS_DUALLIMIT = 27, /**< the solving process was interrupted because the dual limit was reached */
59 SCIP_STATUS_SOLLIMIT = 28, /**< the solving process was interrupted because the solution limit was reached */
60 SCIP_STATUS_BESTSOLLIMIT = 29, /**< the solving process was interrupted because the solution improvement limit
62 SCIP_STATUS_RESTARTLIMIT = 30, /**< the solving process was interrupted because the restart limit was reached */
Definition: struct_stat.h:62