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

commonMain.it.unibo.tuprolog.collections.impl.MutableReteClauseQueue.kt Maven / Gradle / Ivy

Go to download

In-memory storage and indexing facilities for ordered and unordered knowledge bases composed by logic clauses

There is a newer version: 0.17.4
Show newest version
package it.unibo.tuprolog.collections.impl

import it.unibo.tuprolog.collections.AbstractMutableReteClauseCollection
import it.unibo.tuprolog.collections.ClauseQueue
import it.unibo.tuprolog.collections.MutableClauseQueue
import it.unibo.tuprolog.collections.RetrieveResult
import it.unibo.tuprolog.collections.rete.custom.ReteTree
import it.unibo.tuprolog.core.Clause
import it.unibo.tuprolog.theory.TheoryUtils

internal class MutableReteClauseQueue private constructor(
    rete: ReteTree
) : MutableClauseQueue, AbstractMutableReteClauseCollection(rete) {

    init {
        require(rete.isOrdered)
    }

    /** Construct a [MutableReteClauseQueue] from given clauses */
    constructor(clauses: Iterable) : this(ReteTree.ordered(clauses)) {
        TheoryUtils.checkClausesCorrect(clauses)
    }

    override fun getFifoOrdered(clause: Clause): Sequence =
        rete.get(clause)

    override fun getLifoOrdered(clause: Clause): Sequence =
        getFifoOrdered(clause).toList().asReversed().asSequence()

    override fun addFirst(clause: Clause): MutableReteClauseQueue {
        rete.assertA(clause)
        return this
    }

    override fun addLast(clause: Clause): MutableReteClauseQueue {
        rete.assertZ(clause)
        return this
    }

    override fun retrieveFirst(clause: Clause): RetrieveResult {
        val retracted = rete.retractFirst(clause)

        return when {
            retracted.none() ->
                RetrieveResult.Failure(this)
            else ->
                RetrieveResult.Success(
                    this, retracted.toList()
                )
        }
    }

    override fun equals(other: Any?): Boolean {
        return if (other is MutableClauseQueue) {
            MutableClauseQueue.equals(this, other)
        } else {
            false
        }
    }

    override fun hashCode(): Int {
        return MutableClauseQueue.hashCode(this)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy