Crates.io | or-tools |
lib.rs | or-tools |
version | 0.1.0 |
source | src |
created_at | 2023-11-13 14:23:22.486677 |
updated_at | 2023-11-13 14:23:22.486677 |
description | Unofficial Rust wrappers to the C++ library Google OR-Tools, open source software for combinatorial optimization |
homepage | https://github.com/ulagbulag/or-tools-rs |
repository | https://github.com/ulagbulag/or-tools-rs |
max_upload_size | |
id | 1033688 |
size | 30,232 |
or-tools
is a Rust library that binds to certain specific features of the Google Or-Tools C++ library.
This repository will dedicate itself to improve the library's content.
These include:
Please udjust your Rust compiler to version 1.73
or higher.
Your package manager may not support deployment on platforms marked as Supported
above.
For better maintenance, please let us know whether the other platforms support it.
Besides, you may claim us whether the specific platform should support it through Issues
.
cmake >= 3.18
Or-Tools C++
dlib-face-recognition
requires Or-Tools
to be installed. You can either provide a existing system-wide installation, or build it with this library.
cargo build --features build-native
cargo build
The C++ library Or-Tools
will be installed via or-tools-sys
when the build-native
feature flag is enabled.
For the build, this library uses cmake
, so please make sure to have cmake
.
The build-native
flag is disabled by default, offering increased build times.
dlib-face-recognition
includes a solver-all
feature flag enabled by default.
solver-all
will enable all kinds of supported open-source solvers.
The latest information about the solvers can be found here: https://github.com/google/or-tools/blob/stable/cmake/README.md#solvers-supported
The solver-all
flag can be disabled with cargo build --no-default-features
.
dlib-face-recognition
includes a solver-all-nonfree
feature flag that can be used with cargo build --features solver-all-nonfree
.
solver-all
will enable all kinds of supported solvers including GPL and/or proprietary ones.
The latest information about the solvers can be found here: https://github.com/google/or-tools/blob/stable/cmake/README.md#solvers-supported
For detailed instructions on embedding proprietary solvers, please follow to the link below:
The solver-all-nonfree
flag is disabled by default, offering increased build times.