You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
./fizz --simulation --max_runs 1000 --seed 1748538852856350 test.fizz
Simulation mode is enabled
Model checking test.json
configFileName: fizz.yaml
fizz.yaml not found. Using default options
StateSpaceOptions: options:{max_actions:2 max_concurrent_actions:2} deadlock_detection:false
Seed: 1748538852856350
processing: A
done processing: ["A"]
processing: A
done processing: ["A"]
FAILED: Model checker failed. Invariant: LotsOfElements
seed: 1748538852856350
------
Init
--
state: {"history":"[]"}
------
Generate
--
state: {"history":"[\"A\"]"}
------
Generate
--
state: {"history":"[\"A\", \"A\"]"}
------
Process
--
state: {"history":"[\"A\", \"A\"]"}
------
Writen graph json: out/run_2025-05-29_13-17-42/error-graph.json
Writen graph dotfile: out/run_2025-05-29_13-17-42/error-graph.dot
To generate an image file, run:
dot -Tsvg out/run_2025-05-29_13-17-42/error-graph.dot -o error-graph.svg && open error-graph.svg
Writen error states as html: out/run_2025-05-29_13-17-42/error-states.html
To open:
open out/run_2025-05-29_13-17-42/error-states.html
The result here is quite confusing for several reasons:
Even though max_actions is 2, it seems to be running 4 actions: the Generate, Generate, Process shown in the output, and also a second Process that was run according to stdout, but not shown in the output (also seen in Confusing simulation mode Deadlock/stuttering detected #214)
The state field doesn't seem to be being updated properly. stdout shows that it has been modified (has only one element), but the actual state shown in the output doesn't reflect that (still has two elements), and the second, repeated execution of Process again starts with two elements.
Here is a model and associated simulation run:
The result here is quite confusing for several reasons:
Deadlock/stuttering detected#214)statefield doesn't seem to be being updated properly. stdout shows that it has been modified (has only one element), but the actual state shown in the output doesn't reflect that (still has two elements), and the second, repeated execution of Process again starts with two elements.