(String scramble)
| 1185 | } |
| 1186 | |
| 1187 | public String solve333(String scramble) { |
| 1188 | switch (APP.solve333) { |
| 1189 | case 1: |
| 1190 | return Cross.solveCross(scramble, APP.solverType[1]); |
| 1191 | case 2: |
| 1192 | return Cross.solveXcross(scramble, APP.solverType[1]); |
| 1193 | case 3: |
| 1194 | return EOline.solveEoline(scramble, APP.solverType[1]); |
| 1195 | case 4: |
| 1196 | return Roux.solveRoux1(scramble, APP.solverType[3]); |
| 1197 | case 5: |
| 1198 | return Petrus.solvePetrus(scramble, APP.solverType[2]); |
| 1199 | case 6: |
| 1200 | return Cross.solveEofc(scramble, APP.solverType[1]); |
| 1201 | default: |
| 1202 | return ""; |
| 1203 | } |
| 1204 | } |
| 1205 | |
| 1206 | public String solve222(String scramble) { |
| 1207 | switch (APP.solve222) { |
no test coverage detected