testing3-bak/knight2b_test.scala
author Christian Urban <urbanc@in.tum.de>
Thu, 06 Dec 2018 15:15:31 +0000
changeset 231 26b5a843c696
parent 204 1b04ea68dca6
permissions -rw-r--r--
updated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
145
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
import scala.concurrent._
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
import scala.concurrent.duration._
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
import ExecutionContext.Implicits.global
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
import scala.language.postfixOps 
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     7
type Pos = (Int, Int)    // a position on a chessboard 
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     8
type Path = List[Pos]    // a path...a list of positions
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     9
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    10
def add_pair_urban(x: Pos)(y: Pos): Pos = 
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
  (x._1 + y._1, x._2 + y._2)
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    12
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    13
def is_legal_urban(dim: Int, path: Path)(x: Pos): Boolean = 
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    14
  0 <= x._1 && 0 <= x._2 && x._1 < dim && x._2 < dim && !path.contains(x)
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    15
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    16
def moves_urban(x: Pos): List[Pos] = 
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    17
  List(( 1,  2),( 2,  1),( 2, -1),( 1, -2),
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    18
       (-1, -2),(-2, -1),(-2,  1),(-1,  2)).map(add_pair_urban(x))
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    19
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    20
def legal_moves_urban(dim: Int, path: Path, x: Pos): List[Pos] = 
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    21
  moves_urban(x).filter(is_legal_urban(dim, path))
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    22
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    23
def correct_urban(dim: Int)(p: Path): Boolean = p match {
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    24
  case Nil => true
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    25
  case x::Nil => true
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    26
  case x::y::p => 
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    27
    if (legal_moves_urban(dim, p, y).contains(x)) correct_urban(dim)(y::p) else false
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    28
}
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    29
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    30
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    31
lazy val f = Future {
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    32
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    33
  val ts1 = CW7b.first_tour(8, List((0, 0))).get
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    34
  assert(correct_urban(8)(ts1) == true)
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    35
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    36
  val ts2 = CW7b.first_tour(4, List((0, 0)))
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    37
  assert(ts2 == None)  
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    38
}
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    39
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    40
Await.result(f, 300 second)