2 Commits
Author SHA1 Message Date
swaits 7f623d5740 chore: point repository at git.swaits.com
CI / rustfmt (push) Waiting to run
CI / clippy --all-features (push) Waiting to run
CI / test (default) (push) Waiting to run
CI / test (parallel) (push) Waiting to run
CI / test (serde) (push) Waiting to run
CI / test (serde,parallel) (push) Waiting to run
CI / cargo doc (push) Waiting to run
CI / minimum supported Rust version (1.85) (push) Waiting to run
CI / fuzz smoke (clamp_to_bounds) (push) Waiting to run
CI / fuzz smoke (crowding_distance) (push) Waiting to run
CI / fuzz smoke (hypervolume_2d) (push) Waiting to run
CI / fuzz smoke (non_dominated_sort) (push) Waiting to run
CI / fuzz smoke (pareto_archive) (push) Waiting to run
CI / fuzz smoke (pareto_compare) (push) Waiting to run
CI / fuzz smoke (sbx_polymut) (push) Waiting to run
CI / fuzz smoke (spacing) (push) Waiting to run
Docs / Build mdbook (push) Waiting to run
Docs / Deploy to GitHub Pages (push) Blocked by required conditions
2026-08-31 17:19:15 -06:00
swaits 16e9f732b1 chore: cargo fmt 2026-05-14 14:41:37 -06:00
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ authors = ["Stephen Waits <steve@waits.net>"]
description = "A practical Rust toolkit for heuristic single-, multi-, and many-objective optimization."
license = "MIT"
readme = "README.md"
repository = "https://github.com/swaits/heuropt"
repository = "https://git.swaits.com/swaits/heuropt"
homepage = "https://github.com/swaits/heuropt"
documentation = "https://docs.rs/heuropt"
keywords = ["optimization", "evolutionary", "nsga", "pareto", "moead"]
+1 -2
View File
@@ -42,7 +42,6 @@ library_benchmark_group!(
// (`Ir`) only, so callgrind's cache simulation is pure overhead here —
// disabling it roughly halves each profiling run.
main!(
config = LibraryBenchmarkConfig::default()
.tool(Callgrind::with_args(["--cache-sim=no"])),
config = LibraryBenchmarkConfig::default().tool(Callgrind::with_args(["--cache-sim=no"])),
library_benchmark_groups = compare_group
);