Skip to content

Commit 99b0ead

Browse files
authored
Update conclusion reasons (#26)
* Add MergedWithAnotherInit conclusion reason to ResultFile WL importer * Add MergedWithAnotherInit to result file format documentation
1 parent e94f380 commit 99b0ead

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

FileFormats/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ Diagram shows a single initial state of 25 bits.
107107
- `6`: Maximum event count exceeded
108108
- `7`: Time constraint exceeded
109109
- `8`: Not evaluated (previous evaluation hit time constraint)
110+
- `9`: Evaluation merged with that of another initial state
110111
- Bits 5-6: Final head state as unsigned 2-bit integer (0 to 3)
111112
- Bit 7: Whether final state is present
112113
- Event count: `u64`

FileFormats/ResultFile.wl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ $ConclusionReasons = <|
1515
5 -> "MaxTapeLengthExceeded",
1616
6 -> "MaxEventCountExceeded",
1717
7 -> "TimeConstraintExceeded",
18-
8 -> "NotEvaluated"
18+
8 -> "NotEvaluated",
19+
9 -> "MergedWithAnotherInit"
1920
|>
2021

2122
(* ::Section:: *)

0 commit comments

Comments
 (0)