Checkpoint

This commit is contained in:
Tibo De Peuter 2025-04-11 19:27:01 +02:00
parent e3c84e1761
commit e73e5cbfc8
32 changed files with 1354 additions and 92 deletions

View file

@ -37,8 +37,8 @@ abstract class Clause(private val head: Head, private val body: Body) : Resolven
override fun toString(): String {
return when {
body == True() -> head.toString()
else -> "$head :- $body"
body is True -> head.toString()
else -> "$head :- $body"
}
}
}