Checkpoint

This commit is contained in:
Tibo De Peuter 2025-04-06 12:14:18 +02:00
parent 438af6c053
commit 6eca9dfcb7
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
25 changed files with 309 additions and 113 deletions

View file

@ -234,13 +234,4 @@ class UnifyTest {
assertFalse(result.isPresent, "Atom with different arity should not unify")
}
@Test
fun temp() {
val atom1 = Atom("a")
val atom2 = Atom("a")
val result = unify(atom1, atom2)
assertTrue(result.isPresent, "Identical atoms should unify")
}
}