testing2/knight3c_test.scala
author Christian Urban <urbanc@in.tum.de>
Tue, 28 Nov 2017 20:37:57 +0000
changeset 159 6ba27d7cf416
parent 145 155a7e41615e
child 162 2ea5b3456ed7
permissions -rw-r--r--
typo
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)
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     8
type Path = List[Pos]
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
lazy val f1 = Future {
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    31
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    32
  val ts8 = CW7c.first_tour_heuristic(8, List((0,0))).get
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    33
  assert(correct_urban(8)(ts8) == true)
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    34
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    35
}
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    36
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    37
Await.result(f1, 360 second)
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
lazy val f2 = Future {
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    41
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    42
  val ts40 = CW7c.first_tour_heuristic(40, List((0,0))).get
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    43
  assert(correct_urban(40)(ts40) == true)
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    44
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    45
}
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    46
155a7e41615e updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    47
Await.result(f2, 360 second)