3 releases

new 0.1.2 Apr 24, 2024
0.1.1 Feb 26, 2024
0.1.0 Feb 22, 2024

#1141 in Algorithms

Download history 229/week @ 2024-02-21 66/week @ 2024-02-28 12/week @ 2024-03-06 4/week @ 2024-03-13 3/week @ 2024-03-20 13/week @ 2024-03-27 30/week @ 2024-04-03 33/week @ 2024-04-10

79 downloads per month
Used in three-style

MIT license

59KB
1.5K SLoC

three-style

Build/test crates.io

three-style is a program that searches 3x3 commutators used in 3-style, an advanced method for solving the Rubik's cube blindfolded by swapping 3 pieces at a time without affecting the rest of the cube.

Contents

Installation

You can use three-style by downloading the prebuilt binary for your system from the releases or by installing it using cargo:

cargo install three-style

Usage

three-style uses layers for describing pieces or more precisely sticker targets. Example: UF (edge), UBL (corner). Currently, it only exposes one main command search and is used in the following way:

# corners
three-style search --gen RUD --corners UFR UBL RFD --depth 4

# edges
three-style search --gen RUE --edges UF UB LF --depth 5

# shorter versions
three-style search -g RUD -c UFR UBL RFD -d 4
three-style search -g RUE -e UF UB LF -d 5

[!NOTE] Depth is relative to the length of the commutator in its notation form.

Concept

A commutator is an algorithm of the form: A B A' B' which allows us to swap 3 pieces at once without affecting the rest of the cube. It's commonly described in the following notation: [A, B].

It consists of two basic interchangeable parts:

  • An interchange is a single move that swaps two pieces without affecting the third one
  • An insertion are three moves that insert the third piece into one of the two pieces spot without affecting the other one.

But not all cases can be solved using pure commutators, some cases require using setup moves. A setup move is a sequence of moves that turn the case into a case that can be solved using pure commutators. Commutators that use setup moves are of the form S A B A' B' S' and are more commonly written as [S: [A, B]]

[!NOTE] Edges have a special case called 4 movers which don't use the normal 3 moves insertion. Example: [M', U2]

Here are the steps to find any commutator:

           *------------------*
           | Choose a moveset |
           *------------------*
                    |
                    v
          *--------------------*  no   *------------------*
          | Interchange exists | ----> | Find setup moves |
          *--------------------* <---- *------------------*
                    | yes                        ^
                    v                            |
           *------------------*        no        |
           | Insertion exists | ------------------
           *------------------*
                    | yes
                    v
    *--------------------------------*
    | Interchange or insertion first |
    *--------------------------------*
                    |
                    v
                *------*
                | Done |
                *------*

The program basically does an iterative DFS and follows these steps to find commutators. The rules for the interchange and the insertion are used for prunning and search is decently fast.

References

Contributing

Bug reports, Pull requests and feature requests are all welcome!

Dependencies

~315–780KB
~18K SLoC