dsa64 0.1.2

Data structures for high-performance computing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # dsa64
//!
//! 64-byte aligned data structures backed by `Vec64` for SIMD-friendly
//! memory layout. Designed for high-performance analytics workloads
//! where cache alignment matters.

pub mod binary_heap;
pub mod dag;

pub use binary_heap::{BinaryHeap64, HeapOrder};
pub use dag::{CycleError, Dag};