Struct dogs::tree_search::algo::greedy_pe::PEGreedy[][src]

pub struct PEGreedy<N, B, G, Tree> {
    pub manager: SearchManager<N, B>,
    // some fields omitted
}
Expand description

implements a partial expansion greedy algorithm

Fields

manager: SearchManager<N, B>

search manager

Implementations

builds the partial expansion greedy using the search space

Trait Implementations

Formats the value using the given formatter. Read more

returns true if the optimal value is found (thus we can stop the search). For this greedy, we set it to always false (it is not destined to prove optimality)

runs until the stopping_criterion is reached

Gets the search manager of the algorithm. It allows to get the best found solution and its value, etc. Read more

provides various statistics of events that occured during the search.

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

Performs the conversion.

Performs the conversion.

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.