relp-bin

Crates.iorelp-bin
lib.rsrelp-bin
version0.0.6
sourcesrc
created_at2021-07-27 06:01:08.417915
updated_at2022-01-06 14:46:59.937164
descriptionAn exact linear program solver written in Rust
homepage
repositoryhttps://github.com/vandenheuvel/relp-bin
max_upload_size
id427797
size66,405,064
Bram van den Heuvel (vandenheuvel)

documentation

README

crate

Relp

An exact linear program solver written in Rust.

Usage

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
Commit count: 14

cargo fmt