()
| 212 | } |
| 213 | |
| 214 | public String toString() { |
| 215 | StringBuilder sb = new StringBuilder(); |
| 216 | for (int i=0; i<12; i++) { |
| 217 | sb.append(String.format("%2c", "0123456789AB".charAt(edge[i]))); |
| 218 | } |
| 219 | sb.append('\n'); |
| 220 | for (int i=0; i<12; i++) { |
| 221 | sb.append(String.format("%2c", "0123456789AB".charAt(edgeo[i]))); |
| 222 | } |
| 223 | return sb.toString(); |
| 224 | } |
| 225 | |
| 226 | static int[] FullEdgeMap = {0, 2, 4, 6, 1, 3, 7, 5, 8, 9, 10, 11}; |
| 227 |
no outgoing calls
no test coverage detected