marking2/knight1a_test.scala
author Christian Urban <urbanc@in.tum.de>
Thu, 08 Mar 2018 12:33:09 +0000
changeset 172 e380f5cf27f1
parent 162 2ea5b3456ed7
permissions -rw-r--r--
error corrected
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
162
2ea5b3456ed7 marking 2
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
2ea5b3456ed7 marking 2
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
assert(CW7a.is_legal(8, Nil)(3, 4) == true)
2ea5b3456ed7 marking 2
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
assert(CW7a.is_legal(8, List((4, 1), (1, 0)))(4, 1) == false)
2ea5b3456ed7 marking 2
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
assert(CW7a.is_legal(2, Nil)(0, 0) == true)
2ea5b3456ed7 marking 2
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5