anergictcell / hpo

Rust library for the Human Phenotype Ontology
6 stars 1 forks source link

Use SmallVec for HpoGroup #35

Closed anergictcell closed 1 year ago

anergictcell commented 1 year ago

Switch from Vec to SmallVec for HpoGroup structs used to store parent and child terms of HPOs. Most terms have very few parents, so having a stack-allocated SmallVec improves performance.