testing3/knight_test1.scala
author Christian Urban <urbanc@in.tum.de>
Wed, 07 Aug 2019 16:15:42 +0100
changeset 273 9cf4d3c3abd1
parent 216 8fc6eba5f754
child 284 fc20e5f83f0e
permissions -rw-r--r--
updated


assert(is_legal(8, Nil, (3, 4)) == true)
assert(is_legal(8, List((4, 1), (1, 0)), (4, 1)) == false)
assert(is_legal(2, Nil, (0, 0)) == true)