Skip to main content

KappaExact

Answered

Comments

2 comments

  • Riley Clement
    Gurobi Staff Gurobi Staff

    Hi Matt,

    Is the model a LP?  It will need to be for KappaExact to be available since it requires a basis.  If it is a MILP then you could use:

    r = m.relax()
    r.params.OutputFlag=0
    r.optimize()
    kappa_exact_value = r.KappaExact

    - Riley

    0
  • Matthew Galati
    Curious
    First Comment

    Got it. The model is a MILP and I had not relaxed it. Thank you. 

    0

Please sign in to leave a comment.