In [1]:
from IPython.display import display
import spot
spot.setup(show_default='.bans')

This notebook demonstrates how to use the decompose_scc() function to split an automaton in up to three automata capturing different behaviors. This is based on the paper Strength-based decomposition of the property Büchi automaton for faster model checking (TACAS'13).

This page uses the Python bindings, but the same decompositions can be performed from the shell using autfilt and its --decompose-scc option.

Basics

Let's define the following strengths of accepting SCCs:

  • an accepting SCC is inherently weak if it does not contain any rejecting cycle
  • an accepting SCC is inherently terminal if it is inherently weak and complete (i.e. from any state, you can stay in the SCC by reading any word)
  • an accepting SCC is strictly inherently weak if it is inherently weak and not complete (in other words: weak but not terminal)
  • an accepting SCC is strong if it is not inherently weak.

The strengths strong, stricly inherently weak, and inherently terminal define a partition of all accepting SCCs. The following Büchi automaton has 4 SCCs, and its 3 accepting SCCs show an example of each strength.

Note: the reason we use the word inherently is that the weak and terminal properties are usually defined syntactically: an accepting SCC would be weak if all its transitions belong to the same acceptance sets. This syntactic criterion is a sufficient condition for an accepting SCC to not have any rejecting cycle, but it is not necessary. Hence a weak SCC is inherently weak; but while an inherently weak SCC is not necessarily weak, it can be modified to be weak without alterning the langage.

In [2]:
aut = spot.translate('(Ga -> Gb) W c')
aut
Out[2]:
Inf( ) [Büchi] cluster_0 cluster_1 cluster_2 cluster_3 0 0 I->0 0->0 !a & !c 1 1 0->1 c 3 3 0->3 a & b & !c 2 2 0->2 a & !c 1->1 1 4 4 4->1 !a 4->4 a 3->3 b 2->0 !a & !c 2->1 !a & c 2->4 a & c 2->2 a & !c

The decompose_strength() function takes an automaton, and a string specifying which strength to preserve.

The letters used for this specification are as follows:

  • t: (inherently) terminal
  • w: (strictly inherently) weak
  • s: strong

For instance if we want to preserve only the strictly inherently weak part of this automaton, we should get only the SCC with the self-loop on $b$, and the SCC above it so that we can reach it. However the SCC above is not stricly weak, so it should not accept any word in the new automaton.

In [3]:
spot.decompose_scc(aut, 'w')
Out[3]:
Inf( ) [Büchi] cluster_0 cluster_1 0 0 I->0 0->0 !a & !c 2 2 0->2 a & b & !c 1 1 0->1 a & !c 2->2 b 1->0 !a & !c 1->1 a & !c

Similarly, we can extract all the behaviors captured by the inherently terminal part of the automaton:

In [4]:
spot.decompose_scc(aut, 't')
Out[4]:
Inf( ) [Büchi] cluster_0 cluster_1 cluster_2 0 0 I->0 0->0 !a & !c 1 1 0->1 c 2 2 0->2 a & !c 1->1 1 3 3 3->1 !a 3->3 a 2->0 !a & !c 2->1 !a & c 2->3 a & c 2->2 a & !c

Here is the strong part:

In [5]:
strong = spot.decompose_scc(aut, 's'); strong
Out[5]:
Inf( ) [Büchi] cluster_0 0 0 I->0 0->0 !a & !c 1 1 0->1 a & !c 1->0 !a & !c 1->1 a & !c

The union of these three automata recognize the same language as the original automaton.

The application proposed in the aforementioned TACAS'13 paper is for parallelizing model checking. Instead of testing the emptiness of the product between aut and a system, one could test the emptiness 3 products in parallel: each with a sub-automaton of different strength. Model checking using weak and terminal automata can be done with much more simpler emptiness check procedures than needed for the general case. So in effect, we have isolated the "hard" (i.e. strong) part of the original automaton in a smaller automaton, and we only need to use a full-fledged emptiness check for this case.

An additional bonus is that it is possible that the simplification algorithms will do a better job at simplifying the sub-automata than at simplifying the original aut. For instance here the strong automaton can be further simplified:

In [6]:
strong.postprocess('small')
Out[6]:
Inf( ) [Büchi] cluster_0 0 0 I->0 0->0 a & !c 0->0 !a & !c

Multi-strength extraction

The string passed to decompose_strength() can include multiple letters to extract multiple strengths at once.

In [7]:
for opt in ('sw', 'st', 'wt'):
    a = spot.decompose_scc(aut, opt)
    a.set_name("option: " + opt)
    display(a)
option: sw option: sw Inf( ) [Büchi] cluster_0 cluster_1 0 0 I->0 0->0 !a & !c 2 2 0->2 a & b & !c 1 1 0->1 a & !c 2->2 b 1->0 !a & !c 1->1 a & !c
option: st option: st Inf( ) [Büchi] cluster_0 cluster_1 cluster_2 0 0 I->0 0->0 !a & !c 1 1 0->1 c 2 2 0->2 a & !c 1->1 1 3 3 3->1 !a 3->3 a 2->0 !a & !c 2->1 !a & c 2->3 a & c 2->2 a & !c
option: wt option: wt Inf( ) [Büchi] cluster_0 cluster_1 cluster_2 cluster_3 0 0 I->0 0->0 !a & !c 1 1 0->1 c 3 3 0->3 a & b & !c 2 2 0->2 a & !c 1->1 1 4 4 4->1 !a 4->4 a 3->3 b 2->0 !a & !c 2->1 !a & c 2->4 a & c 2->2 a & !c

Generalized acceptance

There is nothing that prevents the above decomposition to work with other types of acceptance.

Rabin

The following Rabin automaton was generated with

ltldo -f '(Ga -> Gb) W c' 'ltl2dstar --ltl2nba=spin:ltl2tgba@-Ds' -H | autfilt -H --merge-transitions

(The autfilt -H --merge-transitions pass is just here to reduce the size of the file and make the automaton more readable.)

In [8]:
aut = spot.automaton("""
HOA: v1 States: 9 Start: 2 AP: 3 "a" "b" "c" acc-name: Rabin 2 Acceptance:
4 (Fin(0) & Inf(1)) | (Fin(2) & Inf(3)) properties: trans-labels
explicit-labels state-acc complete properties: deterministic --BODY--
State: 0 {2} [0&!2] 0 [0&2] 1 [!0&!2] 5 [!0&2] 6 State: 1 {2} [0] 1 [!0]
6 State: 2 {2} [0&!1&!2] 3 [0&1&!2] 4 [!0&!2] 5 [2] 6 State: 3 {1 2}
[0&!2] 0 [0&2] 1 [!0&!2] 5 [!0&2] 6 State: 4 {1 2} [0&!1&!2] 0 [0&!1&2]
1 [!0&!2] 5 [!0&2] 6 [0&1&!2] 7 [0&1&2] 8 State: 5 {1 2} [0&!1&!2] 0
[!0&!2] 5 [2] 6 [0&1&!2] 7 State: 6 {1 2} [t] 6 State: 7 {3} [0&!1&!2]
0 [0&!1&2] 1 [!0&!2] 5 [!0&2] 6 [0&1&!2] 7 [0&1&2] 8 State: 8 {3} [0&!1]
1 [!0] 6 [0&1] 8 --END--""")
aut
Out[8]:
(Fin( ) & Inf( )) | (Fin( ) & Inf( )) [Rabin 2] cluster_0 cluster_1 cluster_2 cluster_3 cluster_4 cluster_5 cluster_6 2 2 I->2 6 6 2->6 c 5 5 2->5 !a & !c 3 3 2->3 a & !b & !c 4 4 2->4 a & b & !c 6->6 1 1 1 1->6 !a 1->1 a 8 8 8->6 !a 8->1 a & !b 8->8 a & b 0 0 0->6 !a & c 0->1 a & c 0->0 a & !c 0->5 !a & !c 5->6 c 5->0 a & !b & !c 5->5 !a & !c 7 7 5->7 a & b & !c 7->6 !a & c 7->1 a & !b & c 7->8 a & b & c 7->0 a & !b & !c 7->5 !a & !c 7->7 a & b & !c 3->6 !a & c 3->1 a & c 3->0 a & !c 3->5 !a & !c 4->6 !a & c 4->1 a & !b & c 4->8 a & b & c 4->0 a & !b & !c 4->5 !a & !c 4->7 a & b & !c

Let's decompose it into three strengths:

In [9]:
for (name, opt) in (('terminal', 't'), ('strictly weak', 'w'), ('strong', 's')):
    a = spot.decompose_scc(aut, opt)
    a.set_name(name)
    display(a)
terminal terminal Inf( ) [Büchi] cluster_0 cluster_1 cluster_2 cluster_3 cluster_4 cluster_5 cluster_6 0 0 I->0 4 4 0->4 c 3 3 0->3 !a & !c 1 1 0->1 a & !b & !c 2 2 0->2 a & b & !c 4->4 1 7 7 7->4 !a 7->7 a 8 8 8->4 !a 8->7 a & !b 8->8 a & b 5 5 5->4 !a & c 5->7 a & c 5->5 a & !c 5->3 !a & !c 3->4 c 3->5 a & !b & !c 3->3 !a & !c 6 6 3->6 a & b & !c 6->4 !a & c 6->7 a & !b & c 6->8 a & b & c 6->5 a & !b & !c 6->3 !a & !c 6->6 a & b & !c 1->4 !a & c 1->7 a & c 1->5 a & !c 1->3 !a & !c 2->4 !a & c 2->7 a & !b & c 2->8 a & b & c 2->5 a & !b & !c 2->3 !a & !c 2->6 a & b & !c
strictly weak strictly weak Inf( ) [Büchi] cluster_0 cluster_1 cluster_2 cluster_3 cluster_4 0 0 I->0 3 3 0->3 !a & !c 1 1 0->1 a & !b & !c 2 2 0->2 a & b & !c 6 6 6->6 a & b 4 4 4->4 a & !c 4->3 !a & !c 3->4 a & !b & !c 3->3 !a & !c 5 5 3->5 a & b & !c 5->6 a & b & c 5->4 a & !b & !c 5->3 !a & !c 5->5 a & b & !c 1->4 a & !c 1->3 !a & !c 2->6 a & b & c 2->4 a & !b & !c 2->3 !a & !c 2->5 a & b & !c
strong strong (Fin( ) & Inf( )) | (Fin( ) & Inf( )) [Rabin 2] cluster_0 cluster_1 cluster_2 cluster_3 0 0 I->0 3 3 0->3 !a & !c 1 1 0->1 a & !b & !c 2 2 0->2 a & b & !c 4 4 4->4 a & !c 4->3 !a & !c 3->4 a & !b & !c 3->3 !a & !c 5 5 3->5 a & b & !c 5->4 a & !b & !c 5->3 !a & !c 5->5 a & b & !c 1->4 a & !c 1->3 !a & !c 2->4 a & !b & !c 2->3 !a & !c 2->5 a & b & !c

Note how the two weak automata (i.e., stricly weak and terminal) are now using a Büchi acceptance condition (because that is sufficient for weak automata) while the strong automaton inherited the original acceptance condition.

When extracting multiple strengths and one of the strength is strong, we preserve the original acceptance. For instance extracting strong and inherently terminal gives the following automaton, where only stricly inherently weak SCCs have become rejecting.

In [10]:
spot.decompose_scc(aut, "st")
Out[10]:
(Fin( ) & Inf( )) | (Fin( ) & Inf( )) [Rabin 2] cluster_0 cluster_1 cluster_2 cluster_3 cluster_4 cluster_5 cluster_6 0 0 I->0 4 4 0->4 c 3 3 0->3 !a & !c 1 1 0->1 a & !b & !c 2 2 0->2 a & b & !c 4->4 1 7 7 7->4 !a 7->7 a 8 8 8->4 !a 8->7 a & !b 8->8 a & b 5 5 5->4 !a & c 5->7 a & c 5->5 a & !c 5->3 !a & !c 3->4 c 3->5 a & !b & !c 3->3 !a & !c 6 6 3->6 a & b & !c 6->4 !a & c 6->7 a & !b & c 6->8 a & b & c 6->5 a & !b & !c 6->3 !a & !c 6->6 a & b & !c 1->4 !a & c 1->7 a & c 1->5 a & !c 1->3 !a & !c 2->4 !a & c 2->7 a & !b & c 2->8 a & b & c 2->5 a & !b & !c 2->3 !a & !c 2->6 a & b & !c

The weak automata seem to be good candidates for further simplification. Let's add a call to postprocess() to our decomposition loop, trying to preserve the determinism and state-based acceptance of the original automaton.

In [11]:
for (name, opt) in (('inherently terminal', 't'), ('strictly inherently weak', 'w'), ('strong', 's')):
    a = spot.decompose_scc(aut, opt).postprocess('deterministic', 'SBAcc')
    a.set_name(name)
    display(a)
inherently terminal inherently terminal Inf( ) [Büchi] cluster_0 cluster_1 cluster_2 2 2 I->2 2->2 !a & !c 0 0 2->0 c 3 3 2->3 a & !c 0->0 1 1 1 1->0 !a 1->1 a 3->2 !a & !c 3->0 !a & c 3->1 a & c 3->3 a & !c
strictly inherently weak strictly inherently weak Inf( ) [Büchi] cluster_0 cluster_1 2 2 I->2 2->2 !a & !c 1 1 2->1 a & !b & !c 3 3 2->3 a & b & !c 0 0 0->0 a & b 1->2 !a & !c 1->1 a & !c 3->2 !a & !c 3->0 a & b & c 3->1 a & !b & !c 3->3 a & b & !c
strong strong Inf( ) | (Fin( ) & Inf( )) [parity min even 3] cluster_0 cluster_1 0 0 I->0 1 1 0->1 (b & !c) | (!a & !c) 2 2 0->2 a & !b & !c 1->1 !a & !c 1->2 a & !b & !c 3 3 1->3 a & b & !c 2->1 !a & !c 2->2 a & !c 3->1 !a & !c 3->2 a & !b & !c 3->3 a & b & !c

Streett

Since this notebook also serves as a test suite, let's try a Streett automaton. This one was generated with

ltldo -f '(Ga -> Gb) W c' 'ltl2dstar --automata=streett --ltl2nba=spin:ltl2tgba@-Ds' -H | 
autfilt -H --merge-transitions
In [12]:
aut = spot.automaton("""
HOA: v1 States: 8 Start: 7 AP: 3 "a" "b" "c" acc-name: Streett
2 Acceptance: 4 (Fin(0) | Inf(1)) & (Fin(2) | Inf(3)) properties:
trans-labels explicit-labels state-acc complete properties: deterministic
--BODY-- State: 0 {2} [0&1] 0 [0&!1] 3 [!0] 4 State: 1 {2} [0&1&2]
0 [0&1&!2] 1 [0&!1&!2] 2 [0&!1&2] 3 [!0&2] 4 [!0&!2] 7 State: 2 {2}
[0&1&!2] 1 [0&!1&!2] 2 [0&2] 3 [!0&2] 4 [!0&!2] 7 State: 3 {0 3} [0] 3
[!0] 4 State: 4 {1 3} [t] 4 State: 5 {3} [0&!1] 3 [!0] 4 [0&1] 5 State:
6 {3} [0&!1&!2] 2 [0&!1&2] 3 [!0&2] 4 [0&1&2] 5 [0&1&!2] 6 [!0&!2]
7 State: 7 {3} [0&!1&!2] 2 [2] 4 [0&1&!2] 6 [!0&!2] 7 --END--""")
aut
Out[12]:
(Fin( ) | Inf( )) & (Fin( ) | Inf( )) [Streett 2] cluster_0 cluster_1 cluster_2 cluster_3 cluster_4 7 7 I->7 7->7 !a & !c 4 4 7->4 c 2 2 7->2 a & !b & !c 6 6 7->6 a & b & !c 4->4 1 3 3 3->4 !a 3->3 a 0 0 0->4 !a 0->3 a & !b 0->0 a & b 5 5 5->4 !a 5->3 a & !b 5->5 a & b 2->7 !a & !c 2->4 !a & c 2->3 a & c 2->2 a & !b & !c 1 1 2->1 a & b & !c 1->7 !a & !c 1->4 !a & c 1->3 a & !b & c 1->0 a & b & c 1->2 a & !b & !c 1->1 a & b & !c 6->7 !a & !c 6->4 !a & c 6->3 a & !b & c 6->5 a & b & c 6->2 a & !b & !c 6->6 a & b & !c
In [13]:
for (name, opt) in (('inherently terminal', 't'), ('strictly inherently weak', 'w'), ('strong', 's')):
    a = spot.decompose_strength(aut, opt)
    a.set_name(name)
    display(a)
inherently terminal inherently terminal Inf( ) [Büchi] cluster_0 cluster_1 cluster_2 cluster_3 cluster_4 0 0 I->0 0->0 !a & !c 2 2 0->2 c 1 1 0->1 a & !b & !c 3 3 0->3 a & b & !c 2->2 1 4 4 4->2 !a 4->4 a 7 7 7->2 !a 7->4 a & !b 7->7 a & b 5 5 5->2 !a 5->4 a & !b 5->5 a & b 1->0 !a & !c 1->2 !a & c 1->4 a & c 1->1 a & !b & !c 6 6 1->6 a & b & !c 6->0 !a & !c 6->2 !a & c 6->4 a & !b & c 6->7 a & b & c 6->1 a & !b & !c 6->6 a & b & !c 3->0 !a & !c 3->2 !a & c 3->4 a & !b & c 3->5 a & b & c 3->1 a & !b & !c 3->3 a & b & !c
strictly inherently weak strictly inherently weak Inf( ) [Büchi] cluster_0 cluster_1 0 0 I->0 0->0 !a & !c 1 1 0->1 a & !b & !c 2 2 0->2 a & b & !c 3 3 3->3 a & b 1->0 !a & !c 1->1 a & !b & !c 4 4 1->4 a & b & !c 4->0 !a & !c 4->1 a & !b & !c 4->4 a & b & !c 2->0 !a & !c 2->3 a & b & c 2->1 a & !b & !c 2->2 a & b & !c
strong strong (Fin( ) | Inf( )) & (Fin( ) | Inf( )) [Streett 2] cluster_0 0 0 I->0 0->0 !a & !c 1 1 0->1 a & !b & !c 2 2 0->2 a & b & !c 1->0 !a & !c 1->1 a & !b & !c 3 3 1->3 a & b & !c 3->0 !a & !c 3->1 a & !b & !c 3->3 a & b & !c 2->0 !a & !c 2->1 a & !b & !c 2->2 a & b & !c

The subtlety of Streett acceptance is that a path that does not visit any accepting set infinitely often is accepting. So when disabling SCCs, we must be careful to label them with a combination of rejecting acceptance sets.

This is easy to understand using an example. In the following extraction of the strong and inherently terminal parts, the rejecting SCCs (that were either rejecting or strictly inherently weak originally) have been labeled by the same acceptance sets, to ensure that they are rejected.

In [14]:
spot.decompose_scc(aut, 'st')
Out[14]:
(Fin( ) | Inf( )) & (Fin( ) | Inf( )) [Streett 2] cluster_0 cluster_1 cluster_2 cluster_3 cluster_4 0 0 I->0 0->0 !a & !c 2 2 0->2 c 1 1 0->1 a & !b & !c 3 3 0->3 a & b & !c 2->2 1 4 4 4->2 !a 4->4 a 7 7 7->2 !a 7->4 a & !b 7->7 a & b 5 5 5->2 !a 5->4 a & !b 5->5 a & b 1->0 !a & !c 1->2 !a & c 1->4 a & c 1->1 a & !b & !c 6 6 1->6 a & b & !c 6->0 !a & !c 6->2 !a & c 6->4 a & !b & c 6->7 a & b & c 6->1 a & !b & !c 6->6 a & b & !c 3->0 !a & !c 3->2 !a & c 3->4 a & !b & c 3->5 a & b & c 3->1 a & !b & !c 3->3 a & b & !c

Corner cases

When the acceptance condition is always satisfiable, all non-trivial SCCs are accepting, and inherently weak.

This include acceptances like Acceptance: 0 t, but also trickier ones like Acceptance: 1 Inf(0) | Fin(0) that you can make as complex as you fancy.

Acceptance: 0 t

This occur frequently whant translating LTL formulas that are safety properties:

In [15]:
aut = spot.translate('(Gb|c) R a', 'any'); aut
Out[15]:
t [all] cluster_0 cluster_1 cluster_2 0 0 I->0 0->0 a & !c 1 1 0->1 a & c 2 2 0->2 a & b & !c 1->1 1 2->2 b
In [16]:
# There is no strong part for this automaton
assert spot.decompose_scc(aut, 's') is None
In [17]:
for opt in ('w', 't'):
    display(spot.decompose_scc(aut, opt))
Inf( ) [Büchi] cluster_0 cluster_1 0 0 I->0 0->0 a & !c 1 1 0->1 a & b & !c 1->1 b
Inf( ) [Büchi] cluster_0 cluster_1 0 0 I->0 0->0 a & !c 1 1 0->1 a & c 1->1 1

If we try to extract multiple strengths and include the (empty) strong part, this request will simply be ignored:

In [18]:
spot.decompose_scc(aut, 'st')
Out[18]:
Inf( ) [Büchi] cluster_0 cluster_1 0 0 I->0 0->0 a & !c 1 1 0->1 a & c 1->1 1

Note that the above is exactly the output of decompose_strength(aut, 't'). The 's' flag was actively ignored. If 's' had not been ignored an the automaton processed as if its strong part had to be preserved, the original acceptance conditions would have been used, and this would have prevented the disabling of the initial SCC.

Acceptance: 1 Inf(0) | Fin(0)

This acceptance could be replaced by Acceptance: 0 t without altering the language of the automaton. However its use of acceptance sets allows us to define some automata with SCCs that are inherently weak but not weak.

In [19]:
aut = spot.automaton("""
HOA: v1
States: 4
Start: 0
AP: 1 "a"
Acceptance: 1 Inf(0) | Fin(0)
--BODY--
State: 0
[0] 0 
[!0] 1
State: 1
[0] 1 
[!0] 2 {0}
State: 2
[0] 1
[!0] 3
State: 3
[t] 3 {0}
--END--
""")
aut
Out[19]:
Inf( ) | Fin( ) [Streett-like 1] cluster_0 cluster_1 cluster_2 0 0 I->0 0->0 a 1 1 0->1 !a 3 3 3->3 1 1->1 a 2 2 1->2 !a 2->3 !a 2->1 a

By our definitions, SCC $\{0\}$ and $\{1,2\}$ are inherently weak, and SCC $\{3\}$ is terminal.

In [20]:
for (name, opt) in (('terminal', 't'), ('strictly weak', 'w'), ('strong', 's'), ('all strengths', 'swt')):
    a = spot.decompose_scc(aut, opt)
    if a:
        a.set_name(name)
        display(a)
    else:
        print("no output for " + name)
terminal terminal Inf( ) [Büchi] cluster_0 cluster_1 cluster_2 0 0 I->0 0->0 a 1 1 0->1 !a 3 3 3->3 1 1->1 a 2 2 1->2 !a 2->3 !a 2->1 a
strictly weak strictly weak Inf( ) [Büchi] cluster_0 cluster_1 0 0 I->0 0->0 a 1 1 0->1 !a 1->1 a 2 2 1->2 !a 2->1 a
no output for strong
all strengths all strengths Inf( ) [Büchi] cluster_0 cluster_1 cluster_2 0 0 I->0 0->0 a 1 1 0->1 !a 3 3 3->3 1 1->1 a 2 2 1->2 !a 2->3 !a 2->1 a

decompose_scc() by SCC number

Decompose SCC can also be called by SCC numbers. The example below show the different SCC numbers and the state they contains, before extracting the sub-automaton containing SCC 0 and 1 (i.e., anything leading to states 1 and 4 of the original automaton). This example also shows that when an scc_info is available for to automaton to decompose, it can be passed to decompose_scc() in lieu of the automaton: doing so is faster because decompose_scc() does not need to rebuild this object.

In [21]:
aut = spot.translate('(Ga -> Gb) W c')
si = spot.scc_info(aut)
for scc in range(si.scc_count()):
    print("SCC #{} contains states {}".format(scc, list(si.states_of(scc))))
display(aut)
spot.decompose_scc(si, '0,1')
SCC #0 contains states [1]
SCC #1 contains states [4]
SCC #2 contains states [3]
SCC #3 contains states [0, 2]
Inf( ) [Büchi] cluster_0 cluster_1 cluster_2 cluster_3 0 0 I->0 0->0 !a & !c 1 1 0->1 c 3 3 0->3 a & b & !c 2 2 0->2 a & !c 1->1 1 4 4 4->1 !a 4->4 a 3->3 b 2->0 !a & !c 2->1 !a & c 2->4 a & c 2->2 a & !c
Out[21]:
Inf( ) [Büchi] cluster_0 cluster_1 cluster_2 0 0 I->0 0->0 !a & !c 1 1 0->1 c 2 2 0->2 a & !c 1->1 1 3 3 3->1 !a 3->3 a 2->0 !a & !c 2->1 !a & c 2->3 a & c 2->2 a & !c

If an SCC number N is prefixed by a, it signifies that we want to extract the (N+1)th accepting SCC. In the above example SCC 1 is rejecting so a0, a1, and a2 denote respectively SCCs 0, 2, and 3.

In [22]:
spot.decompose_scc(si, 'a2')
Out[22]:
Inf( ) [Büchi] cluster_0 0 0 I->0 0->0 !a & !c 1 1 0->1 a & !c 1->0 !a & !c 1->1 a & !c