nissy-core

The "engine" of nissy, including the H48 optimal solver.
git clone https://git.tronto.net/nissy-core
Download | Log | Files | Refs | README | LICENSE

move.py (290B)


      1 # Small example of nissy_python_module usage
      2 # See the solve.py example for more details on how this works
      3 
      4 from sys import path
      5 path.append("./")
      6 import nissy_python_module as nissy
      7 
      8 cube = nissy.applymoves(nissy.solved_cube, "R' U' F");
      9 print("Cube after the moves R' U' F:")
     10 print(cube)