commonMain.it.unibo.tuprolog.solve.library.LibraryUtils.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
@file:JvmName("LibraryUtils")
package it.unibo.tuprolog.solve.library
import kotlin.js.JsName
import kotlin.jvm.JvmName
/** Converts the current library into a [Runtime] containing a single library */
@JsName("libraryToRuntime")
fun Library.toRuntime(): Runtime = Runtime.of(this)
@JsName("libraryPlusLibrary")
operator fun Library.plus(other: Library): Runtime = Runtime.of(this, other)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy