-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: forgot to take current_state (or rather set of current states) i…
…nto account)
- Loading branch information
Lukáš Chudíček
committed
Oct 25, 2023
1 parent
f4c7222
commit 1f8297f
Showing
3 changed files
with
20 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,13 @@ | ||
digraph G { | ||
init__ [label="", style=invis, height=0, width=0]; | ||
init__ -> 4; | ||
init__ -> 0; | ||
0 [shape=box, label="0", style=filled, shape=box, height=0.3, width=0.3]; | ||
1 [shape=box, label="1", style=filled, shape=box, height=0.3, width=0.3]; | ||
2[label="the_only_variable_v3"]; | ||
2 -> 1 [style=filled]; | ||
2 -> 0 [style=dotted]; | ||
3[label="the_only_variable_v2"]; | ||
3 -> 2 [style=filled]; | ||
3 -> 0 [style=dotted]; | ||
4[label="the_only_variable_v1"]; | ||
4 -> 3 [style=filled]; | ||
4 -> 0 [style=dotted]; | ||
} | ||
|
||
digraph G { | ||
init__ [label="", style=invis, height=0, width=0]; | ||
init__ -> 4; | ||
init__ -> 0; | ||
0 [shape=box, label="0", style=filled, shape=box, height=0.3, width=0.3]; | ||
1 [shape=box, label="1", style=filled, shape=box, height=0.3, width=0.3]; | ||
2[label="the_only_variable_v3"]; | ||
2 -> 1 [style=filled]; | ||
2 -> 0 [style=dotted]; | ||
3[label="the_only_variable_v2"]; | ||
3 -> 2 [style=filled]; | ||
3 -> 0 [style=dotted]; | ||
4[label="the_only_variable_v1"]; | ||
4 -> 3 [style=filled]; | ||
4 -> 0 [style=dotted]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters