marking3/knight1_test2.scala
author Christian Urban <urbanc@in.tum.de>
Sun, 03 Nov 2019 14:42:17 +0000
changeset 308 e86add5a6961
parent 243 9bb36426c781
child 326 e5453add7df6
permissions -rw-r--r--
updated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
243
9bb36426c781 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
9bb36426c781 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
assert(legal_moves(8, Nil, (2,2)) == 
9bb36426c781 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
             List((3,4), (4,3), (4,1), (3,0), (1,0), (0,1), (0,3), (1,4)))
9bb36426c781 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
assert(legal_moves(8, Nil, (7,7)) == List((6,5), (5,6)))
9bb36426c781 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
assert(legal_moves(8, List((4,1), (1,0)), (2,2)) == 
9bb36426c781 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
       List((3,4), (4,3), (3,0), (0,1), (0,3), (1,4)))
9bb36426c781 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     7
assert(legal_moves(8, List((6,6)), (7,7)) == List((6,5), (5,6)))
9bb36426c781 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     8
assert(legal_moves(1, Nil, (0,0)) == Nil)
9bb36426c781 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     9
assert(legal_moves(2, Nil, (0,0)) == Nil)
9bb36426c781 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    10
assert(legal_moves(3, Nil, (0,0)) == List((1,2), (2,1)))
9bb36426c781 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11