twips 0.12.1

Twizzle Pattern Searcher — Twisty puzzle search library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# `twips`

Twizzle Pattern Searcher — a program to find algs and scrambles for twisty puzzles.

See <https://github.com/cubing/twips> for information.

This is the library crate. You are welcome to experiment, but keep in mind that the API is very unstable. (Please file issues if you have a use cases!)

## Example usage

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

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