I’m just wondering whether there are any Julia packages that show:
- detailed simplex tableaux for each iteration of the simplex method required to solve a linear programming problem;
- detailed information about the branch and bound iterations required to find the optimal solution to an integer programming problem; and
- detailed transportation tableaux for each iteration of the UV method as well as the initial feasible tableau generated using Vogel’s approximation method.
Naturally, I’m happy for answers that just mention a package that does one of these things and not all three. I know that JuMP is able to show the final solution to linear programming, integer programming and transportation problems, but I was wondering whether there’s a package that also shows the intermediate steps and completed tableaux, which are potentially useful for education purposes.
Thanks for your time.