[package]
edition = "2021"
rust-version = "1.82"
name = "metalforge"
version = "0.3.0"
authors = ["Francisco Parra <gran.huja@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "forge: a deterministic metaheuristic optimization substrate in Rust. Unified Problem/MultiProblem/Anneal traits; DDS, SCE-UA, DE, L-SHADE, L-SRTDE, PSO, CMA-ES, NSGA-II/III, SMS-EMOA, simulated annealing, parallel tempering and GLUE uncertainty; reproducible by seed; optional Rayon parallelism."
readme = "README.md"
keywords = [
"optimization",
"metaheuristics",
"evolutionary",
"nsga2",
"annealing",
]
categories = [
"algorithms",
"science",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/franciscoparrao/forge"
[features]
default = []
rayon = ["dep:rayon"]
[lib]
name = "forge_core"
path = "src/lib.rs"
[[example]]
name = "export_fronts"
path = "examples/export_fronts.rs"
[[test]]
name = "contracts"
path = "tests/contracts.rs"
[[test]]
name = "convergence"
path = "tests/convergence.rs"
[[test]]
name = "determinism"
path = "tests/determinism.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "multiobjective"
path = "tests/multiobjective.rs"
[dependencies.rayon]
version = "1"
optional = true
[dev-dependencies.criterion]
version = "0.5"