All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.it.unibo.tuprolog.solve.stdlib.rule.Member.kt Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package it.unibo.tuprolog.solve.stdlib.rule

import it.unibo.tuprolog.core.Scope
import it.unibo.tuprolog.core.Term
import it.unibo.tuprolog.solve.ExecutionContext
import it.unibo.tuprolog.solve.Signature
import it.unibo.tuprolog.solve.rule.RuleWrapper
import kotlin.collections.List as KtList
import kotlin.collections.listOf as ktListOf

sealed class Member : RuleWrapper(FUNCTOR, ARITY) {
    abstract override val Scope.head: KtList

    object Base : Member() {
        override val Scope.head: KtList
            get() =
                ktListOf(
                    varOf("H"),
                    consOf(varOf("H"), whatever()),
                )
    }

    object Recursive : Member() {
        override val Scope.head: KtList
            get() =
                ktListOf(
                    varOf("H"),
                    consOf(whatever(), varOf("T")),
                )

        override val Scope.body: Term
            get() = structOf("member", varOf("H"), varOf("T"))
    }

    companion object {
        const val FUNCTOR: String = "member"
        const val ARITY: Int = 2
        val SIGNATURE: Signature
            get() = Signature(FUNCTOR, ARITY)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy