Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hvy/hypervolume
https://github.com/hvy/hypervolume
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hvy/hypervolume
- Owner: hvy
- License: mit
- Created: 2020-12-31T02:10:31.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-03T12:22:25.000Z (almost 4 years ago)
- Last Synced: 2024-10-30T06:59:16.854Z (about 2 months ago)
- Language: Rust
- Size: 62.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hypervolume
A Rust library for computing hypervolumes.
Implements the WFG algorithm in "A fast way of calculating exact hypervolumes." Evolutionary Computation, IEEE Transactions on 16.1 (2012): 86-95.`, While, Lyndon, Lucas Bradstreet, and Luigi Barone.
```rust
let pts = vec![vec![0.3, 0.5], vec![0.6, 0.2], vec![0.8, 0.7]];
let ref_pt = vec![1.0, 1.0];
let hv_computed = hypervolume::compute(&pts, &ref_pt);
```