[package]
edition = "2021"
rust-version = "1.85"
name = "givp"
version = "1.0.0"
authors = ["Arnaldo Mendes Pires Junior <arnaldo_200@live.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GRASP-ILS-VND with Path Relinking metaheuristic for continuous black-box optimization"
readme = "README.md"
keywords = [
"optimization",
"metaheuristic",
"grasp",
"vnd",
"path-relinking",
]
categories = [
"algorithms",
"science",
"mathematics",
]
license = "MIT"
repository = "https://github.com/Arnime/grasp_ils_vnd_pr"
[features]
default = []
serde = [
"dep:serde",
"dep:serde_json",
]
[lib]
name = "givp"
path = "src/lib.rs"
[[bin]]
name = "givp"
path = "src/bin/givp.rs"
[[example]]
name = "fuzz_givp"
path = "fuzz/fuzz_givp.rs"
[[example]]
name = "run_literature_comparison"
path = "examples/run_literature_comparison.rs"
[[example]]
name = "seed_sweep"
path = "examples/seed_sweep.rs"
[[test]]
name = "test_cli_bin"
path = "tests/test_cli_bin.rs"
[[test]]
name = "test_givp"
path = "tests/test_givp.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.rand]
version = "0.9"
[dependencies.rand_chacha]
version = "0.9"
[dependencies.rayon]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.serde_json]
version = "1"
optional = true
[dependencies.thiserror]
version = "2"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1"