commonMain.it.unibo.tuprolog.solve.TestCut.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-solve-js Show documentation
Show all versions of test-solve-js Show documentation
"Multi-platform Prolog environment, in Kotlin"
package it.unibo.tuprolog.solve
interface TestCut : SolverTest {
companion object {
fun prototype(solverFactory: SolverFactory): TestCut =
TestCutImpl(solverFactory)
}
/**
* Tests the queries
* ```prolog
* ?- !.
* ```
* succeeds on a solver initialized with default built-ins and with and empty theory.
*/
fun testCut()
/**
* Tests the queries
* ```prolog
* ?- (!,fail;true).
* ```
* succeeds on a solver initialized with default built-ins and with and empty theory.
*/
fun testCutFailTrue()
/**
* Tests the queries
* ```prolog
* ?- (call(!),fail;true).
* ```
* succeeds on a solver initialized with default built-ins and with and empty theory.
*/
fun testCallCutFailTrue()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy