Skip to main content

Return the solution for each iteration using Dual Simplex (2022)

Answered

Comments

1 comment

  • Mario Ruthmair
    Gurobi Staff Gurobi Staff

    Hi,

    No, unfortunately there is no way to access intermediate simplex solutions during a callback. In the SIMPLEX callback you can only retrieve current objective value, iteration, and infeasibilities.

    As a workaround, you could set parameter IterationLimit=1, and iteratively call optimize() (that ends after a single simplex iteration) and retrieve the according solution.

    Best regards,
    Mario

    0

Please sign in to leave a comment.