Struct quickbacktrack::Solution [] [src]

pub struct Solution<T> {
    pub puzzle: T,
    pub iterations: u64,
    pub strategy: Option<usize>,
}

Contains solution.

Fields

The solved puzzle.

The number of iterations used to solve the puzzle.

The strategy that found the solution.