main_testing4-old/knight_test1.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 06 Nov 2023 21:49:55 +0000
changeset 477 2403c931a32f
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 M4a._
215
6cc8068797e7 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
216
8fc6eba5f754 updated
Christian Urban <urbanc@in.tum.de>
parents: 215
diff changeset
     3
assert(is_legal(8, Nil, (3, 4)) == true)
8fc6eba5f754 updated
Christian Urban <urbanc@in.tum.de>
parents: 215
diff changeset
     4
assert(is_legal(8, List((4, 1), (1, 0)), (4, 1)) == false)
8fc6eba5f754 updated
Christian Urban <urbanc@in.tum.de>
parents: 215
diff changeset
     5
assert(is_legal(2, Nil, (0, 0)) == true)
215
6cc8068797e7 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6