pub struct IncrementalCorefAdapter;Expand description
Adapter to integrate IncrementalCorefResolver with cross-context system.
Connects the long-document incremental resolver with xCoRe’s cross-context cluster merging.
Implementations§
Source§impl IncrementalCorefAdapter
impl IncrementalCorefAdapter
Sourcepub fn windows_to_clusters(
windows: &[WindowOutput],
) -> HashMap<usize, Vec<LocalCluster>>
pub fn windows_to_clusters( windows: &[WindowOutput], ) -> HashMap<usize, Vec<LocalCluster>>
Convert incremental resolver output to local clusters for merging.
Each window is treated as a separate context.
Sourcepub fn clusters_to_chains(merged: &[MergedCluster]) -> Vec<CorefChain>
pub fn clusters_to_chains(merged: &[MergedCluster]) -> Vec<CorefChain>
Build final chains from merged clusters.
Auto Trait Implementations§
impl Freeze for IncrementalCorefAdapter
impl RefUnwindSafe for IncrementalCorefAdapter
impl Send for IncrementalCorefAdapter
impl Sync for IncrementalCorefAdapter
impl Unpin for IncrementalCorefAdapter
impl UnsafeUnpin for IncrementalCorefAdapter
impl UnwindSafe for IncrementalCorefAdapter
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
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more