Browse Source

Remove print of starting point successors

DricomDragon 5 years ago
parent
commit
50d5401c78
1 changed files with 0 additions and 10 deletions
  1. 0 10
      main.cc

+ 0 - 10
main.cc

@@ -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;
 }