Build and solve an MPS model:
cargo run --release -- model.mpsUsage:
micromip <model.mps> [--vbc <tree.vbc>] [--time-limit <seconds>]
--vbc <tree.vbc>writes the branch-and-bound tree in VBC format.--time-limit <seconds>sets a non-negative solve time limit in seconds.- Options are optional and may appear in either order.
Examples:
micromip model.mps --time-limit 30
micromip model.mps --vbc tree.vbc --time-limit 30