sigalign-core 0.2.1

A core crate for sigalign
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(unused_imports)]

// Length Checker
mod query_length_checker;
pub use query_length_checker::{QueryLengthChecker, AllocationStrategy};

// Default allocation strategy implementation
mod allocation_strategy;
pub use allocation_strategy::{DefaultLinearStrategy, DefaultDoublingStrategy};

// Wave Front
mod wave_front_buffer;
pub use wave_front_buffer::WaveFrontBuffer;