commonMain.it.unibo.tuprolog.solve.flags.DoubleQuotes.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.Atom
import it.unibo.tuprolog.core.Term
import kotlin.jvm.JvmField
@Suppress("MemberVisibilityCanBePrivate")
object DoubleQuotes : NotableFlag {
@JvmField
val ATOM = Atom.of("atom")
override val name: String = "double_quotes"
override val defaultValue: Term
get() = ATOM
override val admissibleValues: Sequence = sequenceOf(ATOM)
}