We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e94f380 commit 99b0eadCopy full SHA for 99b0ead
2 files changed
FileFormats/README.md
@@ -107,6 +107,7 @@ Diagram shows a single initial state of 25 bits.
107
- `6`: Maximum event count exceeded
108
- `7`: Time constraint exceeded
109
- `8`: Not evaluated (previous evaluation hit time constraint)
110
+ - `9`: Evaluation merged with that of another initial state
111
- Bits 5-6: Final head state as unsigned 2-bit integer (0 to 3)
112
- Bit 7: Whether final state is present
113
- Event count: `u64`
FileFormats/ResultFile.wl
@@ -15,7 +15,8 @@ $ConclusionReasons = <|
15
5 -> "MaxTapeLengthExceeded",
16
6 -> "MaxEventCountExceeded",
17
7 -> "TimeConstraintExceeded",
18
- 8 -> "NotEvaluated"
+ 8 -> "NotEvaluated",
19
+ 9 -> "MergedWithAnotherInit"
20
|>
21
22
(* ::Section:: *)
0 commit comments