Scippy

GCG

Branch-and-Price & Column Generation for Everyone

type_pricingstatus.h File Reference

Detailed Description

type definitions for pricing status

Author
Christian Puchert

Definition in file type_pricingstatus.h.

Go to the source code of this file.

Typedefs

typedef enum GCG_PricingStatus GCG_PRICINGSTATUS
 

Enumerations

enum  GCG_PricingStatus {
  GCG_PRICINGSTATUS_UNKNOWN = 0,
  GCG_PRICINGSTATUS_NOTAPPLICABLE = 1,
  GCG_PRICINGSTATUS_SOLVERLIMIT = 2,
  GCG_PRICINGSTATUS_OPTIMAL = 3,
  GCG_PRICINGSTATUS_INFEASIBLE = 4,
  GCG_PRICINGSTATUS_UNBOUNDED = 5
}
 

Typedef Documentation

◆ GCG_PRICINGSTATUS

Definition at line 57 of file type_pricingstatus.h.

Enumeration Type Documentation

◆ GCG_PricingStatus

GCG pricing status

Enumerator
GCG_PRICINGSTATUS_UNKNOWN 

the pricing solver terminated with an unknown status; feasible columns might have been found, but it is not known whether the pricing problem has been solved to optimality

GCG_PRICINGSTATUS_NOTAPPLICABLE 

the pricing solver can not be applied on the pricing problem

GCG_PRICINGSTATUS_SOLVERLIMIT 

a solver specific limit was reached, and the solver can be called again

GCG_PRICINGSTATUS_OPTIMAL 

the pricing problem was solved to optimality, an optimal solution is available

GCG_PRICINGSTATUS_INFEASIBLE 

the problem was proven to be infeasible

GCG_PRICINGSTATUS_UNBOUNDED 

the problem was proven to be unbounded

Definition at line 44 of file type_pricingstatus.h.