case class SeqAAMOutput(halted: Set[State], numberOfStates: Int, time: Double, graphOption: Option[Graph[State]], timedOut: Boolean, stats: SeqAAM.AbstractMachineStats) extends Output with Product with Serializable
The output of the abstract machine.
- Attributes
- protected
- Alphabetic
- By Inheritance
- SeqAAMOutput
- Serializable
- Serializable
- Product
- Equals
- Output
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
- new SeqAAMOutput(halted: Set[State], numberOfStates: Int, time: Double, graphOption: Option[Graph[State]], timedOut: Boolean, stats: SeqAAM.AbstractMachineStats)
Value Members
-
def
compareToReference(optionReference: Option[SeqAAM.Output]): (Option[SeqAAM.Output], String)
If optionReference is Some() then compare this output with it value and return (optionReference, separated semi-colon list of possible errors), else return (this output, "")
If optionReference is Some() then compare this output with it value and return (optionReference, separated semi-colon list of possible errors), else return (this output, "")
- Definition Classes
- Output
-
def
errorValues: List[SemanticError]
Return error values (ordered by string representation)
Return error values (ordered by string representation)
- Definition Classes
- SeqAAMOutput → Output
-
def
finalValues: List[Abs]
Return final values in "forced" total order (to have a deterministic return "corresponding" to the real partial order)
Return final values in "forced" total order (to have a deterministic return "corresponding" to the real partial order)
- Definition Classes
- SeqAAMOutput → Output
-
def
graphInfo: Option[GraphInfo]
Returns information about the final graph (if it computed).
Returns information about the final graph (if it computed).
- Definition Classes
- SeqAAMOutput → Output
- val graphOption: Option[Graph[State]]
- val halted: Set[State]
-
def
machineStats: SeqAAM.AbstractMachineStats
Returns the stats keep on the evaluation (if it computed).
Returns the stats keep on the evaluation (if it computed).
- Definition Classes
- SeqAAMOutput → Output
-
def
nbErrorState: Int
Return number of error states
Return number of error states
- Definition Classes
- SeqAAMOutput → Output
-
def
nbFinalState: Int
Return number of final states
Return number of final states
- Definition Classes
- SeqAAMOutput → Output
-
val
numberOfStates: Int
Returns the number of states visited to evaluate the program.
Returns the number of states visited to evaluate the program.
- Definition Classes
- SeqAAMOutput → Output
- val stats: SeqAAM.AbstractMachineStats
-
def
statsToTsv(escaped: Boolean): String
Returns a TSV representation of the stats, used to print results
Returns a TSV representation of the stats, used to print results
- Definition Classes
- Output
-
val
time: Double
Returns the time it took to evaluate the program.
Returns the time it took to evaluate the program.
- Definition Classes
- SeqAAMOutput → Output
-
val
timedOut: Boolean
Does this output comes from a computation that timed out?
Does this output comes from a computation that timed out?
- Definition Classes
- SeqAAMOutput → Output
-
def
toFile(path: String)(config: Option[MachineConfig], output: GraphOutput): Unit
Outputs the graph computed by the machine in a file, according to the given output format.
Outputs the graph computed by the machine in a file, according to the given output format.
- Definition Classes
- SeqAAMOutput → Output
-
def
toTsv(includeValues: Boolean, afterValues: List[String]): String
Returns a TSV representation, used to print results
Returns a TSV representation, used to print results
- Definition Classes
- Output