globalsearch 0.2.0

Global optimization with scatter search and local NLP solvers written in Rust using argmin
Documentation
1
2
3
4
5
6
7
8
9
use std::env;

fn main() {
    if env::var("CARGO_FEATURE_RAYON").is_ok() {
        println!(
            "cargo:warning=[Performance Notice] The 'rayon' feature is enabled. In debug builds or low workload scenarios, the overhead of thread management might reduce performance. For production builds, consider benchmarking with and without 'rayon'."
        );
    }
}