commonMain.it.unibo.tuprolog.solve.primitive.TernaryRelation.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solve-jvm Show documentation
Show all versions of solve-jvm Show documentation
Resolution-agnostic API for logic solvers
package it.unibo.tuprolog.solve.primitive
import it.unibo.tuprolog.core.Substitution
import it.unibo.tuprolog.core.Term
import it.unibo.tuprolog.solve.ExecutionContext
/** Base class to implement primitives that relate tree [Term]s */
abstract class TernaryRelation(operator: String) : PrimitiveWrapper(operator, 3) {
/** Template method aimed at computing the application of this relation to three [Term]s */
protected abstract fun Solve.Request.computeAll(
first: Term,
second: Term,
third: Term,
): Sequence
final override fun uncheckedImplementation(request: Solve.Request): Sequence {
return request.computeAll(request.arguments[0], request.arguments[1], request.arguments[2])
}
abstract class WithoutSideEffects(operator: String) : TernaryRelation(operator) {
protected abstract fun Solve.Request.computeAllSubstitutions(
first: Term,
second: Term,
third: Term,
): Sequence
final override fun Solve.Request.computeAll(
first: Term,
second: Term,
third: Term,
): Sequence {
return computeAllSubstitutions(first, second, third).map { replyWith(it) }
}
}
abstract class NonBacktrackable(operator: String) : TernaryRelation(operator) {
protected abstract fun Solve.Request.computeOne(
first: Term,
second: Term,
third: Term,
): Solve.Response
final override fun Solve.Request.computeAll(
first: Term,
second: Term,
third: Term,
): Sequence {
return sequenceOf(computeOne(first, second, third))
}
}
abstract class Functional(operator: String) : NonBacktrackable(operator) {
protected abstract fun Solve.Request.computeOneSubstitution(
first: Term,
second: Term,
third: Term,
): Substitution
final override fun Solve.Request.computeOne(
first: Term,
second: Term,
third: Term,
): Solve.Response {
return replyWith(computeOneSubstitution(first, second, third))
}
}
abstract class Predicative(operator: String) : NonBacktrackable(operator) {
protected abstract fun Solve.Request.compute(
first: Term,
second: Term,
third: Term,
): Boolean
final override fun Solve.Request.computeOne(
first: Term,
second: Term,
third: Term,
): Solve.Response {
return if (compute(first, second, third)) replySuccess() else replyFail()
}
}
}