marking3/knight3_test9.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Wed, 26 Aug 2020 02:07:46 +0100
changeset 340 9eeab89d0671
parent 331 e3878cdd38bc
permissions -rw-r--r--
updated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
331
e3878cdd38bc updated
Christian Urban <urbanc@in.tum.de>
parents: 258
diff changeset
     1
import CW8c._
258
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
//type Pos = (Int, Int)
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
//type Path = List[Pos]
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
def add_pair_urban(x: Pos)(y: Pos): Pos = 
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     7
  (x._1 + y._1, x._2 + y._2)
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     8
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     9
def is_legal_urban(dim: Int, path: Path)(x: Pos): Boolean = 
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    10
  0 <= x._1 && 0 <= x._2 && x._1 < dim && x._2 < dim && !path.contains(x)
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    12
def moves_urban(x: Pos): List[Pos] = 
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    13
  List(( 1,  2),( 2,  1),( 2, -1),( 1, -2),
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    14
       (-1, -2),(-2, -1),(-2,  1),(-1,  2)).map(add_pair_urban(x))
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    15
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    16
def legal_moves_urban(dim: Int, path: Path, x: Pos): List[Pos] = 
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    17
  moves_urban(x).filter(is_legal_urban(dim, path))
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    18
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    19
def correct_urban(dim: Int)(p: Path): Boolean = p match {
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    20
  case Nil => true
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    21
  case x::Nil => true
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    22
  case x::y::p => 
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    23
    if (legal_moves_urban(dim, p, y).contains(x)) correct_urban(dim)(y::p) else false
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    24
}
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    25
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    26
331
e3878cdd38bc updated
Christian Urban <urbanc@in.tum.de>
parents: 258
diff changeset
    27
val ts70_urban = tour_on_mega_board(70, List((0,0))).get
e3878cdd38bc updated
Christian Urban <urbanc@in.tum.de>
parents: 258
diff changeset
    28
assert(correct_urban(70)(ts70_urban) == true)
258
ebe71908b13e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    29