commonMain.it.unibo.tuprolog.solve.flags.MaxArity.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.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
}