MCPcopy Create free account
hub / github.com/MeigenChou/DCTimer-Android / solveRoux1

Method solveRoux1

app/src/main/java/solver/Roux.java:379–389  ·  view source on GitHub ↗
(String scramble, int face)

Source from the content-addressed store, hash-verified

377 }
378
379 public static String solveRoux1(String scramble, int face) {
380 initr();
381 StringBuilder s = new StringBuilder("\n");
382 //boolean solveS2 = ((face >> 8) & 1) != 0;
383 //if (solveS2) initr2();
384 for (int i = 0; i < 8; i++) {
385 if (((face >> i) & 1) != 0)
386 s.append(roux1(scramble, i, false));
387 }
388 return s.toString();
389 }
390}

Callers 2

updateHintMethod · 0.95
solve333Method · 0.95

Calls 3

initrMethod · 0.95
roux1Method · 0.95
toStringMethod · 0.80

Tested by

no test coverage detected