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

commonMain.it.unibo.tuprolog.solve.flags.MaxArity.kt Maven / Gradle / Ivy

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

import it.unibo.tuprolog.core.Integer

@Suppress("MemberVisibilityCanBePrivate")
object MaxArity : NotableFlag {
    override val name: String = "max_arity"

    override val defaultValue: Integer = Integer.of(Int.MAX_VALUE)

    override val admissibleValues: Sequence = sequenceOf(defaultValue)

    override val isEditable: Boolean
        get() = false
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy