Added tests (WIP, failing)
This commit is contained in:
@@ -60,8 +60,10 @@ class TripletClue<C : ItemClass<C>>(val a: Item<C>, val b: Item<C>, val c: Item<
|
||||
return false
|
||||
}
|
||||
|
||||
if (ia == ib) {
|
||||
return true
|
||||
if (ia != -1 && ic != -1) {
|
||||
if (ia + 2 == ic || ia == ic + 2) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
if (isNeighbourRuleViolated(ia, ib) || isNeighbourRuleViolated(ib, ic)) {
|
||||
|
||||
Reference in New Issue
Block a user