(int twist)
| 433 | } |
| 434 | |
| 435 | public static String scrambleTCLL(int twist) { |
| 436 | String scramble; |
| 437 | do { |
| 438 | randomTEG(4, twist); |
| 439 | int p = Utils.get8Perm(state[0], 7); |
| 440 | int o = Utils.oriToIdx(state[1], 7, true); |
| 441 | scramble = solve(p, o); |
| 442 | } while (scramble.equals("error")); |
| 443 | return scramble; |
| 444 | } |
| 445 | |
| 446 | public static String scrambleTEG1(int twist) { |
| 447 | String scramble; |