sigalign-core 0.2.1

A core crate for sigalign
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::regulator::AlignmentRegulator;

mod workspace;
use workspace::LocalWorkspace;

mod local_unlimited;
pub use local_unlimited::LocalAligner;
mod local_with_limit;
pub use local_with_limit::LocalWithLimitAligner;

mod switch_modes;