pub struct AlignmentCompositionDemo {
pub staged_states: Vec<i64>,
pub staged_indices: Vec<usize>,
pub staged_cost: i64,
pub staged_cells: u64,
pub staged_edges: u64,
pub alignment_score: i64,
pub alignment_steps: usize,
pub alignment_cells: u64,
pub alignment_edges: u64,
}Expand description
Joint evidence from composing staged dynamic programming and DTW alignment.
Fields§
§staged_states: Vec<i64>States selected by certified staged optimization.
staged_indices: Vec<usize>Stable state index selected in every stage.
staged_cost: i64Exact staged transition cost.
staged_cells: u64Bellman cells retained by staged optimization.
staged_edges: u64Staged transitions examined.
alignment_score: i64Exact DTW/edit alignment score.
alignment_steps: usizeNumber of stable operations in the retained alignment path.
alignment_cells: u64Prefix-grid cells retained by full-memory DTW.
alignment_edges: u64DTW predecessor edges examined.
Trait Implementations§
Source§impl Clone for AlignmentCompositionDemo
impl Clone for AlignmentCompositionDemo
Source§fn clone(&self) -> AlignmentCompositionDemo
fn clone(&self) -> AlignmentCompositionDemo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AlignmentCompositionDemo
impl Debug for AlignmentCompositionDemo
impl Eq for AlignmentCompositionDemo
Source§impl PartialEq for AlignmentCompositionDemo
impl PartialEq for AlignmentCompositionDemo
impl StructuralPartialEq for AlignmentCompositionDemo
Auto Trait Implementations§
impl Freeze for AlignmentCompositionDemo
impl RefUnwindSafe for AlignmentCompositionDemo
impl Send for AlignmentCompositionDemo
impl Sync for AlignmentCompositionDemo
impl Unpin for AlignmentCompositionDemo
impl UnsafeUnpin for AlignmentCompositionDemo
impl UnwindSafe for AlignmentCompositionDemo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more