Skip to main content

gurobipy: Must callback be a function? Problem with Cython

Answered

Comments

2 comments

  • Official comment
    Simranjit Kaur
    • Gurobi Staff
    This post is more than three years old. Some information may not be up to date. For current information, please check the Gurobi Documentation or Knowledge Base. If you need more help, please create a new post in the community forum, or try Gurobot, our chatbot interface offering instant, expert-level support.
  • Simon Bowly
    • Gurobi Staff

    Hi Sebastian,

    If you have a callable that isn't a function, you can work around this particular limitation by using a lambda function as follows:

    import gurobipy as gp

    m = gp.Model()
    # where 'callback' is a callable taking two arguments
    m.optimize(lambda model, where: callback(model, where))

     

    0

Post is closed for comments.