main_testing4-old/knight_test7.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 06 Nov 2023 21:26:57 +0000
changeset 475 a0d4c9a3f83a
parent 473 be818c5a67d4
permissions -rw-r--r--
updated jars
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
403
312c9eb39ad8 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 347
diff changeset
     1
import M4b._
247
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
//type Pos = (Int, Int)
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
//type Path = List[Pos]
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
def add_pair_urban(x: Pos)(y: Pos): Pos = 
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     7
  (x._1 + y._1, x._2 + y._2)
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     8
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     9
def is_legal_urban(dim: Int, path: Path)(x: Pos): Boolean = 
87047208d5f4 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)
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    12
def moves_urban(x: Pos): List[Pos] = 
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    13
  List(( 1,  2),( 2,  1),( 2, -1),( 1, -2),
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    14
       (-1, -2),(-2, -1),(-2,  1),(-1,  2)).map(add_pair_urban(x))
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    15
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    16
def legal_moves_urban(dim: Int, path: Path, x: Pos): List[Pos] = 
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    17
  moves_urban(x).filter(is_legal_urban(dim, path))
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    18
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    19
def correct_urban(dim: Int)(p: Path): Boolean = p match {
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    20
  case Nil => true
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    21
  case x::Nil => true
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    22
  case x::y::p => 
87047208d5f4 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
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    24
}
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    25
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    26
def correct_closed_urban(dim: Int)(p: Path) =
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    27
  correct_urban(6)(p) &&  moves_urban(p.head).contains(p.last)
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    28
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    29
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 296
diff changeset
    30
val tsc = first_closed_tour_heuristics(6, List((3, 3))).get
247
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    31
assert(correct_closed_urban(6)(tsc) == true)
87047208d5f4 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    32