[][src]Struct robust_binary_search::CompressedDAGSearcher

pub struct CompressedDAGSearcher { /* fields omitted */ }

Performs a robust binary search over a CompressedDAG.

Implementations

impl CompressedDAGSearcher[src]

pub fn new(graph: Rc<CompressedDAG>) -> Self[src]

Creates a new CompressedDAGSearcher.

pub fn confidence_percentile_ceil(
    &self,
    percentile: f64
) -> CompressedDAGNodeRef
[src]

Returns the node whose percentile (i.e. the sum of weights over the node and its ancestors) is smallest but greater than or equal to the argument.

pub fn best_node(&self) -> CompressedDAGNodeRef[src]

Returns the current estimate of the best node.

pub fn next_node(&self) -> CompressedDAGNodeRef[src]

Returns the next node that should be tested.

pub fn report(
    &mut self,
    node: CompressedDAGNodeRef,
    heads: bool,
    flakiness: f64
)
[src]

Adds a vote to the internal statistics. With low flakiness, nodes with false votes are expected not to nodes with true votes as ancestors.

Panics

Panics if the node is out of range.

pub fn likelihood(&self, node: CompressedDAGNodeRef) -> f64[src]

Returns the likelihood of the given index.

Panics

Panics if the node is out of range.

Trait Implementations

impl Clone for CompressedDAGSearcher[src]

impl Debug for CompressedDAGSearcher[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.