()
| 422 | } |
| 423 | |
| 424 | public static String scramblePBL() { |
| 425 | String scramble; |
| 426 | do { |
| 427 | randomEG(0, "N"); |
| 428 | int p = Utils.get8Perm(state[0], 7); |
| 429 | int o = Utils.oriToIdx(state[1], 7, true); |
| 430 | scramble = solve(p, o); |
| 431 | } while (scramble.equals("error")); |
| 432 | return scramble; |
| 433 | } |
| 434 | |
| 435 | public static String scrambleTCLL(int twist) { |
| 436 | String scramble; |