pub enum Algorithm {
Greedy,
Onepass,
Correcting,
}Expand description
Differencing algorithm selection.
Variants§
Greedy
Optimal under simple cost; O(|V|·|R|) time, O(|R|) space (Section 3).
Onepass
Linear time and near-constant space; concurrent scan of R and V (Section 4).
Correcting
Near-optimal, 1.5-pass; hash table with fingerprint checkpointing (Sections 7–8).
Trait Implementations§
impl Copy for Algorithm
impl Eq for Algorithm
impl StructuralPartialEq for Algorithm
Auto Trait Implementations§
impl Freeze for Algorithm
impl RefUnwindSafe for Algorithm
impl Send for Algorithm
impl Sync for Algorithm
impl Unpin for Algorithm
impl UnsafeUnpin for Algorithm
impl UnwindSafe for Algorithm
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