[package]
edition = "2024"
rust-version = "1.90"
name = "roma_lib"
version = "0.1.1"
authors = ["David Muñoz del Valle <tu@email.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust metaheuristics framework inspired by jMetal for optimization and experimentation."
homepage = "https://github.com/DRLKs/roma"
documentation = "https://docs.rs/roma_lib"
readme = "README.md"
keywords = [
"optimization",
"metaheuristics",
"evolutionary",
"genetic",
"nsga2",
]
categories = [
"algorithms",
"science",
"simulation",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/DRLKs/roma"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "roma_lib"
path = "src/lib.rs"
[[example]]
name = "experiment_hill_climbing_demo"
path = "examples/experiment_hill_climbing_demo.rs"
[[example]]
name = "experiment_parallel_vs_sequential"
path = "examples/experiment_parallel_vs_sequential.rs"
[[example]]
name = "internal_parallel_demo"
path = "examples/internal_parallel_demo.rs"
[[example]]
name = "knapsack_ga_demo"
path = "examples/knapsack_ga_demo.rs"
[[example]]
name = "knapsack_hc_demo"
path = "examples/knapsack_hc_demo.rs"
[[example]]
name = "knapsack_items_file"
path = "examples/knapsack_items_file/main.rs"
[[example]]
name = "knapsack_sa_benchmark"
path = "examples/knapsack_sa_benchmark.rs"
[[example]]
name = "mono_objective_experiment"
path = "examples/mono_objective_experiment.rs"
[[example]]
name = "zdt1_nsga2_demo"
path = "examples/zdt1_nsga2_demo.rs"
[[test]]
name = "experiment_integration_test"
path = "tests/experiment_integration_test.rs"
[[test]]
name = "genetic_algorithm_integration_test"
path = "tests/genetic_algorithm_integration_test.rs"
[[test]]
name = "hill_climbing_integration_test"
path = "tests/hill_climbing_integration_test.rs"
[[test]]
name = "html_observer_uses_problem_presentation_test"
path = "tests/html_observer_uses_problem_presentation_test.rs"
[[test]]
name = "new_metaheuristics_integration_test"
path = "tests/new_metaheuristics_integration_test.rs"
[[test]]
name = "nsga2_integration_test"
path = "tests/nsga2_integration_test.rs"
[[test]]
name = "observer_solution_presentation_integration_test"
path = "tests/observer_solution_presentation_integration_test.rs"
[[test]]
name = "problem_solution_format_defaults_test"
path = "tests/problem_solution_format_defaults_test.rs"
[[test]]
name = "pso_integration_test"
path = "tests/pso_integration_test.rs"
[[test]]
name = "simulated_annealing_integration_test"
path = "tests/simulated_annealing_integration_test.rs"
[[test]]
name = "tsp_integration_test"
path = "tests/tsp_integration_test.rs"