Condition

data class Condition<W>(val name: String?, val cond: ConditionScope<W>.() -> Boolean) : LTL<W> (source)

Constructors

Link copied to clipboard
constructor(name: String?, cond: ConditionScope<W>.() -> Boolean)

Properties

Link copied to clipboard
Link copied to clipboard
val name: String?

Functions

Link copied to clipboard
open override fun evaluateAtTime(world: (Int) -> W, time: Int, maxTraceLength: Int): LTLResult

Evaluate the given LTL proposition with respect to the given data at a specific time.

Link copied to clipboard
open override fun toString(): String