This commit is contained in:
Tibo De Peuter 2025-05-05 18:04:37 +02:00
parent a937b1bc44
commit fc8b83fca3
8 changed files with 117 additions and 19 deletions

View file

@ -15,5 +15,4 @@ import prolog.ast.arithmetic.Float
interface Term : Comparable<Term>, Cloneable {
override fun compareTo(other: Term): Int = compare(this, other, emptyMap())
fun applySubstitution(subs: Substitutions): Term
public override fun clone(): Term
}