pub struct Propagation<C> { /* private fields */ }

Implementations§

Examples found in repository?
src/libpcp/search/mod.rs (lines 48-49)
45
46
47
48
49
50
51
pub fn one_solution_engine() -> Box<dyn SearchTreeVisitor<FDSpace>> {
  let search =
    OneSolution::<_, VectorStack<_>, FDSpace>::new(
    Propagation::new(
    Brancher::new(FirstSmallestVar, MiddleVal, BinarySplit)));
  Box::new(search)
}

Trait Implementations§

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.