data class Proposition : DirFormula
General direction proposition. Contains a variable name and a requested direction (increase/up or decrease/down).
<init> |
Proposition(name: String, direction: Direction)
General direction proposition. Contains a variable name and a requested direction (increase/up or decrease/down). |
direction |
val direction: Direction
The direction in which the path should be moving (up/down). |
name |
val name: String
The name of the variable in which the direction should hold. |
node |
open val node: DirFormula
DirFormula is also the node in the tree, so |
toString |
fun toString(): String
Return string which uniquely represents this formula and can be parsed to create an equivalent object. |