pub trait Deprojectivize {
    fn deprojectivize(&self, sentence: &mut Sentence) -> Result<(), Error>;
}
Expand description

Graph deprojectivizer.

Required Methods

Deprojectivize a graph

This method rewrites a projective graph into a non-projective graph. Depending on the (de)projectivizer, this could require additional information in dependency labels to guide the deprojectivization.

Implementors