[][src]Struct rusty_rubik::solver::IDASolver

pub struct IDASolver<'a> { /* fields omitted */ }

A solver implementing the iterative deepening A* search algorithm [Korf, 1997].

This solver uses the pruning tables pre-computed in pruning.rs to prevent the solver from exploring move sequences that will yield suboptimal solutions. This is the method typically implemented in most optimal Rubik's Cube solvers.

Implementations

impl<'a> IDASolver<'a>[src]

pub fn new(state: CubeState, tables: &'a PruningTables) -> Self[src]

Trait Implementations

impl<'_> Solver for IDASolver<'_>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for IDASolver<'a>

impl<'a> Send for IDASolver<'a>

impl<'a> Sync for IDASolver<'a>

impl<'a> Unpin for IDASolver<'a>

impl<'a> UnwindSafe for IDASolver<'a>

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, 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.