testing3/knight1.scala
changeset 284 9a04eb6a2291
parent 247 50a3b874008a
child 326 e5453add7df6
--- a/testing3/knight1.scala	Tue Oct 29 23:56:13 2019 +0000
+++ b/testing3/knight1.scala	Wed Oct 30 11:28:44 2019 +0000
@@ -1,7 +1,7 @@
-// Part 1 about finding and counting Knight's tours
-//==================================================
+// Preliminary Part 1 finding and counting Knight's tours
+//========================================================
 
-//object CW8a {   // for preparing the jar
+object CW8a {  
 
 type Pos = (Int, Int)    // a position on a chessboard 
 type Path = List[Pos]    // a path...a list of positions
@@ -165,6 +165,6 @@
 //time_needed(0, print_board(8, first_tour(8, List((0, 0))).get))
 
 
-//}
+}