()
| 111 | } |
| 112 | |
| 113 | public String scrambleWCA() { |
| 114 | String sol; |
| 115 | do { |
| 116 | FullCube c = FullCube.randomCube(); |
| 117 | sol = solutionOpt(c, 11, INVERSE_SOLUTION); |
| 118 | Log.w("dct", "solopt "+sol); |
| 119 | } while (sol != null); |
| 120 | return solution(c, INVERSE_SOLUTION); |
| 121 | } |
| 122 | |
| 123 | private String solutionOpt(FullCube c, int maxl, int verbose) { |
| 124 | this.c = c; |
nothing calls this directly
no test coverage detected