ModelCheckerTrace

data class ModelCheckerTrace(val formula: String, val description: TranslationDTO, val isModel: Boolean, val shouldBeModel: Boolean, val children: List<ModelCheckerTrace>? = null)(source)

Trace of the ModelChecking algorithm. Contains information about a single check and its child checks.

Author

Jan Müller

Constructors

Link copied to clipboard
constructor(formula: String, description: TranslationDTO, isModel: Boolean, shouldBeModel: Boolean, children: List<ModelCheckerTrace>? = null)

Creates a ModelCheckerTrace with the given parameters.

Properties

Link copied to clipboard

List of child-traces.

Link copied to clipboard

TranslationDTO with a description key for this check.

Link copied to clipboard

The String representation of the checked Formula.

Link copied to clipboard

Indicates that the Graph is a model of the checked formula.

Link copied to clipboard

Indicates that the Graph is supposed to be model of checked formula.