twips 0.11.0

Twizzle Pattern Searcher — Twisty puzzle search library
Documentation

twips

A pure Rust implementation of twips. For now, most of the code is experimental and placed in twips::_internal.

Example usage

use twips::scramble::{random_scramble_for_event, Event};

pub fn main() {
    let scramble = random_scramble_for_event(Event::Cube2x2x2Speedsolving).unwrap();
    println!("{}", scramble);
}