Crates.io | relp-bin |
lib.rs | relp-bin |
version | 0.0.6 |
source | src |
created_at | 2021-07-27 06:01:08.417915 |
updated_at | 2022-01-06 14:46:59.937164 |
description | An exact linear program solver written in Rust |
homepage | |
repository | https://github.com/vandenheuvel/relp-bin |
max_upload_size | |
id | 427797 |
size | 66,405,064 |
An exact linear program solver written in Rust.
Compile the crate with:
cargo build --release
Make sure to include the --release
flag to disable (expensive) debug assertions.
You can then solve problems with:
target/release/relp-bin my_program.mps
For more options, use the --help
flag:
USAGE:
relp-bin [FLAGS] <problem-file>
ARGS:
<problem-file> File containing the problem description
FLAGS:
-h, --help Prints help information
--no-presolve Disable presolving
--no-scale Disable scaling
-V, --version Prints version information