|
@@ -169,16 +169,6 @@ int main()
|
|
|
// Display it
|
|
|
w.display();
|
|
|
|
|
|
- // Print the tile numbers of the successors of the starting tile (1, 1)
|
|
|
- unsigned int succs[4];
|
|
|
- unsigned int n = w.successors(21, succs);
|
|
|
-
|
|
|
- for (unsigned int k = 0; k < n; k++)
|
|
|
- {
|
|
|
- cout << succs[k] << " ";
|
|
|
- }
|
|
|
- cout << endl;
|
|
|
-
|
|
|
return 0;
|
|
|
}
|
|
|
|