solutions3/knight2.scala
changeset 221 9e7897f25e13
parent 213 f968188d4a9b
equal deleted inserted replaced
220:3020f8c76baa 221:9e7897f25e13
    62 }
    62 }
    63 
    63 
    64 def first_closed_tour_heuristics(dim: Int, path: Path) =
    64 def first_closed_tour_heuristics(dim: Int, path: Path) =
    65  time_needed(tfirst_closed_tour_heuristics(dim: Int, path: Path))
    65  time_needed(tfirst_closed_tour_heuristics(dim: Int, path: Path))
    66 
    66 
       
    67 def first_closed_tour_heuristic(dim: Int, path: Path) =
       
    68  time_needed(tfirst_closed_tour_heuristics(dim: Int, path: Path))
    67 
    69 
    68 // heuristic cannot be used to search for closed tours on 7 x 7 an beyond
    70 // heuristic cannot be used to search for closed tours on 7 x 7 an beyond
    69 //for (dim <- 1 to 6) {
    71 //for (dim <- 1 to 6) {
    70 //  val t = time_needed(0, first_closed_tour_heuristics(dim, List((dim / 2, dim / 2))))
    72 //  val t = time_needed(0, first_closed_tour_heuristics(dim, List((dim / 2, dim / 2))))
    71 //  println(s"${dim} x ${dim} closed: " + (if (t == None) "" else { print_board(dim, t.get) ; "" }))
    73 //  println(s"${dim} x ${dim} closed: " + (if (t == None) "" else { print_board(dim, t.get) ; "" }))
    80 
    82 
    81 
    83 
    82 def first_tour_heuristics(dim: Int, path: Path) = 
    84 def first_tour_heuristics(dim: Int, path: Path) = 
    83   time_needed(tfirst_tour_heuristics(dim: Int, path: Path))
    85   time_needed(tfirst_tour_heuristics(dim: Int, path: Path))
    84 
    86 
       
    87 def first_tour_heuristic(dim: Int, path: Path) = 
       
    88   time_needed(tfirst_tour_heuristics(dim: Int, path: Path))
    85 
    89 
    86 // will be called with boards up to 30 x 30
    90 // will be called with boards up to 30 x 30
    87 
    91 
    88 
    92 
    89 }
    93 }