Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 739 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 739 Bytes

An implementation of the simplex algorithm by Antonin Lenz and Léo Stefanesco

Is is written in rust, here is how to install it:

To Install Rust

Execute the following command, it's probably gonna be fine.

curl -s https://static.rust-lang.org/rustup.sh | sudo sh -s -- --channel=nightly

More info at rust-lang.org

The Simplex

Usage :

toto [--bland] [--latex] file.lp

There are two heuristics for the choice of the entering variable: Bland's rule (which terminates), and choosing the one with the greatest coefficient, which seems to be faster.

Note: In the PDF output, the name of the variables might not be the same as those in the input program and x_0 is the constant factor.