| Crates.io | twips |
| lib.rs | twips |
| version | 0.11.3 |
| created_at | 2025-11-17 02:38:45.292483+00 |
| updated_at | 2026-01-06 22:52:19.484593+00 |
| description | Twizzle Pattern Searcher — Twisty puzzle search library |
| homepage | |
| repository | https://github.com/cubing/twips |
| max_upload_size | |
| id | 1936160 |
| size | 631,198 |
twipsTwizzle 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!)
use twips::scramble::{random_scramble_for_event, Event};
pub fn main() {
let scramble = random_scramble_for_event(Event::Cube2x2x2Speedsolving).unwrap();
println!("{}", scramble);
}