muu minimisation

This commit is contained in:
2026-03-06 00:05:30 +03:00
parent dcb9c0800f
commit 98d089351b
23 changed files with 597 additions and 243 deletions

View File

@ -0,0 +1,14 @@
digraph G {
nodesep=1
rankdir="LR"
SNO,SKO[shape=none]
IDLE,P1,P2,P3[shape=circle]
IDLE[fontsize=10]
SNO->IDLE
IDLE->P1
P1->P2
P2->P2[label="F1 = 0\nFC = 0"]
P2->P3[label="F1 = 1\nFC = 0"]
P2->SKO[label="FC = 1"]
P3->P2
}

View File

@ -0,0 +1,11 @@
digraph G {
nodesep=1
rankdir="LR"
SNO,SKO[shape=none]
IDLE,P1,P2[shape=circle]
IDLE[fontsize=10]
SNO->IDLE
IDLE->P1
P1->P2
P2->SKO
}