dot: fix #393
* spot/twaalgos/dot.cc: Add support for option 'E', and default to rectangle nodes for large labels. * bin/common_aoutput.cc, NEWS: Document it. * tests/core/alternating.test, tests/core/dstar.test, tests/core/readsave.test, tests/core/sccdot.test, tests/core/tgbagraph.test, tests/python/_product_weak.ipynb, tests/python/alternation.ipynb, tests/python/atva16-fig2b.ipynb, tests/python/automata.ipynb, tests/python/decompose.ipynb, tests/python/gen.ipynb, tests/python/highlighting.ipynb, tests/python/ltsmin-dve.ipynb, tests/python/ltsmin-pml.ipynb, tests/python/parity.ipynb, tests/python/pdegen.py, tests/python/satmin.ipynb, tests/python/stutter-inv.ipynb: Adjust all test cases.
This commit is contained in:
parent
3ea63e9a75
commit
a7051b32c8
21 changed files with 12774 additions and 12603 deletions
13
NEWS
13
NEWS
|
|
@ -36,6 +36,12 @@ New in spot 2.8.7.dev (not yet released)
|
|||
- ltlsynt --algo=lar uses the new version of to_parity() mentionned
|
||||
below. The old version is available via --algo=lar.old
|
||||
|
||||
- The dot printer is now automatically using rectangles with rounded
|
||||
corners for automata states if one state label have five or more
|
||||
characters. This saves space with very long labels. Use --dot=c,
|
||||
--dot=e, or --dot=E to force the use of Circles, Ellipses, or
|
||||
rEctangles.
|
||||
|
||||
Library:
|
||||
|
||||
- Historically, Spot only supports LTL with infinite semantics
|
||||
|
|
@ -110,6 +116,13 @@ New in spot 2.8.7.dev (not yet released)
|
|||
dealing with n-ary operators and isolating subsets of operands
|
||||
that can be relabeled as a single term.
|
||||
|
||||
- print_dot() default was changed to use circles for automata with
|
||||
fewer than 10 unamed states, ellipses for automata with up to 1000
|
||||
unamed states (or named states with up to 4 characters), and
|
||||
rounded rectangles otherwise. Rectangles are also used for
|
||||
automata with acceptance bullets on states. The new "E" option
|
||||
can be used to force rectangles in all situations.
|
||||
|
||||
Backward-incompatible changes:
|
||||
|
||||
- iar() and iar_maybe() have been moved from
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2012-2019 Laboratoire de Recherche et Développement
|
||||
// Copyright (C) 2012-2020 Laboratoire de Recherche et Développement
|
||||
// de l'Epita (LRDE).
|
||||
//
|
||||
// This file is part of Spot, a model checking library.
|
||||
|
|
@ -97,7 +97,7 @@ static const argp_option options[] =
|
|||
/**************************************************/
|
||||
{ nullptr, 0, nullptr, 0, "Output format:", 3 },
|
||||
{ "dot", 'd',
|
||||
"1|a|A|b|B|c|C(COLOR)|e|f(FONT)|h|k|K|n|N|o|r|R|s|t|u|v|y|+INT|<INT|#",
|
||||
"1|a|A|b|B|c|C(COLOR)|e|E|f(FONT)|h|k|K|n|N|o|r|R|s|t|u|v|y|+INT|<INT|#",
|
||||
OPTION_ARG_OPTIONAL,
|
||||
"GraphViz's format. Add letters for "
|
||||
"(1) force numbered states, "
|
||||
|
|
@ -109,6 +109,7 @@ static const argp_option options[] =
|
|||
"(C) color nodes with COLOR, "
|
||||
"(d) show origins when known, "
|
||||
"(e) force elliptic nodes, "
|
||||
"(E) force rEctangular nodes, "
|
||||
"(f(FONT)) use FONT, "
|
||||
"(g) hide edge labels, "
|
||||
"(h) horizontal layout, "
|
||||
|
|
|
|||
|
|
@ -86,7 +86,9 @@ namespace spot
|
|||
acc_cond::mark_t inf_sets_ = {};
|
||||
acc_cond::mark_t fin_sets_ = {};
|
||||
unsigned opt_shift_sets_ = 0;
|
||||
enum { ShapeAuto = 0, ShapeCircle, ShapeEllipse } opt_shape_ = ShapeAuto;
|
||||
enum { ShapeAuto = 0, ShapeCircle, ShapeEllipse,
|
||||
ShapeRectangle } opt_shape_ = ShapeAuto;
|
||||
const char* extrastyle = "";
|
||||
bool opt_force_acc_trans_ = false;
|
||||
bool opt_vertical_ = false;
|
||||
bool opt_name_ = false;
|
||||
|
|
@ -254,6 +256,9 @@ namespace spot
|
|||
case 'e':
|
||||
opt_shape_ = ShapeEllipse;
|
||||
break;
|
||||
case 'E':
|
||||
opt_shape_ = ShapeRectangle;
|
||||
break;
|
||||
case 'f':
|
||||
if (*options != '(')
|
||||
throw std::runtime_error
|
||||
|
|
@ -495,7 +500,8 @@ namespace spot
|
|||
return;
|
||||
std::string dest = string_dst(dst, color_num);
|
||||
if (univ == 0)
|
||||
os_ << " " << dest << " [label=<>,shape=point]\n";
|
||||
os_ << " " << dest
|
||||
<< " [label=<>,shape=point,width=0.05,height=0.05]\n";
|
||||
if (print_edges)
|
||||
{
|
||||
for (unsigned d: aut_->univ_dests(dst))
|
||||
|
|
@ -603,14 +609,18 @@ namespace spot
|
|||
os_ << " node [shape=\"circle\"]\n";
|
||||
break;
|
||||
case ShapeEllipse:
|
||||
// Do not print anything. Ellipse is
|
||||
// the default shape used by GraphViz.
|
||||
// Ellipse is the default shape used by GraphViz, but
|
||||
// with set width and height so it's a circle when possible.
|
||||
os_ << " node [shape=\"ellipse\",width=\"0.5\",height=\"0.5\"]\n";
|
||||
break;
|
||||
case ShapeRectangle:
|
||||
os_ << " node [shape=\"box\",style=\"rounded\",width=\"0.5\"]\n";
|
||||
break;
|
||||
case ShapeAuto:
|
||||
SPOT_UNREACHABLE();
|
||||
}
|
||||
if (!opt_node_color_.empty())
|
||||
os_ << " node [style=\"filled\", fillcolor=\""
|
||||
os_ << " node [style=\"filled" << extrastyle << "\", fillcolor=\""
|
||||
<< opt_node_color_ << "\"]\n";
|
||||
if (!opt_font_.empty())
|
||||
os_ << " fontname=\"" << opt_font_
|
||||
|
|
@ -713,7 +723,7 @@ namespace spot
|
|||
auto iter = highlight_states_->find(s);
|
||||
if (iter != highlight_states_->end())
|
||||
{
|
||||
os_ << ", style=\"bold";
|
||||
os_ << ", style=\"bold" << extrastyle;
|
||||
if (!opt_node_color_.empty())
|
||||
os_ << ",filled";
|
||||
os_ << "\", color=\"" << palette[iter->second % palette_mod]
|
||||
|
|
@ -884,7 +894,8 @@ namespace spot
|
|||
if (opt_name_)
|
||||
name_ = graph_name_;
|
||||
mark_states_ = (!opt_force_acc_trans_
|
||||
&& aut_->prop_state_acc().is_true());
|
||||
&& aut_->prop_state_acc().is_true()
|
||||
&& aut_->num_sets() > 0);
|
||||
dcircles_ = (mark_states_
|
||||
&& (!opt_bullet || opt_bullet_but_buchi)
|
||||
&& (aut_->acc().is_buchi() || aut_->acc().is_co_buchi()));
|
||||
|
|
@ -892,22 +903,37 @@ namespace spot
|
|||
{
|
||||
if ((inline_state_names_ && (sn_ || sprod_ || opt_state_labels_))
|
||||
|| (opt_state_labels_ && opt_latex_)
|
||||
|| aut->num_states() > 100
|
||||
|| aut->num_states() > 1000
|
||||
|| (mark_states_ && !dcircles_)
|
||||
|| orig_)
|
||||
{
|
||||
opt_shape_ = ShapeRectangle;
|
||||
// If all state names are very short, prefer ellipses.
|
||||
if (!opt_state_labels_ && !orig_
|
||||
&& !(mark_states_ && !dcircles_)
|
||||
&& ((sn_ && std::all_of(sn_->begin(), sn_->end(),
|
||||
[](const std::string& s)
|
||||
{ return s.size() <= 4; }))
|
||||
|| (sprod_ && std::all_of(sprod_->begin(),
|
||||
sprod_->end(),
|
||||
[](auto p)
|
||||
{
|
||||
return (p.first < 100
|
||||
&& p.second < 100);
|
||||
}))))
|
||||
opt_shape_ = ShapeEllipse;
|
||||
}
|
||||
else if (aut->num_states() > 10)
|
||||
{
|
||||
opt_shape_ = ShapeEllipse;
|
||||
// If all state names are short, prefer circles.
|
||||
if (!opt_state_labels_ && !orig_ &&
|
||||
sn_ && std::all_of(sn_->begin(), sn_->end(),
|
||||
[](const std::string& s)
|
||||
{ return s.size() <= 2; }))
|
||||
opt_shape_ = ShapeCircle;
|
||||
}
|
||||
else
|
||||
{
|
||||
opt_shape_ = ShapeCircle;
|
||||
}
|
||||
}
|
||||
if (opt_shape_ == ShapeRectangle)
|
||||
extrastyle = ",rounded";
|
||||
auto si =
|
||||
std::unique_ptr<scc_info>(opt_scc_ ? new scc_info(aut) : nullptr);
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright (C) 2016-2018 Laboratoire de Recherche et Développement
|
||||
# de l'Epita (LRDE).
|
||||
# Copyright (C) 2016-2018, 2020 Laboratoire de Recherche et
|
||||
# Développement de l'Epita (LRDE).
|
||||
#
|
||||
# This file is part of Spot, a model checking library.
|
||||
#
|
||||
|
|
@ -62,6 +62,7 @@ digraph "" {
|
|||
rankdir=LR
|
||||
label="Fin(⓿)\n[co-Büchi]"
|
||||
labelloc="t"
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> -11 [arrowhead=onormal]
|
||||
subgraph cluster_0 {
|
||||
|
|
@ -88,7 +89,7 @@ digraph "" {
|
|||
color=green
|
||||
label=""
|
||||
3 [label="GF(b)"]
|
||||
-8 [label=<>,shape=point]
|
||||
-8 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
}
|
||||
subgraph cluster_5 {
|
||||
color=red
|
||||
|
|
@ -100,15 +101,15 @@ digraph "" {
|
|||
label=""
|
||||
0 [label="((((a) U (b)) && GF(b)) && FG(a))"]
|
||||
}
|
||||
-11 [label=<>,shape=point]
|
||||
-11 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-11 -> 0
|
||||
-11 -> 2
|
||||
0 -> -1 [label="b", arrowhead=onormal]
|
||||
-1 [label=<>,shape=point]
|
||||
-1 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-1 -> 1
|
||||
-1 -> 3
|
||||
0 -> -4 [label="a & !b", style=bold, color="#E31A1C", arrowhead=onormal]
|
||||
-4 [label=<>,shape=point]
|
||||
-4 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-4 -> 1 [style=bold, color="#E31A1C"]
|
||||
-4 -> 3 [style=bold, color="#E31A1C"]
|
||||
-4 -> 5 [style=bold, color="#E31A1C"]
|
||||
|
|
@ -506,23 +507,23 @@ digraph "" {
|
|||
rankdir=LR
|
||||
label=<Fin(<font color="#1F78B4">⓿</font>)<br/>[co-Büchi]>
|
||||
labelloc="t"
|
||||
node [shape="circle"]
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
fontname="Lato"
|
||||
node [fontname="Lato"]
|
||||
edge [fontname="Lato"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> -1 [arrowhead=onormal]
|
||||
-1 [label=<>,shape=point]
|
||||
-1 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-1 -> 0
|
||||
-1 -> 1
|
||||
0 [label=<0>]
|
||||
0 -> 0 [label=<!a & !c>]
|
||||
0 -> -1.1 [label=<a & b & !c>, style=bold, color="#FF4DA0", $style]
|
||||
-1.1 [label=<>,shape=point]
|
||||
-1.1 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-1.1 -> 0 [style=bold, color="#FF4DA0"]
|
||||
-1.1 -> 1 [style=bold, color="#FF4DA0"]
|
||||
0 -> -1.2 [label=<a & !c>, style=bold, color="#FF7F00", arrowhead=onormal]
|
||||
-1.2 [label=<>,shape=point]
|
||||
-1.2 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-1.2 -> 0 [style=bold, color="#FF7F00"]
|
||||
-1.2 -> 1 [style=bold, color="#FF7F00"]
|
||||
1 [label=<1>]
|
||||
|
|
@ -569,6 +570,7 @@ digraph "SLAA for c R (c | G(a & b) | (F!b & F!a))" {
|
|||
rankdir=LR
|
||||
label=<Fin($color1) & Fin($color)<br/>[Streett-like 2]>
|
||||
labelloc="t"
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
fontname="Lato"
|
||||
node [fontname="Lato"]
|
||||
edge [fontname="Lato"]
|
||||
|
|
@ -598,10 +600,10 @@ digraph "SLAA for c R (c | G(a & b) | (F!b & F!a))" {
|
|||
color=green
|
||||
label=""
|
||||
0 [label=<c R (c | G(a & b) | (F!b & F!a))>]
|
||||
-1 [label=<>,shape=point]
|
||||
-4 [label=<>,shape=point]
|
||||
-7 [label=<>,shape=point]
|
||||
-10 [label=<>,shape=point]
|
||||
-1 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-4 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-7 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-10 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
}
|
||||
0 -> 4 [label=<c>]
|
||||
0 -> 0 [label=<!a & !b & !c>]
|
||||
|
|
@ -665,6 +667,7 @@ digraph "SLAA for c R (c | G(a & b) | (F!b & F!a))" {
|
|||
rankdir=LR
|
||||
label=<Fin($color1) & Fin($color)<br/>[Streett-like 2]>
|
||||
labelloc="t"
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
fontname="Lato"
|
||||
node [fontname="Lato"]
|
||||
edge [fontname="Lato"]
|
||||
|
|
@ -689,11 +692,11 @@ digraph "SLAA for c R (c | G(a & b) | (F!b & F!a))" {
|
|||
color=green
|
||||
label=""
|
||||
0 [label=<c R (c | G(a & b) | (F!b & F!a))>]
|
||||
-1 [label=<>,shape=point]
|
||||
-4 [label=<>,shape=point]
|
||||
-7 [label=<>,shape=point]
|
||||
-1 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-4 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-7 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
1 [label=<G(a & b)>]
|
||||
-10 [label=<>,shape=point]
|
||||
-10 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
}
|
||||
0 -> 4 [label=<c>]
|
||||
0 -> 0 [label=<!a & !b & !c>]
|
||||
|
|
@ -745,7 +748,7 @@ digraph "" {
|
|||
rankdir=LR
|
||||
label=<Fin(<font color="#1F78B4">⓿</font>)<br/>[co-Büchi]>
|
||||
labelloc="t"
|
||||
node [shape="circle"]
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
fontname="Lato"
|
||||
node [fontname="Lato"]
|
||||
edge [fontname="Lato"]
|
||||
|
|
@ -753,14 +756,14 @@ digraph "" {
|
|||
I -> 0
|
||||
0 [label=<0>]
|
||||
0 -> -1.1 [label=<b & c>, style=bold, color="#FF4DA0", arrowhead=onormal]
|
||||
-1.1 [label=<>,shape=point]
|
||||
-1.1 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-1.1 -> 1 [style=bold, color="#FF4DA0"]
|
||||
-1.1 -> 2 [style=bold, color="#FF4DA0"]
|
||||
1 [label=<1>]
|
||||
1 -> -1.1 [label=<a & b>, style=bold, color="#FF4DA0", arrowhead=onormal]
|
||||
2 [label=<2>]
|
||||
2 -> -1.2 [label=<!a & !b & !c>, style=bold, color="#FF7F00", $style]
|
||||
-1.2 [label=<>,shape=point]
|
||||
-1.2 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-1.2 -> 1 [style=bold, color="#FF7F00"]
|
||||
-1.2 -> 2 [style=bold, color="#FF7F00"]
|
||||
}
|
||||
|
|
@ -792,7 +795,7 @@ digraph "" {
|
|||
rankdir=LR
|
||||
label=<Fin(<font color="#1F78B4">⓿</font>)<br/>[co-Büchi]>
|
||||
labelloc="t"
|
||||
node [shape="circle"]
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
fontname="Lato"
|
||||
node [fontname="Lato"]
|
||||
edge [fontname="Lato"]
|
||||
|
|
@ -800,17 +803,17 @@ digraph "" {
|
|||
I -> 0
|
||||
0 [label=<0>]
|
||||
0 -> -1.1 [label=<b & c>, style=bold, color="#FF4DA0", arrowhead=onormal]
|
||||
-1.1 [label=<>,shape=point]
|
||||
-1.1 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-1.1 -> 1 [style=bold, color="#FF4DA0"]
|
||||
-1.1 -> 2 [style=bold, color="#FF4DA0"]
|
||||
1 [label=<1>]
|
||||
1 -> -1.3 [label=<a & b>, style=bold, color="#6A3D9A", arrowhead=onormal]
|
||||
-1.3 [label=<>,shape=point]
|
||||
-1.3 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-1.3 -> 1 [style=bold, color="#6A3D9A"]
|
||||
-1.3 -> 2 [style=bold, color="#6A3D9A"]
|
||||
2 [label=<2>]
|
||||
2 -> -1.2 [label=<!a & !b & !c>, style=bold, color="#FF7F00", $style]
|
||||
-1.2 [label=<>,shape=point]
|
||||
-1.2 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-1.2 -> 1 [style=bold, color="#FF7F00"]
|
||||
-1.2 -> 2 [style=bold, color="#FF7F00"]
|
||||
}
|
||||
|
|
@ -848,6 +851,7 @@ digraph "SLAA for G((b & Fa) | (!b & G!a))" {
|
|||
rankdir=LR
|
||||
label=<Fin(<font color="#1F78B4">⓿</font>)<br/>[co-Büchi]>
|
||||
labelloc="t"
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
fontname="Lato"
|
||||
node [fontname="Lato"]
|
||||
edge [fontname="Lato"]
|
||||
|
|
@ -872,8 +876,8 @@ digraph "SLAA for G((b & Fa) | (!b & G!a))" {
|
|||
color=green
|
||||
label=""
|
||||
0 [label=<G((b & Fa) | (!b & G!a))>]
|
||||
-1 [label=<>,shape=point]
|
||||
-4 [label=<>,shape=point]
|
||||
-1 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
-4 [label=<>,shape=point,width=0.05,height=0.05]
|
||||
}
|
||||
0 -> 0 [label=<a & b>]
|
||||
0 -> -1 [label=<!a & b>, arrowhead=onormal]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright (C) 2013-2016, 2018 Laboratoire de Recherche et
|
||||
# Copyright (C) 2013-2016, 2018, 2020 Laboratoire de Recherche et
|
||||
# Développement de l'Epita (LRDE).
|
||||
#
|
||||
# This file is part of Spot, a model checking library.
|
||||
|
|
@ -63,7 +63,7 @@ digraph "" {
|
|||
rankdir=LR
|
||||
label="Fin(0) & Inf(1)\n[Rabin 1]"
|
||||
labelloc="t"
|
||||
node [shape="circle"]
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> 0
|
||||
0 [label="0"]
|
||||
|
|
|
|||
|
|
@ -420,6 +420,7 @@ digraph "G(Fa & Fb)" {
|
|||
rankdir=LR
|
||||
label=<Inf($zero)&Inf($one)<br/>[gen. Büchi 2]>
|
||||
labelloc="t"
|
||||
node [shape="ellipse",width="0.5",height="0.5"]
|
||||
fontname="Lato"
|
||||
node [fontname="Lato"]
|
||||
edge [fontname="Lato"]
|
||||
|
|
@ -491,6 +492,7 @@ digraph "" {
|
|||
rankdir=LR
|
||||
label="(Fin(⓿)|Fin(❸)) | (Fin(❶) & Inf(❷))\n[gen. Rabin 3]"
|
||||
labelloc="t"
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> 0
|
||||
0 [label="0"]
|
||||
|
|
@ -545,7 +547,7 @@ digraph "" {
|
|||
rankdir=LR
|
||||
label="(Fin(⓿)|Fin(❸)) | (Fin(❶) & Inf(❷))\n[gen. Rabin 3]"
|
||||
labelloc="t"
|
||||
node [shape="circle"]
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
0 [label="0"]
|
||||
1 [label="1\n⓿❸", tooltip="test me"]
|
||||
|
|
@ -568,7 +570,7 @@ diff out expected2
|
|||
cat >expected3 <<EOF
|
||||
digraph "" {
|
||||
rankdir=LR
|
||||
node [shape="circle"]
|
||||
node [shape="ellipse",width="0.5",height="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
0 [label="6", peripheries=2]
|
||||
u0 [label="...", shape=none, width=0, height=0, tooltip="hidden successors"]
|
||||
|
|
@ -891,6 +893,7 @@ run 0 autfilt -dAk input6 >output6d
|
|||
cat >expect6d <<EOF
|
||||
digraph "" {
|
||||
rankdir=LR
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> 1
|
||||
0 [label="0\nb"]
|
||||
|
|
@ -914,6 +917,7 @@ digraph "" {
|
|||
rankdir=LR
|
||||
label=<Inf(<font color="#1F78B4">⓿</font>)<br/>[Büchi]>
|
||||
labelloc="t"
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> 1
|
||||
0 [label=<0<br/>b>]
|
||||
|
|
@ -1031,14 +1035,15 @@ autfilt -dA input9 > output9
|
|||
cat >expected9 <<EOF
|
||||
digraph "a U (b U c)" {
|
||||
rankdir=LR
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> 2
|
||||
0 [label="0", peripheries=2, style="bold", color="#1F78B4"]
|
||||
0 [label="0", peripheries=2, style="bold,rounded", color="#1F78B4"]
|
||||
0 -> 0 [label="1", style=bold, color="#1F78B4"]
|
||||
1 [label="1"]
|
||||
1 -> 0 [label="c", style=bold, color="#FF4DA0"]
|
||||
1 -> 1 [label="b & !c", style=bold, color="#FF7F00"]
|
||||
2 [label="new\nline", style="bold", color="#6A3D9A"]
|
||||
2 [label="new\nline", style="bold,rounded", color="#6A3D9A"]
|
||||
2 -> 0 [label="c", style=bold, color="#6A3D9A"]
|
||||
2 -> 1 [label="!a & b & !c"]
|
||||
2 -> 2 [label="a & !c"]
|
||||
|
|
@ -1046,12 +1051,13 @@ digraph "a U (b U c)" {
|
|||
EOF
|
||||
diff output9 expected9
|
||||
autfilt -dbar input9 > output9a
|
||||
style=', style="bold", color="#1F78B4"'
|
||||
style=', style="bold,rounded", color="#1F78B4"'
|
||||
cat >expected9a <<EOF
|
||||
digraph "a U (b U c)" {
|
||||
rankdir=LR
|
||||
label=<Inf(<font color="#1F78B4">⓿</font>)<br/>[Büchi]>
|
||||
labelloc="t"
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> 2
|
||||
0 [label=<0<br/><font color="#1F78B4">⓿</font>>$style]
|
||||
|
|
@ -1059,7 +1065,7 @@ digraph "a U (b U c)" {
|
|||
1 [label=<1>]
|
||||
1 -> 0 [label=<c>, style=bold, color="#FF4DA0"]
|
||||
1 -> 1 [label=<b & !c>, style=bold, color="#FF7F00"]
|
||||
2 [label=<new<br/>line>, style="bold", color="#6A3D9A"]
|
||||
2 [label=<new<br/>line>, style="bold,rounded", color="#6A3D9A"]
|
||||
2 -> 0 [label=<c>, style=bold, color="#6A3D9A"]
|
||||
2 -> 1 [label=<!a & b & !c>]
|
||||
2 -> 2 [label=<a & !c>]
|
||||
|
|
@ -1097,6 +1103,7 @@ ltl2tgba 'a U b' | autfilt --remove-ap=b=0 --name=%M --dot=dA >out
|
|||
cat >expected <<EOF
|
||||
digraph "a U b" {
|
||||
rankdir=LR
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> 0
|
||||
0 [label="0 (1)"]
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ digraph "" {
|
|||
rankdir=LR
|
||||
label="(Inf(0)&Inf(1)) & Fin(2)\n[Streett-like 3]"
|
||||
labelloc="t"
|
||||
node [shape="circle"]
|
||||
node [shape="ellipse",width="0.5",height="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> 1
|
||||
subgraph cluster_0 {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright (C) 2014-2018 Laboratoire de Recherche et Développement de
|
||||
# l'Epita (LRDE).
|
||||
# Copyright (C) 2014-2018, 2020 Laboratoire de Recherche et
|
||||
# Développement de l'Epita (LRDE).
|
||||
#
|
||||
# This file is part of Spot, a model checking library.
|
||||
#
|
||||
|
|
@ -122,6 +122,7 @@ digraph "" {
|
|||
rankdir=LR
|
||||
label="t\n[Fin-less 2]"
|
||||
labelloc="t"
|
||||
node [shape="ellipse",width="0.5",height="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> 0
|
||||
0 [label="0"]
|
||||
|
|
@ -237,7 +238,7 @@ digraph "" {
|
|||
rankdir=LR
|
||||
label="t\n[all]"
|
||||
labelloc="t"
|
||||
node [shape="circle"]
|
||||
node [shape="ellipse",width="0.5",height="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> 2
|
||||
0 [label="s1", style="bold", color="#E31A1C"]
|
||||
|
|
@ -251,7 +252,7 @@ digraph "" {
|
|||
rankdir=LR
|
||||
label="t\n[all]"
|
||||
labelloc="t"
|
||||
node [shape="circle"]
|
||||
node [shape="ellipse",width="0.5",height="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> 0
|
||||
0 [label="s3", style="bold", color="#505050"]
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -79,215 +79,239 @@
|
|||
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n",
|
||||
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
|
||||
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
|
||||
"<!-- Generated by graphviz version 2.40.1 (20161225.0304)\n",
|
||||
"<!-- Generated by graphviz version 2.43.0 (0)\n",
|
||||
" -->\n",
|
||||
"<!-- Pages: 1 -->\n",
|
||||
"<svg width=\"734pt\" height=\"156pt\"\n",
|
||||
" viewBox=\"0.00 0.00 734.00 156.00\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(.5617 .5617) rotate(0) translate(4 273.7401)\">\n",
|
||||
"<polygon fill=\"#ffffff\" stroke=\"transparent\" points=\"-4,4 -4,-273.7401 1302.7729,-273.7401 1302.7729,4 -4,4\"/>\n",
|
||||
"<svg width=\"734pt\" height=\"159pt\"\n",
|
||||
" viewBox=\"0.00 0.00 734.00 159.14\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(0.7462686567164178 0.7462686567164178) rotate(0) translate(4 210)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-210 983,-210 983,4 -4,4\"/>\n",
|
||||
"<!-- I -->\n",
|
||||
"<!-- 0 -->\n",
|
||||
"<g id=\"node2\" class=\"node\">\n",
|
||||
"<title>0</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"#000000\" cx=\"173.4716\" cy=\"-134.8701\" rx=\"136.4432\" ry=\"26.7407\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"84.9716\" y=\"-138.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">c=1, x1=0, x2=0, a1=0, a2=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"96.4716\" y=\"-123.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">a1.Q & !"c==17" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M218,-122C218,-122 49,-122 49,-122 43,-122 37,-116 37,-110 37,-110 37,-96 37,-96 37,-90 43,-84 49,-84 49,-84 218,-84 218,-84 224,-84 230,-90 230,-96 230,-96 230,-110 230,-110 230,-116 224,-122 218,-122\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"45\" y=\"-106.8\" font-family=\"Lato\" font-size=\"14.00\">c=1, x1=0, x2=0, a1=0, a2=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"58\" y=\"-91.8\" font-family=\"Lato\" font-size=\"14.00\">a1.Q & !"c==17" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- I->0 -->\n",
|
||||
"<g id=\"edge1\" class=\"edge\">\n",
|
||||
"<title>I->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" d=\"M1.2712,-134.8701C4.1455,-134.8701 14.8325,-134.8701 29.5805,-134.8701\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"36.6289,-134.8701 29.6289,-138.0202 33.1289,-134.8701 29.6289,-134.8702 29.6289,-134.8702 29.6289,-134.8702 33.1289,-134.8701 29.6288,-131.7202 36.6289,-134.8701 36.6289,-134.8701\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.1,-103C2.25,-103 13.83,-103 29.67,-103\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"36.71,-103 29.71,-106.15 33.21,-103 29.71,-103 29.71,-103 29.71,-103 33.21,-103 29.7,-99.85 36.71,-103 36.71,-103\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1 -->\n",
|
||||
"<g id=\"node3\" class=\"node\">\n",
|
||||
"<title>1</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"#000000\" cx=\"482.4148\" cy=\"-170.8701\" rx=\"136.4432\" ry=\"26.7407\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"393.9148\" y=\"-174.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">c=1, x1=1, x2=0, a1=1, a2=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"403.4148\" y=\"-159.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">!a1.Q & !"c==17" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M447,-150C447,-150 278,-150 278,-150 272,-150 266,-144 266,-138 266,-138 266,-124 266,-124 266,-118 272,-112 278,-112 278,-112 447,-112 447,-112 453,-112 459,-118 459,-124 459,-124 459,-138 459,-138 459,-144 453,-150 447,-150\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"274\" y=\"-134.8\" font-family=\"Lato\" font-size=\"14.00\">c=1, x1=1, x2=0, a1=1, a2=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"285\" y=\"-119.8\" font-family=\"Lato\" font-size=\"14.00\">!a1.Q & !"c==17" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->1 -->\n",
|
||||
"<g id=\"edge2\" class=\"edge\">\n",
|
||||
"<title>0->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" d=\"M291.1511,-148.5828C312.9236,-151.1199 335.7316,-153.7776 357.7045,-156.338\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"364.8068,-157.1656 357.4892,-159.4842 361.3303,-156.7605 357.8538,-156.3553 357.8538,-156.3553 357.8538,-156.3553 361.3303,-156.7605 358.2185,-153.2265 364.8068,-157.1656 364.8068,-157.1656\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M230.11,-114.79C239.67,-115.97 249.39,-117.17 259.02,-118.36\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"266,-119.22 258.67,-121.49 262.53,-118.79 259.05,-118.36 259.05,-118.36 259.05,-118.36 262.53,-118.79 259.44,-115.24 266,-119.22 266,-119.22\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2 -->\n",
|
||||
"<g id=\"node4\" class=\"node\">\n",
|
||||
"<title>2</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"#000000\" cx=\"482.4148\" cy=\"-98.8701\" rx=\"136.4432\" ry=\"26.7407\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"393.9148\" y=\"-102.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">c=1, x1=0, x2=1, a1=0, a2=1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"405.4148\" y=\"-87.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">a1.Q & !"c==17" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M447,-94C447,-94 278,-94 278,-94 272,-94 266,-88 266,-82 266,-82 266,-68 266,-68 266,-62 272,-56 278,-56 278,-56 447,-56 447,-56 453,-56 459,-62 459,-68 459,-68 459,-82 459,-82 459,-88 453,-94 447,-94\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"274\" y=\"-78.8\" font-family=\"Lato\" font-size=\"14.00\">c=1, x1=0, x2=1, a1=0, a2=1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"287\" y=\"-63.8\" font-family=\"Lato\" font-size=\"14.00\">a1.Q & !"c==17" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->2 -->\n",
|
||||
"<g id=\"edge3\" class=\"edge\">\n",
|
||||
"<title>0->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" d=\"M291.1511,-121.1573C312.9236,-118.6202 335.7316,-115.9625 357.7045,-113.4021\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"364.8068,-112.5745 358.2185,-116.5136 361.3303,-112.9796 357.8538,-113.3848 357.8538,-113.3848 357.8538,-113.3848 361.3303,-112.9796 357.4892,-110.2559 364.8068,-112.5745 364.8068,-112.5745\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M230.11,-91.21C239.67,-90.03 249.39,-88.83 259.02,-87.64\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"266,-86.78 259.44,-90.76 262.53,-87.21 259.05,-87.64 259.05,-87.64 259.05,-87.64 262.53,-87.21 258.67,-84.51 266,-86.78 266,-86.78\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3 -->\n",
|
||||
"<g id=\"node5\" class=\"node\">\n",
|
||||
"<title>3</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"#000000\" cx=\"791.358\" cy=\"-206.8701\" rx=\"136.4432\" ry=\"26.7407\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"702.858\" y=\"-210.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">c=1, x1=2, x2=0, a1=2, a2=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"712.358\" y=\"-195.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">!a1.Q & !"c==17" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M676,-178C676,-178 507,-178 507,-178 501,-178 495,-172 495,-166 495,-166 495,-152 495,-152 495,-146 501,-140 507,-140 507,-140 676,-140 676,-140 682,-140 688,-146 688,-152 688,-152 688,-166 688,-166 688,-172 682,-178 676,-178\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"503\" y=\"-162.8\" font-family=\"Lato\" font-size=\"14.00\">c=1, x1=2, x2=0, a1=2, a2=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"514\" y=\"-147.8\" font-family=\"Lato\" font-size=\"14.00\">!a1.Q & !"c==17" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->3 -->\n",
|
||||
"<g id=\"edge4\" class=\"edge\">\n",
|
||||
"<title>1->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" d=\"M600.0943,-184.5828C621.8668,-187.1199 644.6748,-189.7776 666.6477,-192.338\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"673.75,-193.1656 666.4324,-195.4842 670.2735,-192.7605 666.7971,-192.3553 666.7971,-192.3553 666.7971,-192.3553 670.2735,-192.7605 667.1617,-189.2265 673.75,-193.1656 673.75,-193.1656\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M459.11,-142.79C468.67,-143.97 478.39,-145.17 488.02,-146.36\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"495,-147.22 487.67,-149.49 491.53,-146.79 488.05,-146.36 488.05,-146.36 488.05,-146.36 491.53,-146.79 488.44,-143.24 495,-147.22 495,-147.22\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4 -->\n",
|
||||
"<g id=\"node6\" class=\"node\">\n",
|
||||
"<title>4</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"#000000\" cx=\"791.358\" cy=\"-134.8701\" rx=\"136.4432\" ry=\"26.7407\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"702.858\" y=\"-138.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">c=1, x1=1, x2=1, a1=1, a2=1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"712.358\" y=\"-123.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">!a1.Q & !"c==17" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M676,-122C676,-122 507,-122 507,-122 501,-122 495,-116 495,-110 495,-110 495,-96 495,-96 495,-90 501,-84 507,-84 507,-84 676,-84 676,-84 682,-84 688,-90 688,-96 688,-96 688,-110 688,-110 688,-116 682,-122 676,-122\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"503\" y=\"-106.8\" font-family=\"Lato\" font-size=\"14.00\">c=1, x1=1, x2=1, a1=1, a2=1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"514\" y=\"-91.8\" font-family=\"Lato\" font-size=\"14.00\">!a1.Q & !"c==17" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->4 -->\n",
|
||||
"<g id=\"edge5\" class=\"edge\">\n",
|
||||
"<title>1->4</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" d=\"M600.0943,-157.1573C621.8668,-154.6202 644.6748,-151.9625 666.6477,-149.4021\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"673.75,-148.5745 667.1617,-152.5136 670.2735,-148.9796 666.7971,-149.3848 666.7971,-149.3848 666.7971,-149.3848 670.2735,-148.9796 666.4324,-146.2559 673.75,-148.5745 673.75,-148.5745\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M459.11,-119.21C468.67,-118.03 478.39,-116.83 488.02,-115.64\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"495,-114.78 488.44,-118.76 491.53,-115.21 488.05,-115.64 488.05,-115.64 488.05,-115.64 491.53,-115.21 487.67,-112.51 495,-114.78 495,-114.78\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->4 -->\n",
|
||||
"<g id=\"edge6\" class=\"edge\">\n",
|
||||
"<title>2->4</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" d=\"M600.0943,-112.5828C621.8668,-115.1199 644.6748,-117.7776 666.6477,-120.338\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"673.75,-121.1656 666.4324,-123.4842 670.2735,-120.7605 666.7971,-120.3553 666.7971,-120.3553 666.7971,-120.3553 670.2735,-120.7605 667.1617,-117.2265 673.75,-121.1656 673.75,-121.1656\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M459.11,-86.79C468.67,-87.97 478.39,-89.17 488.02,-90.36\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"495,-91.22 487.67,-93.49 491.53,-90.79 488.05,-90.36 488.05,-90.36 488.05,-90.36 491.53,-90.79 488.44,-87.24 495,-91.22 495,-91.22\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5 -->\n",
|
||||
"<g id=\"node7\" class=\"node\">\n",
|
||||
"<title>5</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"#000000\" cx=\"791.358\" cy=\"-62.8701\" rx=\"136.4432\" ry=\"26.7407\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"702.858\" y=\"-66.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">c=1, x1=0, x2=2, a1=0, a2=2</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"714.358\" y=\"-51.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">a1.Q & !"c==17" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M676,-66C676,-66 507,-66 507,-66 501,-66 495,-60 495,-54 495,-54 495,-40 495,-40 495,-34 501,-28 507,-28 507,-28 676,-28 676,-28 682,-28 688,-34 688,-40 688,-40 688,-54 688,-54 688,-60 682,-66 676,-66\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"503\" y=\"-50.8\" font-family=\"Lato\" font-size=\"14.00\">c=1, x1=0, x2=2, a1=0, a2=2</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"516\" y=\"-35.8\" font-family=\"Lato\" font-size=\"14.00\">a1.Q & !"c==17" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->5 -->\n",
|
||||
"<g id=\"edge7\" class=\"edge\">\n",
|
||||
"<title>2->5</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" d=\"M600.0943,-85.1573C621.8668,-82.6202 644.6748,-79.9625 666.6477,-77.4021\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"673.75,-76.5745 667.1617,-80.5136 670.2735,-76.9796 666.7971,-77.3848 666.7971,-77.3848 666.7971,-77.3848 670.2735,-76.9796 666.4324,-74.2559 673.75,-76.5745 673.75,-76.5745\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M459.11,-63.21C468.67,-62.03 478.39,-60.83 488.02,-59.64\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"495,-58.78 488.44,-62.76 491.53,-59.21 488.05,-59.64 488.05,-59.64 488.05,-59.64 491.53,-59.21 487.67,-56.51 495,-58.78 495,-58.78\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6 -->\n",
|
||||
"<g id=\"node8\" class=\"node\">\n",
|
||||
"<title>6</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"#000000\" cx=\"1100.3013\" cy=\"-242.8701\" rx=\"136.4432\" ry=\"26.7407\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1011.8013\" y=\"-246.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">c=2, x1=2, x2=0, a1=0, a2=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1095.3013\" y=\"-231.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">...</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M905,-206C905,-206 736,-206 736,-206 730,-206 724,-200 724,-194 724,-194 724,-180 724,-180 724,-174 730,-168 736,-168 736,-168 905,-168 905,-168 911,-168 917,-174 917,-180 917,-180 917,-194 917,-194 917,-200 911,-206 905,-206\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"732\" y=\"-190.8\" font-family=\"Lato\" font-size=\"14.00\">c=2, x1=2, x2=0, a1=0, a2=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"815.5\" y=\"-175.8\" font-family=\"Lato\" font-size=\"14.00\">...</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->6 -->\n",
|
||||
"<g id=\"edge8\" class=\"edge\">\n",
|
||||
"<title>3->6</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" d=\"M909.0375,-220.5828C930.8101,-223.1199 953.618,-225.7776 975.5909,-228.338\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"982.6932,-229.1656 975.3757,-231.4842 979.2168,-228.7605 975.7403,-228.3553 975.7403,-228.3553 975.7403,-228.3553 979.2168,-228.7605 976.1049,-225.2265 982.6932,-229.1656 982.6932,-229.1656\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M688.11,-170.79C697.67,-171.97 707.39,-173.17 717.02,-174.36\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"724,-175.22 716.67,-177.49 720.53,-174.79 717.05,-174.36 717.05,-174.36 717.05,-174.36 720.53,-174.79 717.44,-171.24 724,-175.22 724,-175.22\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7 -->\n",
|
||||
"<g id=\"node9\" class=\"node\">\n",
|
||||
"<title>7</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"#000000\" cx=\"1100.3013\" cy=\"-170.8701\" rx=\"136.4432\" ry=\"26.7407\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1011.8013\" y=\"-174.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">c=1, x1=2, x2=1, a1=2, a2=1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1095.3013\" y=\"-159.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">...</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M905,-150C905,-150 736,-150 736,-150 730,-150 724,-144 724,-138 724,-138 724,-124 724,-124 724,-118 730,-112 736,-112 736,-112 905,-112 905,-112 911,-112 917,-118 917,-124 917,-124 917,-138 917,-138 917,-144 911,-150 905,-150\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"732\" y=\"-134.8\" font-family=\"Lato\" font-size=\"14.00\">c=1, x1=2, x2=1, a1=2, a2=1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"815.5\" y=\"-119.8\" font-family=\"Lato\" font-size=\"14.00\">...</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->7 -->\n",
|
||||
"<g id=\"edge9\" class=\"edge\">\n",
|
||||
"<title>3->7</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" d=\"M909.0375,-193.1573C930.8101,-190.6202 953.618,-187.9625 975.5909,-185.4021\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"982.6932,-184.5745 976.1049,-188.5136 979.2168,-184.9796 975.7403,-185.3848 975.7403,-185.3848 975.7403,-185.3848 979.2168,-184.9796 975.3757,-182.2559 982.6932,-184.5745 982.6932,-184.5745\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M688.11,-147.21C697.67,-146.03 707.39,-144.83 717.02,-143.64\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"724,-142.78 717.44,-146.76 720.53,-143.21 717.05,-143.64 717.05,-143.64 717.05,-143.64 720.53,-143.21 716.67,-140.51 724,-142.78 724,-142.78\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4->7 -->\n",
|
||||
"<g id=\"edge10\" class=\"edge\">\n",
|
||||
"<title>4->7</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" d=\"M909.0375,-148.5828C930.8101,-151.1199 953.618,-153.7776 975.5909,-156.338\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"982.6932,-157.1656 975.3757,-159.4842 979.2168,-156.7605 975.7403,-156.3553 975.7403,-156.3553 975.7403,-156.3553 979.2168,-156.7605 976.1049,-153.2265 982.6932,-157.1656 982.6932,-157.1656\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M688.11,-114.79C697.67,-115.97 707.39,-117.17 717.02,-118.36\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"724,-119.22 716.67,-121.49 720.53,-118.79 717.05,-118.36 717.05,-118.36 717.05,-118.36 720.53,-118.79 717.44,-115.24 724,-119.22 724,-119.22\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8 -->\n",
|
||||
"<g id=\"node10\" class=\"node\">\n",
|
||||
"<title>8</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"#000000\" cx=\"1100.3013\" cy=\"-98.8701\" rx=\"136.4432\" ry=\"26.7407\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1011.8013\" y=\"-102.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">c=1, x1=1, x2=2, a1=1, a2=2</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1095.3013\" y=\"-87.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">...</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M905,-94C905,-94 736,-94 736,-94 730,-94 724,-88 724,-82 724,-82 724,-68 724,-68 724,-62 730,-56 736,-56 736,-56 905,-56 905,-56 911,-56 917,-62 917,-68 917,-68 917,-82 917,-82 917,-88 911,-94 905,-94\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"732\" y=\"-78.8\" font-family=\"Lato\" font-size=\"14.00\">c=1, x1=1, x2=2, a1=1, a2=2</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"815.5\" y=\"-63.8\" font-family=\"Lato\" font-size=\"14.00\">...</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4->8 -->\n",
|
||||
"<g id=\"edge11\" class=\"edge\">\n",
|
||||
"<title>4->8</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" d=\"M909.0375,-121.1573C930.8101,-118.6202 953.618,-115.9625 975.5909,-113.4021\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"982.6932,-112.5745 976.1049,-116.5136 979.2168,-112.9796 975.7403,-113.3848 975.7403,-113.3848 975.7403,-113.3848 979.2168,-112.9796 975.3757,-110.2559 982.6932,-112.5745 982.6932,-112.5745\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M688.11,-91.21C697.67,-90.03 707.39,-88.83 717.02,-87.64\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"724,-86.78 717.44,-90.76 720.53,-87.21 717.05,-87.64 717.05,-87.64 717.05,-87.64 720.53,-87.21 716.67,-84.51 724,-86.78 724,-86.78\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5->8 -->\n",
|
||||
"<g id=\"edge12\" class=\"edge\">\n",
|
||||
"<title>5->8</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" d=\"M909.0375,-76.5828C930.8101,-79.1199 953.618,-81.7776 975.5909,-84.338\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"982.6932,-85.1656 975.3757,-87.4842 979.2168,-84.7605 975.7403,-84.3553 975.7403,-84.3553 975.7403,-84.3553 979.2168,-84.7605 976.1049,-81.2265 982.6932,-85.1656 982.6932,-85.1656\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M688.11,-58.79C697.67,-59.97 707.39,-61.17 717.02,-62.36\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"724,-63.22 716.67,-65.49 720.53,-62.79 717.05,-62.36 717.05,-62.36 717.05,-62.36 720.53,-62.79 717.44,-59.24 724,-63.22 724,-63.22\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 9 -->\n",
|
||||
"<g id=\"node11\" class=\"node\">\n",
|
||||
"<title>9</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"#000000\" cx=\"1100.3013\" cy=\"-26.8701\" rx=\"136.4432\" ry=\"26.7407\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1011.8013\" y=\"-30.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">c=2, x1=0, x2=2, a1=0, a2=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1095.3013\" y=\"-15.6701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">...</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M905,-38C905,-38 736,-38 736,-38 730,-38 724,-32 724,-26 724,-26 724,-12 724,-12 724,-6 730,0 736,0 736,0 905,0 905,0 911,0 917,-6 917,-12 917,-12 917,-26 917,-26 917,-32 911,-38 905,-38\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"732\" y=\"-22.8\" font-family=\"Lato\" font-size=\"14.00\">c=2, x1=0, x2=2, a1=0, a2=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"815.5\" y=\"-7.8\" font-family=\"Lato\" font-size=\"14.00\">...</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5->9 -->\n",
|
||||
"<g id=\"edge13\" class=\"edge\">\n",
|
||||
"<title>5->9</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" d=\"M909.0375,-49.1573C930.8101,-46.6202 953.618,-43.9625 975.5909,-41.4021\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"982.6932,-40.5745 976.1049,-44.5136 979.2168,-40.9796 975.7403,-41.3848 975.7403,-41.3848 975.7403,-41.3848 979.2168,-40.9796 975.3757,-38.2559 982.6932,-40.5745 982.6932,-40.5745\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M688.11,-35.21C697.67,-34.03 707.39,-32.83 717.02,-31.64\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"724,-30.78 717.44,-34.76 720.53,-31.21 717.05,-31.64 717.05,-31.64 717.05,-31.64 720.53,-31.21 716.67,-28.51 724,-30.78 724,-30.78\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- u6 -->\n",
|
||||
"<g id=\"node12\" class=\"node\">\n",
|
||||
"<title>u6</title>\n",
|
||||
"<polygon fill=\"#ffffaa\" stroke=\"transparent\" points=\"1298.7729,-254.3701 1272.7729,-254.3701 1272.7729,-231.3701 1298.7729,-231.3701 1298.7729,-254.3701\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"1285.7729\" y=\"-239.1701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">...</text>\n",
|
||||
"<g id=\"a_node12\"><a xlink:title=\"hidden successors\">\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"transparent\" d=\"M971.33,-198.5C971.33,-198.5 960.67,-198.5 960.67,-198.5 956.83,-198.5 953,-194.67 953,-190.83 953,-190.83 953,-183.17 953,-183.17 953,-179.33 956.83,-175.5 960.67,-175.5 960.67,-175.5 971.33,-175.5 971.33,-175.5 975.17,-175.5 979,-179.33 979,-183.17 979,-183.17 979,-190.83 979,-190.83 979,-194.67 975.17,-198.5 971.33,-198.5\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"966\" y=\"-183.3\" font-family=\"Lato\" font-size=\"14.00\">...</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6->u6 -->\n",
|
||||
"<g id=\"edge14\" class=\"edge\">\n",
|
||||
"<title>6->u6</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" stroke-dasharray=\"5,2\" d=\"M1237.0424,-242.8701C1247.7929,-242.8701 1257.5163,-242.8701 1265.3992,-242.8701\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1272.6385,-242.8701 1265.6385,-246.0202 1269.1385,-242.8701 1265.6385,-242.8702 1265.6385,-242.8702 1265.6385,-242.8702 1269.1385,-242.8701 1265.6384,-239.7202 1272.6385,-242.8701 1272.6385,-242.8701\"/>\n",
|
||||
"<g id=\"a_edge14\"><a xlink:title=\"hidden successors\">\n",
|
||||
"<path fill=\"none\" stroke=\"black\" stroke-dasharray=\"5,2\" d=\"M917.22,-187C927.86,-187 937.71,-187 945.66,-187\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"952.95,-187 945.95,-190.15 949.45,-187 945.95,-187 945.95,-187 945.95,-187 949.45,-187 945.95,-183.85 952.95,-187 952.95,-187\"/>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- u7 -->\n",
|
||||
"<g id=\"node13\" class=\"node\">\n",
|
||||
"<title>u7</title>\n",
|
||||
"<polygon fill=\"#ffffaa\" stroke=\"transparent\" points=\"1298.7729,-182.3701 1272.7729,-182.3701 1272.7729,-159.3701 1298.7729,-159.3701 1298.7729,-182.3701\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"1285.7729\" y=\"-167.1701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">...</text>\n",
|
||||
"<g id=\"a_node13\"><a xlink:title=\"hidden successors\">\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"transparent\" d=\"M971.33,-142.5C971.33,-142.5 960.67,-142.5 960.67,-142.5 956.83,-142.5 953,-138.67 953,-134.83 953,-134.83 953,-127.17 953,-127.17 953,-123.33 956.83,-119.5 960.67,-119.5 960.67,-119.5 971.33,-119.5 971.33,-119.5 975.17,-119.5 979,-123.33 979,-127.17 979,-127.17 979,-134.83 979,-134.83 979,-138.67 975.17,-142.5 971.33,-142.5\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"966\" y=\"-127.3\" font-family=\"Lato\" font-size=\"14.00\">...</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7->u7 -->\n",
|
||||
"<g id=\"edge15\" class=\"edge\">\n",
|
||||
"<title>7->u7</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" stroke-dasharray=\"5,2\" d=\"M1237.0424,-170.8701C1247.7929,-170.8701 1257.5163,-170.8701 1265.3992,-170.8701\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1272.6385,-170.8701 1265.6385,-174.0202 1269.1385,-170.8701 1265.6385,-170.8702 1265.6385,-170.8702 1265.6385,-170.8702 1269.1385,-170.8701 1265.6384,-167.7202 1272.6385,-170.8701 1272.6385,-170.8701\"/>\n",
|
||||
"<g id=\"a_edge15\"><a xlink:title=\"hidden successors\">\n",
|
||||
"<path fill=\"none\" stroke=\"black\" stroke-dasharray=\"5,2\" d=\"M917.22,-131C927.86,-131 937.71,-131 945.66,-131\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"952.95,-131 945.95,-134.15 949.45,-131 945.95,-131 945.95,-131 945.95,-131 949.45,-131 945.95,-127.85 952.95,-131 952.95,-131\"/>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- u8 -->\n",
|
||||
"<g id=\"node14\" class=\"node\">\n",
|
||||
"<title>u8</title>\n",
|
||||
"<polygon fill=\"#ffffaa\" stroke=\"transparent\" points=\"1298.7729,-110.3701 1272.7729,-110.3701 1272.7729,-87.3701 1298.7729,-87.3701 1298.7729,-110.3701\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"1285.7729\" y=\"-95.1701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">...</text>\n",
|
||||
"<g id=\"a_node14\"><a xlink:title=\"hidden successors\">\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"transparent\" d=\"M971.33,-86.5C971.33,-86.5 960.67,-86.5 960.67,-86.5 956.83,-86.5 953,-82.67 953,-78.83 953,-78.83 953,-71.17 953,-71.17 953,-67.33 956.83,-63.5 960.67,-63.5 960.67,-63.5 971.33,-63.5 971.33,-63.5 975.17,-63.5 979,-67.33 979,-71.17 979,-71.17 979,-78.83 979,-78.83 979,-82.67 975.17,-86.5 971.33,-86.5\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"966\" y=\"-71.3\" font-family=\"Lato\" font-size=\"14.00\">...</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8->u8 -->\n",
|
||||
"<g id=\"edge16\" class=\"edge\">\n",
|
||||
"<title>8->u8</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" stroke-dasharray=\"5,2\" d=\"M1237.0424,-98.8701C1247.7929,-98.8701 1257.5163,-98.8701 1265.3992,-98.8701\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1272.6385,-98.8701 1265.6385,-102.0202 1269.1385,-98.8701 1265.6385,-98.8702 1265.6385,-98.8702 1265.6385,-98.8702 1269.1385,-98.8701 1265.6384,-95.7202 1272.6385,-98.8701 1272.6385,-98.8701\"/>\n",
|
||||
"<g id=\"a_edge16\"><a xlink:title=\"hidden successors\">\n",
|
||||
"<path fill=\"none\" stroke=\"black\" stroke-dasharray=\"5,2\" d=\"M917.22,-75C927.86,-75 937.71,-75 945.66,-75\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"952.95,-75 945.95,-78.15 949.45,-75 945.95,-75 945.95,-75 945.95,-75 949.45,-75 945.95,-71.85 952.95,-75 952.95,-75\"/>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- u9 -->\n",
|
||||
"<g id=\"node15\" class=\"node\">\n",
|
||||
"<title>u9</title>\n",
|
||||
"<polygon fill=\"#ffffaa\" stroke=\"transparent\" points=\"1298.7729,-38.3701 1272.7729,-38.3701 1272.7729,-15.3701 1298.7729,-15.3701 1298.7729,-38.3701\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"1285.7729\" y=\"-23.1701\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#000000\">...</text>\n",
|
||||
"<g id=\"a_node15\"><a xlink:title=\"hidden successors\">\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"transparent\" d=\"M971.33,-30.5C971.33,-30.5 960.67,-30.5 960.67,-30.5 956.83,-30.5 953,-26.67 953,-22.83 953,-22.83 953,-15.17 953,-15.17 953,-11.33 956.83,-7.5 960.67,-7.5 960.67,-7.5 971.33,-7.5 971.33,-7.5 975.17,-7.5 979,-11.33 979,-15.17 979,-15.17 979,-22.83 979,-22.83 979,-26.67 975.17,-30.5 971.33,-30.5\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"966\" y=\"-15.3\" font-family=\"Lato\" font-size=\"14.00\">...</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 9->u9 -->\n",
|
||||
"<g id=\"edge17\" class=\"edge\">\n",
|
||||
"<title>9->u9</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#000000\" stroke-dasharray=\"5,2\" d=\"M1237.0424,-26.8701C1247.7929,-26.8701 1257.5163,-26.8701 1265.3992,-26.8701\"/>\n",
|
||||
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1272.6385,-26.8701 1265.6385,-30.0202 1269.1385,-26.8701 1265.6385,-26.8702 1265.6385,-26.8702 1265.6385,-26.8702 1269.1385,-26.8701 1265.6384,-23.7202 1272.6385,-26.8701 1272.6385,-26.8701\"/>\n",
|
||||
"<g id=\"a_edge17\"><a xlink:title=\"hidden successors\">\n",
|
||||
"<path fill=\"none\" stroke=\"black\" stroke-dasharray=\"5,2\" d=\"M917.22,-19C927.86,-19 937.71,-19 945.66,-19\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"952.95,-19 945.95,-22.15 949.45,-19 945.95,-19 945.95,-19 945.95,-19 949.45,-19 945.95,-15.85 952.95,-19 952.95,-19\"/>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.impl.kripke; proxy of <Swig Object of type 'std::shared_ptr< spot::kripke > *' at 0x7f4dc45626f0> >"
|
||||
"<spot.impl.kripke; proxy of <Swig Object of type 'std::shared_ptr< spot::kripke > *' at 0x7f9a40554b10> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 4,
|
||||
|
|
@ -348,7 +372,7 @@
|
|||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython3",
|
||||
"version": "3.6.5"
|
||||
"version": "3.8.2"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
|
|
|
|||
|
|
@ -178,7 +178,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc938228a20> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2c2bd0> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 2,
|
||||
|
|
@ -657,7 +657,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc938233060> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2c9270> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 6,
|
||||
|
|
@ -733,7 +733,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc938233960> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2c9a20> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 7,
|
||||
|
|
@ -816,7 +816,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc938238660> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2ce600> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 8,
|
||||
|
|
@ -1349,7 +1349,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc9382462d0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2de5d0> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 12,
|
||||
|
|
@ -1463,7 +1463,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc938246c60> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2defc0> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 13,
|
||||
|
|
@ -1594,7 +1594,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc93824d4b0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2e4270> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 14,
|
||||
|
|
@ -1816,7 +1816,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc93824d060> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2e4180> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -2014,7 +2014,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc938253e40> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2e94e0> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -2193,7 +2193,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc93824dbd0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2e4300> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -2341,7 +2341,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc938253510> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2e9ed0> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -2530,7 +2530,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc93825d930> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2f4060> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 19,
|
||||
|
|
@ -2606,7 +2606,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc93825dab0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2f4de0> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 20,
|
||||
|
|
@ -2800,127 +2800,127 @@
|
|||
"<!-- Generated by graphviz version 2.43.0 (0)\n",
|
||||
" -->\n",
|
||||
"<!-- Pages: 1 -->\n",
|
||||
"<svg width=\"351pt\" height=\"244pt\"\n",
|
||||
" viewBox=\"0.00 0.00 351.00 244.00\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<svg width=\"329pt\" height=\"244pt\"\n",
|
||||
" viewBox=\"0.00 0.00 329.39 244.00\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(1.0 1.0) rotate(0) translate(4 240)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-240 347,-240 347,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"126\" y=\"-221.8\" font-family=\"Lato\" font-size=\"14.00\">Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"147\" y=\"-221.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"163\" y=\"-221.8\" font-family=\"Lato\" font-size=\"14.00\">)&Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"197\" y=\"-221.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"213\" y=\"-221.8\" font-family=\"Lato\" font-size=\"14.00\">)</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"129\" y=\"-207.8\" font-family=\"Lato\" font-size=\"14.00\">[gen. Büchi 2]</text>\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-240 325.39,-240 325.39,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"115.19\" y=\"-221.8\" font-family=\"Lato\" font-size=\"14.00\">Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"136.19\" y=\"-221.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"152.19\" y=\"-221.8\" font-family=\"Lato\" font-size=\"14.00\">)&Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"186.19\" y=\"-221.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"202.19\" y=\"-221.8\" font-family=\"Lato\" font-size=\"14.00\">)</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"118.19\" y=\"-207.8\" font-family=\"Lato\" font-size=\"14.00\">[gen. Büchi 2]</text>\n",
|
||||
"<!-- I -->\n",
|
||||
"<!-- 0 -->\n",
|
||||
"<g id=\"node2\" class=\"node\">\n",
|
||||
"<title>0</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"65\" cy=\"-18\" rx=\"27\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"55\" y=\"-14.3\" font-family=\"Lato\" font-size=\"14.00\">0,0</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"61.4\" cy=\"-18\" rx=\"23.3\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"51.4\" y=\"-14.3\" font-family=\"Lato\" font-size=\"14.00\">0,0</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- I->0 -->\n",
|
||||
"<g id=\"edge1\" class=\"edge\">\n",
|
||||
"<title>I->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.05,-18C1.95,-18 16.1,-18 30.76,-18\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"37.94,-18 30.94,-21.15 34.44,-18 30.94,-18 30.94,-18 30.94,-18 34.44,-18 30.94,-14.85 37.94,-18 37.94,-18\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.17,-18C2.85,-18 16.69,-18 30.57,-18\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"37.76,-18 30.76,-21.15 34.26,-18 30.76,-18 30.76,-18 30.76,-18 34.26,-18 30.76,-14.85 37.76,-18 37.76,-18\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->0 -->\n",
|
||||
"<g id=\"edge2\" class=\"edge\">\n",
|
||||
"<title>0->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M57.14,-35.41C55.68,-45.09 58.3,-54 65,-54 69.92,-54 72.64,-49.19 73.16,-42.81\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"72.86,-35.41 76.29,-42.27 73,-38.91 73.14,-42.4 73.14,-42.4 73.14,-42.4 73,-38.91 70,-42.53 72.86,-35.41 72.86,-35.41\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"47\" y=\"-72.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"57\" y=\"-57.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M54.26,-35.41C52.92,-45.09 55.3,-54 61.4,-54 65.87,-54 68.35,-49.19 68.82,-42.81\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"68.54,-35.41 71.95,-42.29 68.67,-38.91 68.8,-42.41 68.8,-42.41 68.8,-42.41 68.67,-38.91 65.65,-42.52 68.54,-35.41 68.54,-35.41\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"43.4\" y=\"-72.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"53.4\" y=\"-57.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1 -->\n",
|
||||
"<g id=\"node3\" class=\"node\">\n",
|
||||
"<title>1</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"187\" cy=\"-88\" rx=\"27\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"177\" y=\"-84.3\" font-family=\"Lato\" font-size=\"14.00\">0,1</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"176.19\" cy=\"-88\" rx=\"23.3\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"166.19\" y=\"-84.3\" font-family=\"Lato\" font-size=\"14.00\">0,1</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->1 -->\n",
|
||||
"<g id=\"edge3\" class=\"edge\">\n",
|
||||
"<title>0->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M85.82,-29.56C106.05,-41.36 137.58,-59.75 159.85,-72.75\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"166.16,-76.42 158.52,-75.62 163.13,-74.66 160.11,-72.9 160.11,-72.9 160.11,-72.9 163.13,-74.66 161.7,-70.18 166.16,-76.42 166.16,-76.42\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"110\" y=\"-79.8\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"118\" y=\"-64.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M80.02,-28.94C99.2,-40.84 129.96,-59.93 151.3,-73.17\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"157.32,-76.91 149.71,-75.89 154.35,-75.06 151.37,-73.22 151.37,-73.22 151.37,-73.22 154.35,-75.06 153.03,-70.54 157.32,-76.91 157.32,-76.91\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"102.8\" y=\"-79.8\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"110.8\" y=\"-64.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2 -->\n",
|
||||
"<g id=\"node4\" class=\"node\">\n",
|
||||
"<title>2</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"316\" cy=\"-88\" rx=\"27\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"306\" y=\"-84.3\" font-family=\"Lato\" font-size=\"14.00\">1,1</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"297.99\" cy=\"-88\" rx=\"23.3\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"287.99\" y=\"-84.3\" font-family=\"Lato\" font-size=\"14.00\">1,1</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->2 -->\n",
|
||||
"<g id=\"edge4\" class=\"edge\">\n",
|
||||
"<title>0->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M91.88,-15.4C132.4,-12.49 212.26,-11.53 271,-41 282.42,-46.73 292.41,-56.71 299.97,-66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"304.36,-71.66 297.58,-68.06 302.21,-68.89 300.07,-66.13 300.07,-66.13 300.07,-66.13 302.21,-68.89 302.56,-64.2 304.36,-71.66 304.36,-71.66\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"169\" y=\"-25.8\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M84.6,-15.63C122.35,-12.65 200.41,-11.08 256.59,-41 267.34,-46.73 276.48,-56.58 283.34,-65.79\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"287.51,-71.7 280.9,-67.79 285.49,-68.84 283.47,-65.98 283.47,-65.98 283.47,-65.98 285.49,-68.84 286.05,-64.16 287.51,-71.7 287.51,-71.7\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"158.19\" y=\"-25.8\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->1 -->\n",
|
||||
"<g id=\"edge5\" class=\"edge\">\n",
|
||||
"<title>1->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M181.61,-105.78C180.69,-115.31 182.49,-124 187,-124 190.31,-124 192.16,-119.32 192.55,-113.05\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"192.39,-105.78 195.69,-112.71 192.47,-109.28 192.54,-112.78 192.54,-112.78 192.54,-112.78 192.47,-109.28 189.39,-112.85 192.39,-105.78 192.39,-105.78\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"169.5\" y=\"-142.8\" font-family=\"Lato\" font-size=\"14.00\">a & !c</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"179\" y=\"-127.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M171.16,-105.78C170.31,-115.31 171.98,-124 176.19,-124 179.29,-124 181.01,-119.32 181.37,-113.05\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"181.23,-105.78 184.52,-112.72 181.3,-109.28 181.37,-112.78 181.37,-112.78 181.37,-112.78 181.3,-109.28 178.22,-112.84 181.23,-105.78 181.23,-105.78\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"158.69\" y=\"-142.8\" font-family=\"Lato\" font-size=\"14.00\">a & !c</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"168.19\" y=\"-127.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->1 -->\n",
|
||||
"<g id=\"edge6\" class=\"edge\">\n",
|
||||
"<title>1->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M178.74,-105.25C172.88,-126.43 175.63,-154 187,-154 197.17,-154 200.44,-131.94 196.83,-112.13\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"195.26,-105.25 199.89,-111.37 196.04,-108.66 196.81,-112.07 196.81,-112.07 196.81,-112.07 196.04,-108.66 193.74,-112.77 195.26,-105.25 195.26,-105.25\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"171.5\" y=\"-171.8\" font-family=\"Lato\" font-size=\"14.00\">a & c</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"171\" y=\"-157.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"187\" y=\"-157.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M168.49,-105.25C163.01,-126.43 165.58,-154 176.19,-154 185.68,-154 188.74,-131.94 185.36,-112.13\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"183.9,-105.25 188.44,-111.44 184.63,-108.67 185.36,-112.1 185.36,-112.1 185.36,-112.1 184.63,-108.67 182.28,-112.75 183.9,-105.25 183.9,-105.25\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"160.69\" y=\"-171.8\" font-family=\"Lato\" font-size=\"14.00\">a & c</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"160.19\" y=\"-157.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"176.19\" y=\"-157.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->2 -->\n",
|
||||
"<g id=\"edge7\" class=\"edge\">\n",
|
||||
"<title>1->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M193.63,-105.53C200.02,-122.15 212.19,-146.14 232,-157 247.2,-165.33 255.8,-165.33 271,-157 288.33,-147.5 299.82,-127.94 306.7,-112.07\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"309.37,-105.53 309.64,-113.21 308.04,-108.77 306.72,-112.01 306.72,-112.01 306.72,-112.01 308.04,-108.77 303.8,-110.82 309.37,-105.53 309.37,-105.53\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"232\" y=\"-166.8\" font-family=\"Lato\" font-size=\"14.00\">!a & !c</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M181.95,-105.48C187.5,-122.06 198.44,-146.02 217.59,-157 232.63,-165.62 241.55,-165.62 256.59,-157 273.2,-147.48 283.63,-128.2 289.73,-112.43\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"292.23,-105.48 292.82,-113.14 291.05,-108.78 289.86,-112.07 289.86,-112.07 289.86,-112.07 291.05,-108.78 286.9,-111 292.23,-105.48 292.23,-105.48\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"217.59\" y=\"-166.8\" font-family=\"Lato\" font-size=\"14.00\">!a & !c</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->2 -->\n",
|
||||
"<g id=\"edge8\" class=\"edge\">\n",
|
||||
"<title>1->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M209.97,-97.69C216.88,-100.27 224.64,-102.7 232,-104 249.07,-107.01 253.93,-107.01 271,-104 276.06,-103.11 281.31,-101.68 286.34,-100.04\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"293.03,-97.69 287.47,-102.98 289.73,-98.85 286.43,-100.01 286.43,-100.01 286.43,-100.01 289.73,-98.85 285.38,-97.03 293.03,-97.69 293.03,-97.69\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"234\" y=\"-124.8\" font-family=\"Lato\" font-size=\"14.00\">!a & c</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"243.5\" y=\"-109.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M196.47,-97.35C203.02,-100.05 210.48,-102.64 217.59,-104 234.62,-107.25 239.57,-107.25 256.59,-104 261.37,-103.09 266.31,-101.62 271.02,-99.93\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"277.71,-97.35 272.32,-102.81 274.45,-98.61 271.18,-99.87 271.18,-99.87 271.18,-99.87 274.45,-98.61 270.05,-96.93 277.71,-97.35 277.71,-97.35\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"219.59\" y=\"-124.8\" font-family=\"Lato\" font-size=\"14.00\">!a & c</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"229.09\" y=\"-109.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->1 -->\n",
|
||||
"<g id=\"edge9\" class=\"edge\">\n",
|
||||
"<title>2->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M288.96,-85.93C283.06,-85.54 276.82,-85.2 271,-85 253.68,-84.41 249.32,-84.41 232,-85 228.46,-85.12 224.75,-85.3 221.07,-85.5\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"214.04,-85.93 220.84,-82.36 217.54,-85.72 221.03,-85.5 221.03,-85.5 221.03,-85.5 217.54,-85.72 221.22,-88.65 214.04,-85.93 214.04,-85.93\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"234\" y=\"-88.8\" font-family=\"Lato\" font-size=\"14.00\">a & !c</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M274.36,-86.02C268.57,-85.6 262.35,-85.21 256.59,-85 239.27,-84.36 234.91,-84.36 217.59,-85 214.17,-85.13 210.59,-85.31 207.03,-85.53\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"199.83,-86.02 206.6,-82.41 203.32,-85.79 206.81,-85.55 206.81,-85.55 206.81,-85.55 203.32,-85.79 207.02,-88.69 199.83,-86.02 199.83,-86.02\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"219.59\" y=\"-88.8\" font-family=\"Lato\" font-size=\"14.00\">a & !c</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->1 -->\n",
|
||||
"<g id=\"edge10\" class=\"edge\">\n",
|
||||
"<title>2->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M302.08,-72.38C294.11,-64 283.11,-54.5 271,-50 254.75,-43.96 248.25,-43.96 232,-50 222.35,-53.59 213.41,-60.35 206.14,-67.19\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"200.92,-72.38 203.66,-65.21 203.4,-69.91 205.88,-67.44 205.88,-67.44 205.88,-67.44 203.4,-69.91 208.1,-69.67 200.92,-72.38 200.92,-72.38\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"236\" y=\"-68.8\" font-family=\"Lato\" font-size=\"14.00\">a & c</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"243.5\" y=\"-53.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M285.38,-72.41C278.15,-64.04 268.05,-54.54 256.59,-50 240.48,-43.61 233.71,-43.61 217.59,-50 208.46,-53.62 200.19,-60.39 193.55,-67.22\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"188.8,-72.41 191.21,-65.12 191.16,-69.83 193.53,-67.24 193.53,-67.24 193.53,-67.24 191.16,-69.83 195.85,-69.37 188.8,-72.41 188.8,-72.41\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"221.59\" y=\"-68.8\" font-family=\"Lato\" font-size=\"14.00\">a & c</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"229.09\" y=\"-53.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->2 -->\n",
|
||||
"<g id=\"edge11\" class=\"edge\">\n",
|
||||
"<title>2->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M310.25,-105.78C309.27,-115.31 311.19,-124 316,-124 319.53,-124 321.51,-119.32 321.92,-113.05\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"321.75,-105.78 325.06,-112.71 321.83,-109.28 321.91,-112.78 321.91,-112.78 321.91,-112.78 321.83,-109.28 318.76,-112.85 321.75,-105.78 321.75,-105.78\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"296.5\" y=\"-142.8\" font-family=\"Lato\" font-size=\"14.00\">!a & !c</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"308\" y=\"-127.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M292.6,-105.78C291.68,-115.31 293.48,-124 297.99,-124 301.3,-124 303.15,-119.32 303.54,-113.05\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"303.38,-105.78 306.68,-112.71 303.46,-109.28 303.53,-112.78 303.53,-112.78 303.53,-112.78 303.46,-109.28 300.38,-112.85 303.38,-105.78 303.38,-105.78\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"278.49\" y=\"-142.8\" font-family=\"Lato\" font-size=\"14.00\">!a & !c</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"289.99\" y=\"-127.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->2 -->\n",
|
||||
"<g id=\"edge12\" class=\"edge\">\n",
|
||||
"<title>2->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M307.19,-105.25C300.94,-126.43 303.88,-154 316,-154 326.85,-154 330.34,-131.94 326.48,-112.13\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"324.81,-105.25 329.52,-111.31 325.64,-108.65 326.46,-112.05 326.46,-112.05 326.46,-112.05 325.64,-108.65 323.4,-112.8 324.81,-105.25 324.81,-105.25\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"298.5\" y=\"-171.8\" font-family=\"Lato\" font-size=\"14.00\">!a & c</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"300\" y=\"-157.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"316\" y=\"-157.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M289.82,-104.92C283.84,-126.15 286.56,-154 297.99,-154 308.21,-154 311.47,-131.71 307.76,-111.82\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"306.16,-104.92 310.81,-111.03 306.95,-108.33 307.74,-111.74 307.74,-111.74 307.74,-111.74 306.95,-108.33 304.67,-112.45 306.16,-104.92 306.16,-104.92\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"280.49\" y=\"-171.8\" font-family=\"Lato\" font-size=\"14.00\">!a & c</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"281.99\" y=\"-157.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"297.99\" y=\"-157.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"</svg>\n",
|
||||
|
|
@ -3156,7 +3156,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc93825d6c0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2f4840> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -3256,7 +3256,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc9381e31b0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c279390> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 24,
|
||||
|
|
@ -3329,7 +3329,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc9381e9bd0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c280c60> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 25,
|
||||
|
|
@ -3362,61 +3362,61 @@
|
|||
"<!-- Generated by graphviz version 2.43.0 (0)\n",
|
||||
" -->\n",
|
||||
"<!-- Pages: 1 -->\n",
|
||||
"<svg width=\"183pt\" height=\"131pt\"\n",
|
||||
" viewBox=\"0.00 0.00 182.74 130.74\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(1.0 1.0) rotate(0) translate(4 126.74)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-126.74 178.74,-126.74 178.74,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"65.87\" y=\"-108.54\" font-family=\"Lato\" font-size=\"14.00\">Fin(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"88.87\" y=\"-108.54\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"104.87\" y=\"-108.54\" font-family=\"Lato\" font-size=\"14.00\">)</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"55.87\" y=\"-94.54\" font-family=\"Lato\" font-size=\"14.00\">[co-Büchi]</text>\n",
|
||||
"<svg width=\"165pt\" height=\"115pt\"\n",
|
||||
" viewBox=\"0.00 0.00 165.00 115.19\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(1.0 1.0) rotate(0) translate(4 111.19)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-111.19 161,-111.19 161,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"57\" y=\"-92.99\" font-family=\"Lato\" font-size=\"14.00\">Fin(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"80\" y=\"-92.99\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"96\" y=\"-92.99\" font-family=\"Lato\" font-size=\"14.00\">)</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"47\" y=\"-78.99\" font-family=\"Lato\" font-size=\"14.00\">[co-Büchi]</text>\n",
|
||||
"<!-- I -->\n",
|
||||
"<!-- 1 -->\n",
|
||||
"<g id=\"node2\" class=\"node\">\n",
|
||||
"<title>1</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"64.87\" cy=\"-26.87\" rx=\"26.74\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"60.37\" y=\"-30.67\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"56.87\" y=\"-15.67\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M62,-38.19C62,-38.19 50,-38.19 50,-38.19 44,-38.19 38,-32.19 38,-26.19 38,-26.19 38,-12.19 38,-12.19 38,-6.19 44,-0.19 50,-0.19 50,-0.19 62,-0.19 62,-0.19 68,-0.19 74,-6.19 74,-12.19 74,-12.19 74,-26.19 74,-26.19 74,-32.19 68,-38.19 62,-38.19\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"51.5\" y=\"-22.99\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"48\" y=\"-7.99\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- I->1 -->\n",
|
||||
"<g id=\"edge1\" class=\"edge\">\n",
|
||||
"<title>I->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.05,-26.87C1.95,-26.87 16.07,-26.87 30.7,-26.87\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"37.86,-26.87 30.86,-30.02 34.36,-26.87 30.86,-26.87 30.86,-26.87 30.86,-26.87 34.36,-26.87 30.86,-23.72 37.86,-26.87 37.86,-26.87\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.15,-19.19C2.79,-19.19 17.15,-19.19 30.63,-19.19\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"37.94,-19.19 30.94,-22.34 34.44,-19.19 30.94,-19.19 30.94,-19.19 30.94,-19.19 34.44,-19.19 30.94,-16.04 37.94,-19.19 37.94,-19.19\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->1 -->\n",
|
||||
"<g id=\"edge4\" class=\"edge\">\n",
|
||||
"<title>1->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M56.67,-52.69C56.21,-63.05 58.94,-71.74 64.87,-71.74 69.32,-71.74 71.97,-66.85 72.82,-60.04\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"73.07,-52.69 75.98,-59.8 72.95,-56.19 72.83,-59.69 72.83,-59.69 72.83,-59.69 72.95,-56.19 69.68,-59.58 73.07,-52.69 73.07,-52.69\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"59.37\" y=\"-75.54\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M49.45,-38.23C48.54,-47.72 50.73,-56.19 56,-56.19 59.87,-56.19 62.08,-51.62 62.62,-45.44\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"62.55,-38.23 65.77,-45.2 62.58,-41.73 62.62,-45.23 62.62,-45.23 62.62,-45.23 62.58,-41.73 59.47,-45.26 62.55,-38.23 62.55,-38.23\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"50.5\" y=\"-59.99\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0 -->\n",
|
||||
"<g id=\"node3\" class=\"node\">\n",
|
||||
"<title>0</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"156.74\" cy=\"-26.87\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"156.74\" y=\"-23.17\" font-family=\"Lato\" font-size=\"14.00\">0</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M145,-37.19C145,-37.19 133,-37.19 133,-37.19 127,-37.19 121,-31.19 121,-25.19 121,-25.19 121,-13.19 121,-13.19 121,-7.19 127,-1.19 133,-1.19 133,-1.19 145,-1.19 145,-1.19 151,-1.19 157,-7.19 157,-13.19 157,-13.19 157,-25.19 157,-25.19 157,-31.19 151,-37.19 145,-37.19\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"139\" y=\"-15.49\" font-family=\"Lato\" font-size=\"14.00\">0</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->0 -->\n",
|
||||
"<g id=\"edge5\" class=\"edge\">\n",
|
||||
"<title>1->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M91.86,-26.87C104.31,-26.87 119.14,-26.87 131.37,-26.87\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"138.61,-26.87 131.61,-30.02 135.11,-26.87 131.61,-26.87 131.61,-26.87 131.61,-26.87 135.11,-26.87 131.61,-23.72 138.61,-26.87 138.61,-26.87\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"111.74\" y=\"-30.67\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M74.18,-19.19C85.67,-19.19 100.96,-19.19 113.69,-19.19\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"120.85,-19.19 113.85,-22.34 117.35,-19.19 113.85,-19.19 113.85,-19.19 113.85,-19.19 117.35,-19.19 113.85,-16.04 120.85,-19.19 120.85,-19.19\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"94\" y=\"-22.99\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->1 -->\n",
|
||||
"<g id=\"edge2\" class=\"edge\">\n",
|
||||
"<title>0->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M141.02,-17.33C134.99,-13.95 127.78,-10.57 120.74,-8.87 112.29,-6.82 103.27,-8.23 95.03,-10.98\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"88.33,-13.57 93.73,-8.11 91.59,-12.31 94.86,-11.05 94.86,-11.05 94.86,-11.05 91.59,-12.31 95.99,-13.99 88.33,-13.57 88.33,-13.57\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"109.74\" y=\"-12.67\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M120.88,-7.06C112.38,-2.45 101.84,1.19 92,-1.19 88.18,-2.11 84.31,-3.53 80.61,-5.17\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"74.17,-8.31 79.08,-2.42 77.31,-6.78 80.46,-5.25 80.46,-5.25 80.46,-5.25 77.31,-6.78 81.84,-8.08 74.17,-8.31 74.17,-8.31\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"92\" y=\"-4.99\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->0 -->\n",
|
||||
"<g id=\"edge3\" class=\"edge\">\n",
|
||||
"<title>0->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M149.71,-43.53C148.15,-53.5 150.49,-62.87 156.74,-62.87 161.43,-62.87 163.92,-57.6 164.21,-50.76\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"163.77,-43.53 167.34,-50.33 163.98,-47.03 164.2,-50.52 164.2,-50.52 164.2,-50.52 163.98,-47.03 161.05,-50.71 163.77,-43.53 163.77,-43.53\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"153.24\" y=\"-66.67\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M131.76,-37.34C130.65,-46.73 133.06,-55.19 139,-55.19 143.36,-55.19 145.82,-50.63 146.38,-44.49\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"146.24,-37.34 149.52,-44.28 146.31,-40.84 146.37,-44.34 146.37,-44.34 146.37,-44.34 146.31,-40.84 143.23,-44.4 146.24,-37.34 146.24,-37.34\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"135.5\" y=\"-58.99\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"</svg>\n"
|
||||
|
|
@ -3500,7 +3500,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc9381ee750> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c287cc0> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 27,
|
||||
|
|
@ -3583,7 +3583,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc93825d6c0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2f4840> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -3648,7 +3648,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc93825d6c0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2f4840> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -3735,7 +3735,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fc93825d6c0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7fbc2c2f4840> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 29,
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -531,11 +531,11 @@
|
|||
"<!-- Generated by graphviz version 2.43.0 (0)\n",
|
||||
" -->\n",
|
||||
"<!-- Pages: 1 -->\n",
|
||||
"<svg width=\"734pt\" height=\"311pt\"\n",
|
||||
" viewBox=\"0.00 0.00 734.00 310.64\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(0.9090909090909091 0.9090909090909091) rotate(0) translate(4 338.8)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-338.8 806,-338.8 806,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"368.5\" y=\"-304.6\" font-family=\"Lato\" font-size=\"14.00\">[co-Büchi]</text>\n",
|
||||
"<svg width=\"734pt\" height=\"313pt\"\n",
|
||||
" viewBox=\"0.00 0.00 734.00 313.34\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(0.9174311926605504 0.9174311926605504) rotate(0) translate(4 338.8)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-338.8 799,-338.8 799,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"366\" y=\"-304.6\" font-family=\"Lato\" font-size=\"14.00\">[co-Büchi]</text>\n",
|
||||
"<!-- I -->\n",
|
||||
"<!-- 0 -->\n",
|
||||
"<g id=\"node2\" class=\"node\">\n",
|
||||
|
|
@ -553,178 +553,178 @@
|
|||
"<!-- 1 -->\n",
|
||||
"<g id=\"node3\" class=\"node\">\n",
|
||||
"<title>1</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"177\" cy=\"-244\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"177\" y=\"-240.3\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"176\" cy=\"-244\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"176\" y=\"-240.3\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->1 -->\n",
|
||||
"<g id=\"edge2\" class=\"edge\">\n",
|
||||
"<title>0->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M64.3,-148.62C68.72,-170.19 78.64,-202.83 100,-222 114.18,-234.73 135.32,-240.12 151.7,-242.39\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"158.85,-243.23 151.53,-245.55 155.38,-242.83 151.9,-242.42 151.9,-242.42 151.9,-242.42 155.38,-242.83 152.27,-239.29 158.85,-243.23 158.85,-243.23\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"120.5\" y=\"-243.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M64.32,-148.6C68.75,-170.17 78.67,-202.79 100,-222 113.9,-234.52 134.58,-239.94 150.71,-242.27\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"157.76,-243.14 150.43,-245.41 154.29,-242.71 150.81,-242.28 150.81,-242.28 150.81,-242.28 154.29,-242.71 151.2,-239.16 157.76,-243.14 157.76,-243.14\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"120\" y=\"-243.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2 -->\n",
|
||||
"<g id=\"node4\" class=\"node\">\n",
|
||||
"<title>2</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"348\" cy=\"-188\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"348\" y=\"-184.3\" font-family=\"Lato\" font-size=\"14.00\">2</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"345\" cy=\"-188\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"345\" y=\"-184.3\" font-family=\"Lato\" font-size=\"14.00\">2</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->2 -->\n",
|
||||
"<g id=\"edge3\" class=\"edge\">\n",
|
||||
"<title>0->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M80.65,-134.73C86.78,-136.96 93.61,-139.26 100,-141 180.41,-162.94 278.29,-178.3 322.84,-184.69\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"330.02,-185.71 322.65,-187.84 326.56,-185.22 323.09,-184.72 323.09,-184.72 323.09,-184.72 326.56,-185.22 323.53,-181.6 330.02,-185.71 330.02,-185.71\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"177\" y=\"-165.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M80.65,-134.72C86.78,-136.95 93.62,-139.25 100,-141 179.25,-162.72 275.65,-178.14 319.81,-184.61\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"326.93,-185.64 319.55,-187.75 323.47,-185.14 320,-184.64 320,-184.64 320,-184.64 323.47,-185.14 320.46,-181.52 326.93,-185.64 326.93,-185.64\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"176\" y=\"-165.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3 -->\n",
|
||||
"<g id=\"node5\" class=\"node\">\n",
|
||||
"<title>3</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"457\" cy=\"-135\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"457\" y=\"-131.3\" font-family=\"Lato\" font-size=\"14.00\">3</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"453\" cy=\"-135\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"453\" y=\"-131.3\" font-family=\"Lato\" font-size=\"14.00\">3</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->3 -->\n",
|
||||
"<g id=\"edge4\" class=\"edge\">\n",
|
||||
"<title>0->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M82.24,-127.43C149.8,-128.8 359.56,-133.05 431.5,-134.5\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"438.8,-134.65 431.73,-137.66 435.3,-134.58 431.8,-134.51 431.8,-134.51 431.8,-134.51 435.3,-134.58 431.86,-131.36 438.8,-134.65 438.8,-134.65\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"262.5\" y=\"-135.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M82.02,-127.43C148.9,-128.8 356.54,-133.05 427.74,-134.5\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"434.97,-134.65 427.91,-137.66 431.47,-134.58 427.97,-134.51 427.97,-134.51 427.97,-134.51 431.47,-134.58 428.04,-131.36 434.97,-134.65 434.97,-134.65\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"260.5\" y=\"-135.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4 -->\n",
|
||||
"<g id=\"node6\" class=\"node\">\n",
|
||||
"<title>4</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"566\" cy=\"-89\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"566\" y=\"-85.3\" font-family=\"Lato\" font-size=\"14.00\">4</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"561\" cy=\"-89\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"561\" y=\"-85.3\" font-family=\"Lato\" font-size=\"14.00\">4</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->4 -->\n",
|
||||
"<g id=\"edge5\" class=\"edge\">\n",
|
||||
"<title>0->4</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M79.51,-116.82C101.73,-105.56 140.46,-89 176,-89 176,-89 176,-89 458,-89 486.42,-89 519.08,-89 540.76,-89\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"547.95,-89 540.95,-92.15 544.45,-89 540.95,-89 540.95,-89 540.95,-89 544.45,-89 540.95,-85.85 547.95,-89 547.95,-89\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"348\" y=\"-92.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M79.73,-116.62C101.81,-105.37 139.95,-89 175,-89 175,-89 175,-89 454,-89 481.99,-89 514.13,-89 535.61,-89\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"542.74,-89 535.74,-92.15 539.24,-89 535.74,-89 535.74,-89 535.74,-89 539.24,-89 535.74,-85.85 542.74,-89 542.74,-89\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"345\" y=\"-92.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5 -->\n",
|
||||
"<g id=\"node7\" class=\"node\">\n",
|
||||
"<title>5</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"675\" cy=\"-67\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"675\" y=\"-63.3\" font-family=\"Lato\" font-size=\"14.00\">5</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"669\" cy=\"-67\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"669\" y=\"-63.3\" font-family=\"Lato\" font-size=\"14.00\">5</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->5 -->\n",
|
||||
"<g id=\"edge6\" class=\"edge\">\n",
|
||||
"<title>0->5</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M73.62,-109.19C92.72,-84.53 131.5,-43 176,-43 176,-43 176,-43 567,-43 596.59,-43 629.69,-51.85 651.13,-58.8\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"657.94,-61.07 650.3,-61.84 654.62,-59.96 651.3,-58.85 651.3,-58.85 651.3,-58.85 654.62,-59.96 652.29,-55.86 657.94,-61.07 657.94,-61.07\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"402.5\" y=\"-46.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M73.48,-109.19C92.37,-84.53 130.75,-43 175,-43 175,-43 175,-43 562,-43 591.16,-43 623.74,-51.75 644.98,-58.68\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"651.73,-60.94 644.1,-61.7 648.42,-59.83 645.1,-58.72 645.1,-58.72 645.1,-58.72 648.42,-59.83 646.1,-55.73 651.73,-60.94 651.73,-60.94\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"399\" y=\"-46.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6 -->\n",
|
||||
"<g id=\"node8\" class=\"node\">\n",
|
||||
"<title>6</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"784\" cy=\"-67\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"784\" y=\"-63.3\" font-family=\"Lato\" font-size=\"14.00\">6</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"777\" cy=\"-67\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"777\" y=\"-63.3\" font-family=\"Lato\" font-size=\"14.00\">6</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->6 -->\n",
|
||||
"<g id=\"edge7\" class=\"edge\">\n",
|
||||
"<title>0->6</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M67.63,-106.35C73.9,-89.24 84.65,-65.05 100,-48 126.73,-18.31 136.05,0 176,0 176,0 176,0 676,0 712.82,0 747.39,-28.85 766.81,-48.69\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"771.64,-53.76 764.54,-50.87 769.23,-51.23 766.82,-48.69 766.82,-48.69 766.82,-48.69 769.23,-51.23 769.1,-46.52 771.64,-53.76 771.64,-53.76\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"457\" y=\"-3.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M68.37,-106.6C82.8,-70.7 118.41,0 175,0 175,0 175,0 670,0 706.42,0 740.5,-28.61 759.75,-48.43\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"764.78,-53.76 757.68,-50.83 762.38,-51.22 759.97,-48.67 759.97,-48.67 759.97,-48.67 762.38,-51.22 762.27,-46.51 764.78,-53.76 764.78,-53.76\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"453\" y=\"-3.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->0 -->\n",
|
||||
"<g id=\"edge8\" class=\"edge\">\n",
|
||||
"<title>1->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M165.95,-229.32C159.57,-220.81 150.69,-210.35 141,-203 125,-190.86 115.33,-196.97 100,-184 89.75,-175.32 81,-163.33 74.4,-152.58\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"70.77,-146.43 77.04,-150.85 72.55,-149.44 74.33,-152.45 74.33,-152.45 74.33,-152.45 72.55,-149.44 71.62,-154.05 70.77,-146.43 70.77,-146.43\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M164.93,-229.36C158.53,-220.86 149.66,-210.4 140,-203 124.38,-191.03 114.96,-196.79 100,-184 89.79,-175.27 81.05,-163.27 74.44,-152.53\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"70.81,-146.39 77.08,-150.81 72.59,-149.4 74.37,-152.41 74.37,-152.41 74.37,-152.41 72.59,-149.4 71.66,-154.01 70.81,-146.39 70.81,-146.39\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"100\" y=\"-206.8\" font-family=\"Lato\" font-size=\"14.00\">!a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->1 -->\n",
|
||||
"<g id=\"edge9\" class=\"edge\">\n",
|
||||
"<title>1->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M167.43,-259.54C164.73,-269.91 167.92,-280 177,-280 183.95,-280 187.45,-274.08 187.5,-266.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"186.57,-259.54 190.6,-266.08 187.03,-263.01 187.48,-266.48 187.48,-266.48 187.48,-266.48 187.03,-263.01 184.35,-266.89 186.57,-259.54 186.57,-259.54\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M166.43,-259.54C163.73,-269.91 166.92,-280 176,-280 182.95,-280 186.45,-274.08 186.5,-266.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"185.57,-259.54 189.6,-266.08 186.03,-263.01 186.48,-266.48 186.48,-266.48 186.48,-266.48 186.03,-263.01 183.35,-266.89 185.57,-259.54 185.57,-259.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"160\" y=\"-283.8\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->2 -->\n",
|
||||
"<g id=\"edge10\" class=\"edge\">\n",
|
||||
"<title>1->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M187.96,-229.4C194.2,-221.45 202.95,-212.2 213,-207 248.07,-188.88 294.81,-186.36 322.81,-186.77\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"329.84,-186.94 322.77,-189.92 326.35,-186.85 322.85,-186.77 322.85,-186.77 322.85,-186.77 326.35,-186.85 322.92,-183.62 329.84,-186.94 329.84,-186.94\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"213\" y=\"-210.8\" font-family=\"Lato\" font-size=\"14.00\">(!a & b) | (a & !b)</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M186.96,-229.41C193.2,-221.46 201.95,-212.21 212,-207 246.2,-189.28 291.69,-186.57 319.36,-186.84\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"326.67,-186.99 319.6,-189.99 323.17,-186.92 319.67,-186.85 319.67,-186.85 319.67,-186.85 323.17,-186.92 319.73,-183.7 326.67,-186.99 326.67,-186.99\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"212\" y=\"-210.8\" font-family=\"Lato\" font-size=\"14.00\">(!a & b) | (a & !b)</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->1 -->\n",
|
||||
"<g id=\"edge11\" class=\"edge\">\n",
|
||||
"<title>2->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M336.16,-202.03C329.89,-209.15 321.38,-217.27 312,-222 276.63,-239.82 229.98,-243.73 202.08,-244.31\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"195.08,-244.39 202.04,-241.16 198.58,-244.35 202.08,-244.31 202.08,-244.31 202.08,-244.31 198.58,-244.35 202.11,-247.46 195.08,-244.39 195.08,-244.39\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"244\" y=\"-246.8\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M333.16,-202.02C326.88,-209.14 318.37,-217.26 309,-222 274.51,-239.44 229.1,-243.5 201.53,-244.21\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"194.25,-244.33 201.2,-241.07 197.75,-244.27 201.25,-244.21 201.25,-244.21 201.25,-244.21 197.75,-244.27 201.3,-247.36 194.25,-244.33 194.25,-244.33\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"242.5\" y=\"-246.8\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->2 -->\n",
|
||||
"<g id=\"edge12\" class=\"edge\">\n",
|
||||
"<title>2->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M338.77,-203.54C336.17,-213.91 339.25,-224 348,-224 354.7,-224 358.08,-218.08 358.12,-210.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"357.23,-203.54 361.23,-210.1 357.67,-207.01 358.1,-210.49 358.1,-210.49 358.1,-210.49 357.67,-207.01 354.98,-210.88 357.23,-203.54 357.23,-203.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"298.5\" y=\"-227.8\" font-family=\"Lato\" font-size=\"14.00\">(!a & !b) | (a & b)</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M335.77,-203.54C333.17,-213.91 336.25,-224 345,-224 351.7,-224 355.08,-218.08 355.12,-210.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"354.23,-203.54 358.23,-210.1 354.67,-207.01 355.1,-210.49 355.1,-210.49 355.1,-210.49 354.67,-207.01 351.98,-210.88 354.23,-203.54 354.23,-203.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"296.5\" y=\"-227.8\" font-family=\"Lato\" font-size=\"14.00\">(!a & !b) | (a & b)</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->3 -->\n",
|
||||
"<g id=\"edge13\" class=\"edge\">\n",
|
||||
"<title>2->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M364.33,-180.41C382.58,-171.37 413.2,-156.2 433.98,-145.91\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"440.35,-142.75 435.48,-148.68 437.21,-144.31 434.08,-145.86 434.08,-145.86 434.08,-145.86 437.21,-144.31 432.68,-143.04 440.35,-142.75 440.35,-142.75\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"384\" y=\"-172.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M361.64,-180.18C379.83,-171.09 409.96,-156.02 430.38,-145.81\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"436.64,-142.68 431.79,-148.63 433.51,-144.25 430.38,-145.81 430.38,-145.81 430.38,-145.81 433.51,-144.25 428.97,-142.99 436.64,-142.68 436.64,-142.68\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"381\" y=\"-172.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->3 -->\n",
|
||||
"<g id=\"edge14\" class=\"edge\">\n",
|
||||
"<title>3->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M447.77,-150.54C445.17,-160.91 448.25,-171 457,-171 463.7,-171 467.08,-165.08 467.12,-157.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"466.23,-150.54 470.23,-157.1 466.67,-154.01 467.1,-157.49 467.1,-157.49 467.1,-157.49 466.67,-154.01 463.98,-157.88 466.23,-150.54 466.23,-150.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"441.5\" y=\"-174.8\" font-family=\"Lato\" font-size=\"14.00\">!a | b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M443.77,-150.54C441.17,-160.91 444.25,-171 453,-171 459.7,-171 463.08,-165.08 463.12,-157.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"462.23,-150.54 466.23,-157.1 462.67,-154.01 463.1,-157.49 463.1,-157.49 463.1,-157.49 462.67,-154.01 459.98,-157.88 462.23,-150.54 462.23,-150.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"438\" y=\"-174.8\" font-family=\"Lato\" font-size=\"14.00\">!a | b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->4 -->\n",
|
||||
"<g id=\"edge15\" class=\"edge\">\n",
|
||||
"<title>3->4</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M473.79,-128.21C491.96,-120.4 521.95,-107.51 542.55,-98.65\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"549.15,-95.82 543.96,-101.47 545.93,-97.2 542.72,-98.58 542.72,-98.58 542.72,-98.58 545.93,-97.2 541.47,-95.69 549.15,-95.82 549.15,-95.82\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"493\" y=\"-121.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M470.1,-128.01C488.1,-120.2 517.38,-107.49 537.61,-98.72\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"544.1,-95.9 538.93,-101.58 540.89,-97.29 537.68,-98.69 537.68,-98.69 537.68,-98.69 540.89,-97.29 536.42,-95.8 544.1,-95.9 544.1,-95.9\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"489\" y=\"-121.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4->4 -->\n",
|
||||
"<g id=\"edge16\" class=\"edge\">\n",
|
||||
"<title>4->4</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M556.77,-104.54C554.17,-114.91 557.25,-125 566,-125 572.7,-125 576.08,-119.08 576.12,-111.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"575.23,-104.54 579.23,-111.1 575.67,-108.01 576.1,-111.49 576.1,-111.49 576.1,-111.49 575.67,-108.01 572.98,-111.88 575.23,-104.54 575.23,-104.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"550.5\" y=\"-128.8\" font-family=\"Lato\" font-size=\"14.00\">!a | b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M551.77,-104.54C549.17,-114.91 552.25,-125 561,-125 567.7,-125 571.08,-119.08 571.12,-111.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"570.23,-104.54 574.23,-111.1 570.67,-108.01 571.1,-111.49 571.1,-111.49 571.1,-111.49 570.67,-108.01 567.98,-111.88 570.23,-104.54 570.23,-104.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"546\" y=\"-128.8\" font-family=\"Lato\" font-size=\"14.00\">!a | b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4->5 -->\n",
|
||||
"<g id=\"edge17\" class=\"edge\">\n",
|
||||
"<title>4->5</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M583.72,-85.56C601.52,-81.9 629.84,-76.08 650.02,-71.93\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"657.05,-70.49 650.82,-74.98 653.62,-71.19 650.19,-71.9 650.19,-71.9 650.19,-71.9 653.62,-71.19 649.55,-68.81 657.05,-70.49 657.05,-70.49\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"602\" y=\"-84.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M579.03,-85.47C596.65,-81.81 624.3,-76.07 644.11,-71.96\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"651.01,-70.53 644.8,-75.03 647.58,-71.24 644.16,-71.95 644.16,-71.95 644.16,-71.95 647.58,-71.24 643.52,-68.86 651.01,-70.53 651.01,-70.53\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"597\" y=\"-84.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5->5 -->\n",
|
||||
"<g id=\"edge18\" class=\"edge\">\n",
|
||||
"<title>5->5</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M665.77,-82.54C663.17,-92.91 666.25,-103 675,-103 681.7,-103 685.08,-97.08 685.12,-89.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"684.23,-82.54 688.23,-89.1 684.67,-86.01 685.1,-89.49 685.1,-89.49 685.1,-89.49 684.67,-86.01 681.98,-89.88 684.23,-82.54 684.23,-82.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"659.5\" y=\"-106.8\" font-family=\"Lato\" font-size=\"14.00\">!a | b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M659.77,-82.54C657.17,-92.91 660.25,-103 669,-103 675.7,-103 679.08,-97.08 679.12,-89.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"678.23,-82.54 682.23,-89.1 678.67,-86.01 679.1,-89.49 679.1,-89.49 679.1,-89.49 678.67,-86.01 675.98,-89.88 678.23,-82.54 678.23,-82.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"654\" y=\"-106.8\" font-family=\"Lato\" font-size=\"14.00\">!a | b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5->6 -->\n",
|
||||
"<g id=\"edge19\" class=\"edge\">\n",
|
||||
"<title>5->6</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M693.19,-67C710.9,-67 738.65,-67 758.62,-67\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"765.85,-67 758.85,-70.15 762.35,-67 758.85,-67 758.85,-67 758.85,-67 762.35,-67 758.85,-63.85 765.85,-67 765.85,-67\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"711\" y=\"-70.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M687.03,-67C704.47,-67 731.74,-67 751.49,-67\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"758.66,-67 751.66,-70.15 755.16,-67 751.66,-67 751.66,-67 751.66,-67 755.16,-67 751.66,-63.85 758.66,-67 758.66,-67\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"705\" y=\"-70.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6->1 -->\n",
|
||||
"<g id=\"edge20\" class=\"edge\">\n",
|
||||
"<title>6->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M782.08,-85.01C778.45,-135.37 760.75,-274 676,-274 347,-274 347,-274 347,-274 287.12,-274 270.77,-275.77 213,-260 208.6,-258.8 204.06,-257.1 199.77,-255.26\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"193.27,-252.29 200.95,-252.34 196.46,-253.74 199.64,-255.2 199.64,-255.2 199.64,-255.2 196.46,-253.74 198.33,-258.06 193.27,-252.29 193.27,-252.29\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"493\" y=\"-277.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M775.15,-85.01C771.72,-135.37 754.59,-274 670,-274 344,-274 344,-274 344,-274 285,-274 268.9,-275.58 212,-260 207.6,-258.8 203.06,-257.1 198.77,-255.25\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"192.28,-252.28 199.95,-252.33 195.46,-253.74 198.64,-255.19 198.64,-255.19 198.64,-255.19 195.46,-253.74 197.33,-258.06 192.28,-252.28 192.28,-252.28\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"489\" y=\"-277.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6->6 -->\n",
|
||||
"<g id=\"edge21\" class=\"edge\">\n",
|
||||
"<title>6->6</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M774.77,-82.54C772.17,-92.91 775.25,-103 784,-103 790.7,-103 794.08,-97.08 794.12,-89.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"793.23,-82.54 797.23,-89.1 793.67,-86.01 794.1,-89.49 794.1,-89.49 794.1,-89.49 793.67,-86.01 790.98,-89.88 793.23,-82.54 793.23,-82.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"768.5\" y=\"-106.8\" font-family=\"Lato\" font-size=\"14.00\">!a | b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M767.77,-82.54C765.17,-92.91 768.25,-103 777,-103 783.7,-103 787.08,-97.08 787.12,-89.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"786.23,-82.54 790.23,-89.1 786.67,-86.01 787.1,-89.49 787.1,-89.49 787.1,-89.49 786.67,-86.01 783.98,-89.88 786.23,-82.54 786.23,-82.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"762\" y=\"-106.8\" font-family=\"Lato\" font-size=\"14.00\">!a | b</text>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"</svg>\n"
|
||||
|
|
@ -745,234 +745,234 @@
|
|||
"<!-- Generated by graphviz version 2.43.0 (0)\n",
|
||||
" -->\n",
|
||||
"<!-- Pages: 1 -->\n",
|
||||
"<svg width=\"734pt\" height=\"272pt\"\n",
|
||||
" viewBox=\"0.00 0.00 734.00 272.28\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(0.819672131147541 0.819672131147541) rotate(0) translate(4 328.87)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-328.87 893.34,-328.87 893.34,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"269.17\" y=\"-310.67\" font-family=\"Lato\" font-size=\"14.00\">(Fin(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"297.17\" y=\"-310.67\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"313.17\" y=\"-310.67\" font-family=\"Lato\" font-size=\"14.00\">) | Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"350.17\" y=\"-310.67\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"366.17\" y=\"-310.67\" font-family=\"Lato\" font-size=\"14.00\">)) & (Fin(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"420.17\" y=\"-310.67\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff7f00\">❷</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"436.17\" y=\"-310.67\" font-family=\"Lato\" font-size=\"14.00\">) | Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"473.17\" y=\"-310.67\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#6a3d9a\">❸</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"489.17\" y=\"-310.67\" font-family=\"Lato\" font-size=\"14.00\">)) & (Fin(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"543.17\" y=\"-310.67\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#33a02c\">❹</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"559.17\" y=\"-310.67\" font-family=\"Lato\" font-size=\"14.00\">) | Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"596.17\" y=\"-310.67\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#e31a1c\">❺</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"612.17\" y=\"-310.67\" font-family=\"Lato\" font-size=\"14.00\">))</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"412.67\" y=\"-296.67\" font-family=\"Lato\" font-size=\"14.00\">[Streett 3]</text>\n",
|
||||
"<svg width=\"734pt\" height=\"288pt\"\n",
|
||||
" viewBox=\"0.00 0.00 734.00 288.36\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(0.9345794392523364 0.9345794392523364) rotate(0) translate(4 304)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-304 780,-304 780,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"216.5\" y=\"-285.8\" font-family=\"Lato\" font-size=\"14.00\">(Fin(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"243.5\" y=\"-285.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"259.5\" y=\"-285.8\" font-family=\"Lato\" font-size=\"14.00\">) | Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"295.5\" y=\"-285.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"311.5\" y=\"-285.8\" font-family=\"Lato\" font-size=\"14.00\">)) & (Fin(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"363.5\" y=\"-285.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff7f00\">❷</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"379.5\" y=\"-285.8\" font-family=\"Lato\" font-size=\"14.00\">) | Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"415.5\" y=\"-285.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#6a3d9a\">❸</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"431.5\" y=\"-285.8\" font-family=\"Lato\" font-size=\"14.00\">)) & (Fin(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"483.5\" y=\"-285.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#33a02c\">❹</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"499.5\" y=\"-285.8\" font-family=\"Lato\" font-size=\"14.00\">) | Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"535.5\" y=\"-285.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#e31a1c\">❺</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"551.5\" y=\"-285.8\" font-family=\"Lato\" font-size=\"14.00\">))</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"356.5\" y=\"-271.8\" font-family=\"Lato\" font-size=\"14.00\">[Streett 3]</text>\n",
|
||||
"<!-- I -->\n",
|
||||
"<!-- 0 -->\n",
|
||||
"<g id=\"node2\" class=\"node\">\n",
|
||||
"<title>0</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"64.87\" cy=\"-207.87\" rx=\"26.74\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"60.37\" y=\"-211.67\" font-family=\"Lato\" font-size=\"14.00\">0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"56.87\" y=\"-196.67\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M62,-207C62,-207 50,-207 50,-207 44,-207 38,-201 38,-195 38,-195 38,-181 38,-181 38,-175 44,-169 50,-169 50,-169 62,-169 62,-169 68,-169 74,-175 74,-181 74,-181 74,-195 74,-195 74,-201 68,-207 62,-207\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"51.5\" y=\"-191.8\" font-family=\"Lato\" font-size=\"14.00\">0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"48\" y=\"-176.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- I->0 -->\n",
|
||||
"<g id=\"edge1\" class=\"edge\">\n",
|
||||
"<title>I->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.05,-207.87C1.95,-207.87 16.07,-207.87 30.7,-207.87\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"37.86,-207.87 30.86,-211.02 34.36,-207.87 30.86,-207.87 30.86,-207.87 30.86,-207.87 34.36,-207.87 30.86,-204.72 37.86,-207.87 37.86,-207.87\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.15,-188C2.79,-188 17.15,-188 30.63,-188\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"37.94,-188 30.94,-191.15 34.44,-188 30.94,-188 30.94,-188 30.94,-188 34.44,-188 30.94,-184.85 37.94,-188 37.94,-188\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2 -->\n",
|
||||
"<g id=\"node3\" class=\"node\">\n",
|
||||
"<title>2</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"152.74\" cy=\"-133.87\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"152.74\" y=\"-130.17\" font-family=\"Lato\" font-size=\"14.00\">2</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M141,-123C141,-123 129,-123 129,-123 123,-123 117,-117 117,-111 117,-111 117,-99 117,-99 117,-93 123,-87 129,-87 129,-87 141,-87 141,-87 147,-87 153,-93 153,-99 153,-99 153,-111 153,-111 153,-117 147,-123 141,-123\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"135\" y=\"-101.3\" font-family=\"Lato\" font-size=\"14.00\">2</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->2 -->\n",
|
||||
"<g id=\"edge2\" class=\"edge\">\n",
|
||||
"<title>0->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M85.79,-190.71C100.01,-178.45 119.01,-162.08 132.96,-150.05\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"138.6,-145.19 135.36,-152.15 135.95,-147.47 133.3,-149.76 133.3,-149.76 133.3,-149.76 135.95,-147.47 131.25,-147.37 138.6,-145.19 138.6,-145.19\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"109.74\" y=\"-171.67\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M74.09,-169.58C85.33,-157.46 100.15,-141.49 112.23,-128.47\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"117.22,-123.08 114.77,-130.36 114.84,-125.65 112.46,-128.22 112.46,-128.22 112.46,-128.22 114.84,-125.65 110.15,-126.07 117.22,-123.08 117.22,-123.08\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"92\" y=\"-151.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3 -->\n",
|
||||
"<g id=\"node6\" class=\"node\">\n",
|
||||
"<title>3</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"298.61\" cy=\"-52.87\" rx=\"26.74\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"294.11\" y=\"-56.67\" font-family=\"Lato\" font-size=\"14.00\">3</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"290.61\" y=\"-41.67\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M278,-58C278,-58 266,-58 266,-58 260,-58 254,-52 254,-46 254,-46 254,-32 254,-32 254,-26 260,-20 266,-20 266,-20 278,-20 278,-20 284,-20 290,-26 290,-32 290,-32 290,-46 290,-46 290,-52 284,-58 278,-58\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"267.5\" y=\"-42.8\" font-family=\"Lato\" font-size=\"14.00\">3</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"264\" y=\"-27.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->3 -->\n",
|
||||
"<g id=\"edge5\" class=\"edge\">\n",
|
||||
"<title>2->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M168.86,-125.35C192.51,-112.04 238.62,-86.08 268.76,-69.11\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"274.94,-65.64 270.38,-71.81 271.89,-67.35 268.84,-69.07 268.84,-69.07 268.84,-69.07 271.89,-67.35 267.29,-66.32 274.94,-65.64 274.94,-65.64\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"188.74\" y=\"-116.67\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M153.34,-95.33C158.94,-92.27 165.2,-88.93 171,-86 196.84,-72.93 226.97,-58.93 247.35,-49.65\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"253.87,-46.69 248.8,-52.45 250.68,-48.13 247.5,-49.58 247.5,-49.58 247.5,-49.58 250.68,-48.13 246.19,-46.71 253.87,-46.69 253.87,-46.69\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"171\" y=\"-89.8\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6 -->\n",
|
||||
"<g id=\"node7\" class=\"node\">\n",
|
||||
"<title>6</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"235.74\" cy=\"-133.87\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"235.74\" y=\"-130.17\" font-family=\"Lato\" font-size=\"14.00\">6</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M224,-123C224,-123 212,-123 212,-123 206,-123 200,-117 200,-111 200,-111 200,-99 200,-99 200,-93 206,-87 212,-87 212,-87 224,-87 224,-87 230,-87 236,-93 236,-99 236,-99 236,-111 236,-111 236,-117 230,-123 224,-123\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"218\" y=\"-101.3\" font-family=\"Lato\" font-size=\"14.00\">6</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->6 -->\n",
|
||||
"<g id=\"edge6\" class=\"edge\">\n",
|
||||
"<title>2->6</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M170.92,-133.87C182.41,-133.87 197.7,-133.87 210.43,-133.87\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"217.59,-133.87 210.59,-137.02 214.09,-133.87 210.59,-133.87 210.59,-133.87 210.59,-133.87 214.09,-133.87 210.59,-130.72 217.59,-133.87 217.59,-133.87\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"190.74\" y=\"-137.67\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M153.18,-105C164.67,-105 179.96,-105 192.69,-105\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"199.85,-105 192.85,-108.15 196.35,-105 192.85,-105 192.85,-105 192.85,-105 196.35,-105 192.85,-101.85 199.85,-105 199.85,-105\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"173\" y=\"-108.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1 -->\n",
|
||||
"<g id=\"node4\" class=\"node\">\n",
|
||||
"<title>1</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"590.86\" cy=\"-119.87\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"590.86\" y=\"-116.17\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M519,-136C519,-136 507,-136 507,-136 501,-136 495,-130 495,-124 495,-124 495,-112 495,-112 495,-106 501,-100 507,-100 507,-100 519,-100 519,-100 525,-100 531,-106 531,-112 531,-112 531,-124 531,-124 531,-130 525,-136 519,-136\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"513\" y=\"-114.3\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->0 -->\n",
|
||||
"<g id=\"edge3\" class=\"edge\">\n",
|
||||
"<title>1->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M588.22,-137.84C583.45,-178.46 565.67,-273.87 503.99,-273.87 151.74,-273.87 151.74,-273.87 151.74,-273.87 124.82,-273.87 101.15,-253.22 85.51,-235.02\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"80.93,-229.48 87.82,-232.86 83.16,-232.18 85.39,-234.87 85.39,-234.87 85.39,-234.87 83.16,-232.18 82.96,-236.88 80.93,-229.48 80.93,-229.48\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"293.11\" y=\"-277.67\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M509.81,-136.21C504.37,-172.21 486.71,-249 435,-249 134,-249 134,-249 134,-249 109.48,-249 88.22,-229.77 74.29,-212.9\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"69.85,-207.3 76.67,-210.83 72.03,-210.04 74.2,-212.79 74.2,-212.79 74.2,-212.79 72.03,-210.04 71.73,-214.74 69.85,-207.3 69.85,-207.3\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"266.5\" y=\"-252.8\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5 -->\n",
|
||||
"<g id=\"node5\" class=\"node\">\n",
|
||||
"<title>5</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"669.86\" cy=\"-119.87\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"669.86\" y=\"-116.17\" font-family=\"Lato\" font-size=\"14.00\">5</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M598,-136C598,-136 586,-136 586,-136 580,-136 574,-130 574,-124 574,-124 574,-112 574,-112 574,-106 580,-100 586,-100 586,-100 598,-100 598,-100 604,-100 610,-106 610,-112 610,-112 610,-124 610,-124 610,-130 604,-136 598,-136\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"592\" y=\"-114.3\" font-family=\"Lato\" font-size=\"14.00\">5</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->5 -->\n",
|
||||
"<g id=\"edge4\" class=\"edge\">\n",
|
||||
"<title>1->5</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M608.95,-119.87C619.41,-119.87 632.98,-119.87 644.55,-119.87\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"651.82,-119.87 644.82,-123.02 648.32,-119.87 644.82,-119.87 644.82,-119.87 644.82,-119.87 648.32,-119.87 644.82,-116.72 651.82,-119.87 651.82,-119.87\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"626.86\" y=\"-123.67\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M531.09,-118C541.56,-118 555.12,-118 566.69,-118\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"573.96,-118 566.96,-121.15 570.46,-118 566.96,-118 566.96,-118 566.96,-118 570.46,-118 566.96,-114.85 573.96,-118 573.96,-118\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"549\" y=\"-121.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4 -->\n",
|
||||
"<g id=\"node8\" class=\"node\">\n",
|
||||
"<title>4</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"761.73\" cy=\"-211.87\" rx=\"26.74\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"757.23\" y=\"-215.67\" font-family=\"Lato\" font-size=\"14.00\">4</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"753.73\" y=\"-200.67\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff7f00\">❷</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M681,-215C681,-215 669,-215 669,-215 663,-215 657,-209 657,-203 657,-203 657,-189 657,-189 657,-183 663,-177 669,-177 669,-177 681,-177 681,-177 687,-177 693,-183 693,-189 693,-189 693,-203 693,-203 693,-209 687,-215 681,-215\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"670.5\" y=\"-199.8\" font-family=\"Lato\" font-size=\"14.00\">4</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"667\" y=\"-184.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff7f00\">❷</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5->4 -->\n",
|
||||
"<g id=\"edge9\" class=\"edge\">\n",
|
||||
"<title>5->4</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M682.98,-132.28C696.78,-146.41 719.68,-169.85 737.06,-187.64\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"742.26,-192.97 735.12,-190.16 739.81,-190.46 737.37,-187.96 737.37,-187.96 737.37,-187.96 739.81,-190.46 739.62,-185.76 742.26,-192.97 742.26,-192.97\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"705.86\" y=\"-169.67\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M610.18,-134.54C622.21,-146.12 638.4,-161.72 651.46,-174.3\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"656.85,-179.48 649.62,-176.9 654.33,-177.05 651.8,-174.63 651.8,-174.63 651.8,-174.63 654.33,-177.05 653.99,-172.36 656.85,-179.48 656.85,-179.48\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"628\" y=\"-164.8\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 9 -->\n",
|
||||
"<g id=\"node9\" class=\"node\">\n",
|
||||
"<title>9</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"761.73\" cy=\"-100.87\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"761.73\" y=\"-97.17\" font-family=\"Lato\" font-size=\"14.00\">9</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M681,-106C681,-106 669,-106 669,-106 663,-106 657,-100 657,-94 657,-94 657,-82 657,-82 657,-76 663,-70 669,-70 669,-70 681,-70 681,-70 687,-70 693,-76 693,-82 693,-82 693,-94 693,-94 693,-100 687,-106 681,-106\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"675\" y=\"-84.3\" font-family=\"Lato\" font-size=\"14.00\">9</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5->9 -->\n",
|
||||
"<g id=\"edge10\" class=\"edge\">\n",
|
||||
"<title>5->9</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M687.76,-116.3C701.57,-113.38 721.26,-109.21 736.7,-105.95\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"743.9,-104.43 737.7,-108.96 740.47,-105.15 737.05,-105.88 737.05,-105.88 737.05,-105.88 740.47,-105.15 736.4,-102.79 743.9,-104.43 743.9,-104.43\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"707.86\" y=\"-115.67\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M610.18,-111.64C621.78,-107.34 637.25,-101.61 650.05,-96.87\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"656.85,-94.35 651.38,-99.74 653.56,-95.57 650.28,-96.78 650.28,-96.78 650.28,-96.78 653.56,-95.57 649.19,-93.83 656.85,-94.35 656.85,-94.35\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"630\" y=\"-107.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->1 -->\n",
|
||||
"<g id=\"edge7\" class=\"edge\">\n",
|
||||
"<title>3->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M325.06,-48.08C356.76,-43.04 412.34,-37.32 458.12,-48.87 501.08,-59.71 545.27,-87.62 569.98,-105.04\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"575.83,-109.23 568.31,-107.72 572.99,-107.19 570.14,-105.16 570.14,-105.16 570.14,-105.16 572.99,-107.19 571.97,-102.59 575.83,-109.23 575.83,-109.23\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"427.75\" y=\"-52.67\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M290.07,-36.27C314.59,-33 360.94,-29.33 398,-41 433.34,-52.13 467.71,-78.05 489.31,-96.74\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"494.79,-101.57 487.45,-99.3 492.16,-99.25 489.54,-96.94 489.54,-96.94 489.54,-96.94 492.16,-99.25 491.62,-94.57 494.79,-101.57 494.79,-101.57\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"376.5\" y=\"-44.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7 -->\n",
|
||||
"<g id=\"node10\" class=\"node\">\n",
|
||||
"<title>7</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"431.25\" cy=\"-99.87\" rx=\"26.74\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"426.75\" y=\"-103.67\" font-family=\"Lato\" font-size=\"14.00\">7</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"423.25\" y=\"-88.67\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#6a3d9a\">❸</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M386,-103C386,-103 374,-103 374,-103 368,-103 362,-97 362,-91 362,-91 362,-77 362,-77 362,-71 368,-65 374,-65 374,-65 386,-65 386,-65 392,-65 398,-71 398,-77 398,-77 398,-91 398,-91 398,-97 392,-103 386,-103\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"375.5\" y=\"-87.8\" font-family=\"Lato\" font-size=\"14.00\">7</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"372\" y=\"-72.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#6a3d9a\">❸</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6->7 -->\n",
|
||||
"<g id=\"edge11\" class=\"edge\">\n",
|
||||
"<title>6->7</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M252.08,-126.17C258.08,-123.46 265.1,-120.65 271.74,-118.87 314.17,-107.49 364.83,-102.92 397.25,-101.09\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"404.29,-100.72 397.46,-104.23 400.79,-100.9 397.3,-101.08 397.3,-101.08 397.3,-101.08 400.79,-100.9 397.13,-97.94 404.29,-100.72 404.29,-100.72\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"293.11\" y=\"-122.67\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M236.2,-98.11C241.79,-96.14 248.08,-94.21 254,-93 288.54,-85.96 329.42,-84.23 354.79,-83.9\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"361.83,-83.84 354.85,-87.05 358.33,-83.87 354.83,-83.9 354.83,-83.9 354.83,-83.9 358.33,-83.87 354.8,-80.75 361.83,-83.84 361.83,-83.84\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"266.5\" y=\"-96.8\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 10 -->\n",
|
||||
"<g id=\"node11\" class=\"node\">\n",
|
||||
"<title>10</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"364.93\" cy=\"-148.87\" rx=\"21.4\" ry=\"21.4\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"364.93\" y=\"-145.17\" font-family=\"Lato\" font-size=\"14.00\">10</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M332,-145C332,-145 320,-145 320,-145 314,-145 308,-139 308,-133 308,-133 308,-121 308,-121 308,-115 314,-109 320,-109 320,-109 332,-109 332,-109 338,-109 344,-115 344,-121 344,-121 344,-133 344,-133 344,-139 338,-145 332,-145\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"326\" y=\"-123.3\" font-family=\"Lato\" font-size=\"14.00\">10</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6->10 -->\n",
|
||||
"<g id=\"edge12\" class=\"edge\">\n",
|
||||
"<title>6->10</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M253.63,-135.86C274.79,-138.36 311.31,-142.66 336.5,-145.64\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"343.6,-146.47 336.28,-148.78 340.13,-146.06 336.65,-145.65 336.65,-145.65 336.65,-145.65 340.13,-146.06 337.02,-142.52 343.6,-146.47 343.6,-146.47\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"295.11\" y=\"-147.67\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M236.03,-108.53C253.54,-112.17 280.98,-117.86 300.75,-121.97\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"307.66,-123.4 300.17,-125.06 304.23,-122.69 300.81,-121.98 300.81,-121.98 300.81,-121.98 304.23,-122.69 301.45,-118.89 307.66,-123.4 307.66,-123.4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"268.5\" y=\"-122.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4->2 -->\n",
|
||||
"<g id=\"edge8\" class=\"edge\">\n",
|
||||
"<title>4->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M735.84,-220.04C717.97,-225.19 693.18,-230.87 670.86,-230.87 234.74,-230.87 234.74,-230.87 234.74,-230.87 196.55,-230.87 172.85,-186.03 161.59,-157.33\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"159.12,-150.77 164.53,-156.21 160.35,-154.04 161.58,-157.32 161.58,-157.32 161.58,-157.32 160.35,-154.04 158.64,-158.43 159.12,-150.77 159.12,-150.77\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"499.49\" y=\"-234.67\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M656.7,-199.39C640.35,-202.29 615.1,-206 593,-206 217,-206 217,-206 217,-206 178.09,-206 154.76,-159.81 143.74,-129.9\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"141.32,-123.06 146.62,-128.61 142.49,-126.36 143.65,-129.66 143.65,-129.66 143.65,-129.66 142.49,-126.36 140.68,-130.71 141.32,-123.06 141.32,-123.06\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"430.5\" y=\"-209.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 9->9 -->\n",
|
||||
"<g id=\"edge16\" class=\"edge\">\n",
|
||||
"<title>9->9</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M753.09,-116.79C750.84,-127.02 753.72,-136.87 761.73,-136.87 767.86,-136.87 770.98,-131.1 771.1,-123.8\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"770.36,-116.79 774.23,-123.42 770.73,-120.27 771.09,-123.75 771.09,-123.75 771.09,-123.75 770.73,-120.27 767.96,-124.08 770.36,-116.79 770.36,-116.79\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"758.23\" y=\"-140.67\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M667.76,-106.15C666.65,-115.54 669.06,-124 675,-124 679.36,-124 681.82,-119.44 682.38,-113.3\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"682.24,-106.15 685.52,-113.09 682.31,-109.65 682.37,-113.15 682.37,-113.15 682.37,-113.15 682.31,-109.65 679.23,-113.21 682.24,-106.15 682.24,-106.15\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"671.5\" y=\"-127.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8 -->\n",
|
||||
"<g id=\"node12\" class=\"node\">\n",
|
||||
"<title>8</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"862.47\" cy=\"-26.87\" rx=\"26.74\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"857.97\" y=\"-30.67\" font-family=\"Lato\" font-size=\"14.00\">8</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"854.47\" y=\"-15.67\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#33a02c\">❹</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M764,-38C764,-38 752,-38 752,-38 746,-38 740,-32 740,-26 740,-26 740,-12 740,-12 740,-6 746,0 752,0 752,0 764,0 764,0 770,0 776,-6 776,-12 776,-12 776,-26 776,-26 776,-32 770,-38 764,-38\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"753.5\" y=\"-22.8\" font-family=\"Lato\" font-size=\"14.00\">8</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"750\" y=\"-7.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#33a02c\">❹</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 9->8 -->\n",
|
||||
"<g id=\"edge15\" class=\"edge\">\n",
|
||||
"<title>9->8</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M776.87,-90.27C791.82,-79.07 815.76,-61.13 834.36,-47.18\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"840.44,-42.63 836.73,-49.34 837.64,-44.72 834.84,-46.82 834.84,-46.82 834.84,-46.82 837.64,-44.72 832.95,-44.3 840.44,-42.63 840.44,-42.63\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"806.6\" y=\"-70.67\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M693.18,-73.37C705.21,-63.12 721.4,-49.33 734.46,-38.2\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"739.85,-33.61 736.56,-40.55 737.18,-35.88 734.52,-38.15 734.52,-38.15 734.52,-38.15 737.18,-35.88 732.48,-35.75 739.85,-33.61 739.85,-33.61\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"711\" y=\"-60.8\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7->1 -->\n",
|
||||
"<g id=\"edge13\" class=\"edge\">\n",
|
||||
"<title>7->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M458.42,-101.65C478.12,-103.14 505.75,-105.56 529.86,-108.87 541.91,-110.53 555.22,-112.91 566.24,-115.04\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"573.11,-116.39 565.63,-118.13 569.68,-115.71 566.24,-115.04 566.24,-115.04 566.24,-115.04 569.68,-115.71 566.85,-111.95 573.11,-116.39 573.11,-116.39\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"499.49\" y=\"-112.67\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M398.12,-85.99C412.61,-87.9 433.88,-91.19 452,-96 464.14,-99.22 477.28,-103.9 488.15,-108.11\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"494.94,-110.79 487.27,-111.15 491.69,-109.5 488.43,-108.22 488.43,-108.22 488.43,-108.22 491.69,-109.5 489.59,-105.29 494.94,-110.79 494.94,-110.79\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"430.5\" y=\"-99.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 10->10 -->\n",
|
||||
"<g id=\"edge18\" class=\"edge\">\n",
|
||||
"<title>10->10</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M353.33,-167.13C350.75,-178.05 354.62,-188.32 364.93,-188.32 372.98,-188.32 377.11,-182.05 377.3,-174.1\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"376.53,-167.13 380.43,-173.74 376.91,-170.61 377.3,-174.09 377.3,-174.09 377.3,-174.09 376.91,-170.61 374.16,-174.43 376.53,-167.13 376.53,-167.13\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"361.43\" y=\"-192.12\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M316.23,-145.15C314.73,-154.54 317.98,-163 326,-163 331.89,-163 335.21,-158.44 335.96,-152.3\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"335.77,-145.15 339.1,-152.07 335.86,-148.65 335.96,-152.15 335.96,-152.15 335.96,-152.15 335.86,-148.65 332.81,-152.23 335.77,-145.15 335.77,-145.15\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"322.5\" y=\"-166.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 11 -->\n",
|
||||
"<g id=\"node13\" class=\"node\">\n",
|
||||
"<title>11</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"502.99\" cy=\"-159.87\" rx=\"26.74\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"494.49\" y=\"-163.67\" font-family=\"Lato\" font-size=\"14.00\">11</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"494.99\" y=\"-148.67\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#e31a1c\">❺</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M440,-158C440,-158 428,-158 428,-158 422,-158 416,-152 416,-146 416,-146 416,-132 416,-132 416,-126 422,-120 428,-120 428,-120 440,-120 440,-120 446,-120 452,-126 452,-132 452,-132 452,-146 452,-146 452,-152 446,-158 440,-158\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"425.5\" y=\"-142.8\" font-family=\"Lato\" font-size=\"14.00\">11</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"426\" y=\"-127.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#e31a1c\">❺</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 10->11 -->\n",
|
||||
"<g id=\"edge17\" class=\"edge\">\n",
|
||||
"<title>10->11</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M386.59,-150.54C408.47,-152.31 443.33,-155.13 469.01,-157.2\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"476,-157.77 468.77,-160.34 472.51,-157.49 469.02,-157.2 469.02,-157.2 469.02,-157.2 472.51,-157.49 469.27,-154.06 476,-157.77 476,-157.77\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"425.75\" y=\"-159.67\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M344.03,-128.93C361.47,-130.9 388.74,-133.99 408.49,-136.23\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"415.66,-137.04 408.35,-139.38 412.18,-136.64 408.7,-136.25 408.7,-136.25 408.7,-136.25 412.18,-136.64 409.06,-133.12 415.66,-137.04 415.66,-137.04\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"374.5\" y=\"-137.8\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8->2 -->\n",
|
||||
"<g id=\"edge14\" class=\"edge\">\n",
|
||||
"<title>8->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M836.08,-20.45C816.24,-16 787.91,-10.87 762.73,-10.87 234.74,-10.87 234.74,-10.87 234.74,-10.87 188.19,-10.87 166.89,-73.07 158.46,-109.01\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"156.85,-116.25 155.29,-108.73 157.61,-112.83 158.37,-109.41 158.37,-109.41 158.37,-109.41 157.61,-112.83 161.45,-110.1 156.85,-116.25 156.85,-116.25\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"547.86\" y=\"-14.67\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M739.81,-13.58C723.55,-8.94 698.36,-3 676,-3 217,-3 217,-3 217,-3 177.85,-3 154.61,-49.65 143.66,-79.85\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"141.27,-86.76 140.58,-79.12 142.41,-83.46 143.56,-80.15 143.56,-80.15 143.56,-80.15 142.41,-83.46 146.53,-81.18 141.27,-86.76 141.27,-86.76\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"470\" y=\"-6.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 11->1 -->\n",
|
||||
"<g id=\"edge19\" class=\"edge\">\n",
|
||||
"<title>11->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M527.91,-148.73C540.38,-142.92 555.55,-135.85 567.75,-130.17\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"574.19,-127.17 569.17,-132.98 571.01,-128.65 567.84,-130.13 567.84,-130.13 567.84,-130.13 571.01,-128.65 566.51,-127.27 574.19,-127.17 574.19,-127.17\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"547.86\" y=\"-141.67\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M452.09,-134.34C462.66,-131.46 476.38,-127.72 488.02,-124.54\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"494.96,-122.65 489.03,-127.53 491.58,-123.57 488.21,-124.49 488.21,-124.49 488.21,-124.49 491.58,-123.57 487.38,-121.45 494.96,-122.65 494.96,-122.65\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"470\" y=\"-132.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"</svg>\n"
|
||||
|
|
@ -993,11 +993,11 @@
|
|||
"<!-- Generated by graphviz version 2.43.0 (0)\n",
|
||||
" -->\n",
|
||||
"<!-- Pages: 1 -->\n",
|
||||
"<svg width=\"734pt\" height=\"172pt\"\n",
|
||||
" viewBox=\"0.00 0.00 734.00 172.28\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(0.7633587786259541 0.7633587786259541) rotate(0) translate(4 221.8)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-221.8 958,-221.8 958,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"454\" y=\"-187.6\" font-family=\"Lato\" font-size=\"14.00\">[Büchi]</text>\n",
|
||||
"<svg width=\"734pt\" height=\"174pt\"\n",
|
||||
" viewBox=\"0.00 0.00 734.00 173.73\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(0.7692307692307692 0.7692307692307692) rotate(0) translate(4 221.8)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-221.8 950,-221.8 950,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"451.5\" y=\"-187.6\" font-family=\"Lato\" font-size=\"14.00\">[Büchi]</text>\n",
|
||||
"<!-- I -->\n",
|
||||
"<!-- 1 -->\n",
|
||||
"<g id=\"node2\" class=\"node\">\n",
|
||||
|
|
@ -1016,174 +1016,174 @@
|
|||
"<title>1->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M49.62,-96.04C48.32,-105.86 50.45,-115 56,-115 60.17,-115 62.4,-109.86 62.71,-103.14\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"62.38,-96.04 65.85,-102.88 62.54,-99.53 62.71,-103.03 62.71,-103.03 62.71,-103.03 62.54,-99.53 59.56,-103.18 62.38,-96.04 62.38,-96.04\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"42.5\" y=\"-118.8\" font-family=\"Lato\" font-size=\"14.00\">a | b</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"43\" y=\"-118.8\" font-family=\"Lato\" font-size=\"14.00\">a | b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7 -->\n",
|
||||
"<g id=\"node5\" class=\"node\">\n",
|
||||
"<title>7</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"165\" cy=\"-113\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"165\" y=\"-109.3\" font-family=\"Lato\" font-size=\"14.00\">7</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"164\" cy=\"-113\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"164\" y=\"-109.3\" font-family=\"Lato\" font-size=\"14.00\">7</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->7 -->\n",
|
||||
"<g id=\"edge4\" class=\"edge\">\n",
|
||||
"<title>1->7</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M73.25,-84.16C91.24,-89.88 120.39,-99.14 140.78,-105.62\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"147.6,-107.79 139.97,-108.67 144.26,-106.73 140.92,-105.67 140.92,-105.67 140.92,-105.67 144.26,-106.73 141.88,-102.67 147.6,-107.79 147.6,-107.79\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M73.56,-84.31C91.38,-90.03 119.83,-99.15 139.86,-105.58\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"146.55,-107.72 138.93,-108.59 143.22,-106.66 139.89,-105.59 139.89,-105.59 139.89,-105.59 143.22,-106.66 140.85,-102.59 146.55,-107.72 146.55,-107.72\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"92\" y=\"-104.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0 -->\n",
|
||||
"<g id=\"node3\" class=\"node\">\n",
|
||||
"<title>0</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"278\" cy=\"-113\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<ellipse fill=\"none\" stroke=\"black\" cx=\"278\" cy=\"-113\" rx=\"22\" ry=\"22\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"278\" y=\"-109.3\" font-family=\"Lato\" font-size=\"14.00\">0</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"276\" cy=\"-113\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<ellipse fill=\"none\" stroke=\"black\" cx=\"276\" cy=\"-113\" rx=\"22\" ry=\"22\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"276\" y=\"-109.3\" font-family=\"Lato\" font-size=\"14.00\">0</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4 -->\n",
|
||||
"<g id=\"node4\" class=\"node\">\n",
|
||||
"<title>4</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"391\" cy=\"-80\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"391\" y=\"-76.3\" font-family=\"Lato\" font-size=\"14.00\">4</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"388\" cy=\"-80\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"388\" y=\"-76.3\" font-family=\"Lato\" font-size=\"14.00\">4</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->4 -->\n",
|
||||
"<g id=\"edge2\" class=\"edge\">\n",
|
||||
"<title>0->4</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M299.36,-106.95C318.31,-101.31 346.55,-92.92 366.46,-87\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"373.39,-84.94 367.58,-89.95 370.03,-85.94 366.68,-86.93 366.68,-86.93 366.68,-86.93 370.03,-85.94 365.78,-83.91 373.39,-84.94 373.39,-84.94\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"318\" y=\"-104.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M297.18,-106.95C315.96,-101.31 343.94,-92.92 363.68,-87\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"370.54,-84.94 364.74,-89.97 367.19,-85.94 363.83,-86.95 363.83,-86.95 363.83,-86.95 367.19,-85.94 362.93,-83.93 370.54,-84.94 370.54,-84.94\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"316\" y=\"-103.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4->1 -->\n",
|
||||
"<g id=\"edge10\" class=\"edge\">\n",
|
||||
"<title>4->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M372.74,-79.95C317.68,-79.78 146.12,-79.27 81.74,-79.07\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"74.43,-79.05 81.44,-75.92 77.93,-79.06 81.43,-79.07 81.43,-79.07 81.43,-79.07 77.93,-79.06 81.43,-82.22 74.43,-79.05 74.43,-79.05\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"201\" y=\"-82.8\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M369.89,-79.95C315.34,-79.78 145.32,-79.27 81.52,-79.07\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"74.28,-79.05 81.29,-75.92 77.78,-79.06 81.28,-79.07 81.28,-79.07 81.28,-79.07 77.78,-79.06 81.27,-82.22 74.28,-79.05 74.28,-79.05\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"200\" y=\"-82.8\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5 -->\n",
|
||||
"<g id=\"node10\" class=\"node\">\n",
|
||||
"<title>5</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"500\" cy=\"-80\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"500\" y=\"-76.3\" font-family=\"Lato\" font-size=\"14.00\">5</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"496\" cy=\"-80\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"496\" y=\"-76.3\" font-family=\"Lato\" font-size=\"14.00\">5</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4->5 -->\n",
|
||||
"<g id=\"edge9\" class=\"edge\">\n",
|
||||
"<title>4->5</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M409.19,-80C426.9,-80 454.65,-80 474.62,-80\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"481.85,-80 474.85,-83.15 478.35,-80 474.85,-80 474.85,-80 474.85,-80 478.35,-80 474.85,-76.85 481.85,-80 481.85,-80\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"427\" y=\"-83.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M406.03,-80C423.47,-80 450.74,-80 470.49,-80\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"477.66,-80 470.66,-83.15 474.16,-80 470.66,-80 470.66,-80 470.66,-80 474.16,-80 470.66,-76.85 477.66,-80 477.66,-80\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"424\" y=\"-83.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7->0 -->\n",
|
||||
"<g id=\"edge15\" class=\"edge\">\n",
|
||||
"<title>7->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M183.34,-113C200.83,-113 228.11,-113 248.73,-113\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"255.99,-113 248.99,-116.15 252.49,-113 248.99,-113 248.99,-113 248.99,-113 252.49,-113 248.99,-109.85 255.99,-113 255.99,-113\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"201\" y=\"-116.8\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M182.19,-113C199.41,-113 226.22,-113 246.6,-113\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"253.79,-113 246.79,-116.15 250.29,-113 246.79,-113 246.79,-113 246.79,-113 250.29,-113 246.79,-109.85 253.79,-113 253.79,-113\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"200\" y=\"-116.8\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2 -->\n",
|
||||
"<g id=\"node6\" class=\"node\">\n",
|
||||
"<title>2</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"663.5\" cy=\"-97\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"663.5\" y=\"-93.3\" font-family=\"Lato\" font-size=\"14.00\">2</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"658\" cy=\"-97\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"658\" y=\"-93.3\" font-family=\"Lato\" font-size=\"14.00\">2</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->2 -->\n",
|
||||
"<g id=\"edge5\" class=\"edge\">\n",
|
||||
"<title>2->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M654.27,-112.54C651.67,-122.91 654.75,-133 663.5,-133 670.2,-133 673.58,-127.08 673.62,-119.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"672.73,-112.54 676.73,-119.1 673.17,-116.01 673.6,-119.49 673.6,-119.49 673.6,-119.49 673.17,-116.01 670.48,-119.88 672.73,-112.54 672.73,-112.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"650\" y=\"-136.8\" font-family=\"Lato\" font-size=\"14.00\">a | b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M648.77,-112.54C646.17,-122.91 649.25,-133 658,-133 664.7,-133 668.08,-127.08 668.12,-119.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"667.23,-112.54 671.23,-119.1 667.67,-116.01 668.1,-119.49 668.1,-119.49 668.1,-119.49 667.67,-116.01 664.98,-119.88 667.23,-112.54 667.23,-112.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"645\" y=\"-136.8\" font-family=\"Lato\" font-size=\"14.00\">a | b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8 -->\n",
|
||||
"<g id=\"node7\" class=\"node\">\n",
|
||||
"<title>8</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"936\" cy=\"-97\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"936\" y=\"-93.3\" font-family=\"Lato\" font-size=\"14.00\">8</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"928\" cy=\"-97\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"928\" y=\"-93.3\" font-family=\"Lato\" font-size=\"14.00\">8</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->8 -->\n",
|
||||
"<g id=\"edge6\" class=\"edge\">\n",
|
||||
"<title>2->8</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M681.83,-97C728.5,-97 856.87,-97 910.72,-97\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"917.81,-97 910.81,-100.15 914.31,-97 910.81,-97 910.81,-97 910.81,-97 914.31,-97 910.81,-93.85 917.81,-97 917.81,-97\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"754\" y=\"-100.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M676.17,-97C722.4,-97 849.6,-97 902.95,-97\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"909.97,-97 902.97,-100.15 906.47,-97 902.97,-97 902.97,-97 902.97,-97 906.47,-97 902.97,-93.85 909.97,-97 909.97,-97\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"748\" y=\"-100.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8->7 -->\n",
|
||||
"<g id=\"edge16\" class=\"edge\">\n",
|
||||
"<title>8->7</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M923.3,-110.36C905.05,-129.64 867.72,-163 828,-163 277,-163 277,-163 277,-163 242.57,-163 207,-142.75 185.7,-128.02\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"179.82,-123.85 187.35,-125.33 182.67,-125.88 185.52,-127.9 185.52,-127.9 185.52,-127.9 182.67,-125.88 183.7,-130.47 179.82,-123.85 179.82,-123.85\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"536\" y=\"-166.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M915.44,-110.36C897.39,-129.64 860.45,-163 821,-163 275,-163 275,-163 275,-163 240.82,-163 205.6,-142.75 184.5,-128.02\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"178.68,-123.85 186.2,-125.37 181.52,-125.89 184.37,-127.93 184.37,-127.93 184.37,-127.93 181.52,-125.89 182.53,-130.49 178.68,-123.85 178.68,-123.85\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"532\" y=\"-166.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3 -->\n",
|
||||
"<g id=\"node8\" class=\"node\">\n",
|
||||
"<title>3</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"718\" cy=\"-18\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"718\" y=\"-14.3\" font-family=\"Lato\" font-size=\"14.00\">3</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"712\" cy=\"-18\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"712\" y=\"-14.3\" font-family=\"Lato\" font-size=\"14.00\">3</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->3 -->\n",
|
||||
"<g id=\"edge7\" class=\"edge\">\n",
|
||||
"<title>3->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M708.77,-33.54C706.17,-43.91 709.25,-54 718,-54 724.7,-54 728.08,-48.08 728.12,-40.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"727.23,-33.54 731.23,-40.1 727.67,-37.01 728.1,-40.49 728.1,-40.49 728.1,-40.49 727.67,-37.01 724.98,-40.88 727.23,-33.54 727.23,-33.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"704.5\" y=\"-57.8\" font-family=\"Lato\" font-size=\"14.00\">a | b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M702.77,-33.54C700.17,-43.91 703.25,-54 712,-54 718.7,-54 722.08,-48.08 722.12,-40.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"721.23,-33.54 725.23,-40.1 721.67,-37.01 722.1,-40.49 722.1,-40.49 722.1,-40.49 721.67,-37.01 718.98,-40.88 721.23,-33.54 721.23,-33.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"699\" y=\"-57.8\" font-family=\"Lato\" font-size=\"14.00\">a | b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 9 -->\n",
|
||||
"<g id=\"node9\" class=\"node\">\n",
|
||||
"<title>9</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"827\" cy=\"-18\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"827\" y=\"-14.3\" font-family=\"Lato\" font-size=\"14.00\">9</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"820\" cy=\"-18\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"820\" y=\"-14.3\" font-family=\"Lato\" font-size=\"14.00\">9</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->9 -->\n",
|
||||
"<g id=\"edge8\" class=\"edge\">\n",
|
||||
"<title>3->9</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M736.19,-18C753.9,-18 781.65,-18 801.62,-18\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"808.85,-18 801.85,-21.15 805.35,-18 801.85,-18 801.85,-18 801.85,-18 805.35,-18 801.85,-14.85 808.85,-18 808.85,-18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"754\" y=\"-21.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M730.03,-18C747.47,-18 774.74,-18 794.49,-18\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"801.66,-18 794.66,-21.15 798.16,-18 794.66,-18 794.66,-18 794.66,-18 798.16,-18 794.66,-14.85 801.66,-18 801.66,-18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"748\" y=\"-21.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 9->8 -->\n",
|
||||
"<g id=\"edge17\" class=\"edge\">\n",
|
||||
"<title>9->8</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M842.6,-27.61C857.33,-37.42 880.61,-53.27 900,-68 905.45,-72.14 911.22,-76.79 916.47,-81.15\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"921.92,-85.71 914.53,-83.63 919.23,-83.47 916.55,-81.22 916.55,-81.22 916.55,-81.22 919.23,-83.47 918.57,-78.8 921.92,-85.71 921.92,-85.71\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"863\" y=\"-71.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M835.38,-27.64C849.89,-37.48 872.84,-53.35 892,-68 897.43,-72.15 903.2,-76.82 908.45,-81.17\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"913.9,-85.73 906.51,-83.66 911.22,-83.49 908.53,-81.24 908.53,-81.24 908.53,-81.24 911.22,-83.49 910.55,-78.83 913.9,-85.73 913.9,-85.73\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"856\" y=\"-71.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 9->9 -->\n",
|
||||
"<g id=\"edge18\" class=\"edge\">\n",
|
||||
"<title>9->9</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M817.77,-33.54C815.17,-43.91 818.25,-54 827,-54 833.7,-54 837.08,-48.08 837.12,-40.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"836.23,-33.54 840.23,-40.1 836.67,-37.01 837.1,-40.49 837.1,-40.49 837.1,-40.49 836.67,-37.01 833.98,-40.88 836.23,-33.54 836.23,-33.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"808.5\" y=\"-57.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M810.77,-33.54C808.17,-43.91 811.25,-54 820,-54 826.7,-54 830.08,-48.08 830.12,-40.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"829.23,-33.54 833.23,-40.1 829.67,-37.01 830.1,-40.49 830.1,-40.49 830.1,-40.49 829.67,-37.01 826.98,-40.88 829.23,-33.54 829.23,-33.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"802\" y=\"-57.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5->2 -->\n",
|
||||
"<g id=\"edge12\" class=\"edge\">\n",
|
||||
"<title>5->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M517.98,-81.79C546.74,-84.81 605.13,-90.96 638.22,-94.44\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"645.26,-95.19 637.97,-97.59 641.78,-94.82 638.3,-94.45 638.3,-94.45 638.3,-94.45 641.78,-94.82 638.63,-91.32 645.26,-95.19 645.26,-95.19\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"536\" y=\"-90.8\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M514.12,-81.82C542.63,-84.85 599.92,-90.94 632.63,-94.41\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"640,-95.19 632.71,-97.59 636.52,-94.82 633.04,-94.45 633.04,-94.45 633.04,-94.45 636.52,-94.82 633.37,-91.32 640,-95.19 640,-95.19\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"532\" y=\"-90.8\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6 -->\n",
|
||||
"<g id=\"node11\" class=\"node\">\n",
|
||||
"<title>6</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"609\" cy=\"-18\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"609\" y=\"-14.3\" font-family=\"Lato\" font-size=\"14.00\">6</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"604\" cy=\"-18\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"604\" y=\"-14.3\" font-family=\"Lato\" font-size=\"14.00\">6</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5->6 -->\n",
|
||||
"<g id=\"edge11\" class=\"edge\">\n",
|
||||
"<title>5->6</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M515.88,-71.38C534.3,-60.7 565.8,-42.45 586.76,-30.31\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"592.9,-26.75 588.43,-32.98 589.88,-28.5 586.85,-30.26 586.85,-30.26 586.85,-30.26 589.88,-28.5 585.27,-27.53 592.9,-26.75 592.9,-26.75\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"536\" y=\"-62.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M512.19,-71.12C530.47,-60.42 561.29,-42.4 581.88,-30.35\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"588.18,-26.67 583.73,-32.92 585.16,-28.43 582.14,-30.2 582.14,-30.2 582.14,-30.2 585.16,-28.43 580.55,-27.48 588.18,-26.67 588.18,-26.67\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"532\" y=\"-62.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6->3 -->\n",
|
||||
"<g id=\"edge14\" class=\"edge\">\n",
|
||||
"<title>6->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M627.19,-18C644.9,-18 672.65,-18 692.62,-18\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"699.85,-18 692.85,-21.15 696.35,-18 692.85,-18 692.85,-18 692.85,-18 696.35,-18 692.85,-14.85 699.85,-18 699.85,-18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"645\" y=\"-21.8\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M622.03,-18C639.47,-18 666.74,-18 686.49,-18\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"693.66,-18 686.66,-21.15 690.16,-18 686.66,-18 686.66,-18 686.66,-18 690.16,-18 686.66,-14.85 693.66,-18 693.66,-18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"640\" y=\"-21.8\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6->6 -->\n",
|
||||
"<g id=\"edge13\" class=\"edge\">\n",
|
||||
"<title>6->6</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M599.77,-33.54C597.17,-43.91 600.25,-54 609,-54 615.7,-54 619.08,-48.08 619.12,-40.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"618.23,-33.54 622.23,-40.1 618.67,-37.01 619.1,-40.49 619.1,-40.49 619.1,-40.49 618.67,-37.01 615.98,-40.88 618.23,-33.54 618.23,-33.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"590.5\" y=\"-57.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M594.77,-33.54C592.17,-43.91 595.25,-54 604,-54 610.7,-54 614.08,-48.08 614.12,-40.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"613.23,-33.54 617.23,-40.1 613.67,-37.01 614.1,-40.49 614.1,-40.49 614.1,-40.49 613.67,-37.01 610.98,-40.88 613.23,-33.54 613.23,-33.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"586\" y=\"-57.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"</svg>\n"
|
||||
|
|
@ -1253,7 +1253,7 @@
|
|||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython3",
|
||||
"version": "3.7.5"
|
||||
"version": "3.8.2"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
|
|
|
|||
|
|
@ -247,7 +247,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d60b8a6c0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da043c8d0> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 4,
|
||||
|
|
@ -359,7 +359,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa; proxy of <Swig Object of type 'std::shared_ptr< spot::twa > *' at 0x7f8d60b8ad20> >"
|
||||
"<spot.twa; proxy of <Swig Object of type 'std::shared_ptr< spot::twa > *' at 0x7f7da0446d20> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 5,
|
||||
|
|
@ -469,7 +469,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d60b8a6c0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da043c8d0> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 6,
|
||||
|
|
@ -702,7 +702,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d60b8afc0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da0446e70> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 8,
|
||||
|
|
@ -897,7 +897,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d60b8afc0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da0446e70> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 11,
|
||||
|
|
@ -1235,7 +1235,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d60ba0c60> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da045a150> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -1496,7 +1496,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d60ba0de0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da0446510> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -1511,175 +1511,175 @@
|
|||
"<!-- Generated by graphviz version 2.43.0 (0)\n",
|
||||
" -->\n",
|
||||
"<!-- Title: i G F a G F b Pages: 1 -->\n",
|
||||
"<svg width=\"513pt\" height=\"285pt\"\n",
|
||||
" viewBox=\"0.00 0.00 513.24 285.17\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(1.0 1.0) rotate(0) translate(4 281.17)\">\n",
|
||||
"<svg width=\"438pt\" height=\"279pt\"\n",
|
||||
" viewBox=\"0.00 0.00 438.00 278.92\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(1.0 1.0) rotate(0) translate(4 274.92)\">\n",
|
||||
"<title>i G F a G F b</title>\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-281.17 509.24,-281.17 509.24,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"138.12\" y=\"-262.97\" font-family=\"Lato\" font-size=\"14.00\">(Fin(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"165.12\" y=\"-262.97\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"181.12\" y=\"-262.97\" font-family=\"Lato\" font-size=\"14.00\">) & Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"223.12\" y=\"-262.97\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"239.12\" y=\"-262.97\" font-family=\"Lato\" font-size=\"14.00\">)) | (Fin(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"285.12\" y=\"-262.97\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff7f00\">❷</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"301.12\" y=\"-262.97\" font-family=\"Lato\" font-size=\"14.00\">) & Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"343.12\" y=\"-262.97\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#6a3d9a\">❸</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"359.12\" y=\"-262.97\" font-family=\"Lato\" font-size=\"14.00\">))</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"225.12\" y=\"-248.97\" font-family=\"Lato\" font-size=\"14.00\">[Rabin 2]</text>\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-274.92 434,-274.92 434,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"100.5\" y=\"-256.72\" font-family=\"Lato\" font-size=\"14.00\">(Fin(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"127.5\" y=\"-256.72\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"143.5\" y=\"-256.72\" font-family=\"Lato\" font-size=\"14.00\">) & Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"185.5\" y=\"-256.72\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"201.5\" y=\"-256.72\" font-family=\"Lato\" font-size=\"14.00\">)) | (Fin(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"247.5\" y=\"-256.72\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff7f00\">❷</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"263.5\" y=\"-256.72\" font-family=\"Lato\" font-size=\"14.00\">) & Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"305.5\" y=\"-256.72\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#6a3d9a\">❸</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"321.5\" y=\"-256.72\" font-family=\"Lato\" font-size=\"14.00\">))</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"187.5\" y=\"-242.72\" font-family=\"Lato\" font-size=\"14.00\">[Rabin 2]</text>\n",
|
||||
"<!-- I -->\n",
|
||||
"<!-- 0 -->\n",
|
||||
"<g id=\"node2\" class=\"node\">\n",
|
||||
"<title>0</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"64.87\" cy=\"-55.17\" rx=\"26.74\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"60.37\" y=\"-58.97\" font-family=\"Lato\" font-size=\"14.00\">0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"56.87\" y=\"-43.97\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M62,-69.92C62,-69.92 50,-69.92 50,-69.92 44,-69.92 38,-63.92 38,-57.92 38,-57.92 38,-43.92 38,-43.92 38,-37.92 44,-31.92 50,-31.92 50,-31.92 62,-31.92 62,-31.92 68,-31.92 74,-37.92 74,-43.92 74,-43.92 74,-57.92 74,-57.92 74,-63.92 68,-69.92 62,-69.92\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"51.5\" y=\"-54.72\" font-family=\"Lato\" font-size=\"14.00\">0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"48\" y=\"-39.72\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- I->0 -->\n",
|
||||
"<g id=\"edge1\" class=\"edge\">\n",
|
||||
"<title>I->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.05,-55.17C1.95,-55.17 16.07,-55.17 30.7,-55.17\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"37.86,-55.17 30.86,-58.32 34.36,-55.17 30.86,-55.17 30.86,-55.17 30.86,-55.17 34.36,-55.17 30.86,-52.02 37.86,-55.17 37.86,-55.17\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.15,-50.92C2.79,-50.92 17.15,-50.92 30.63,-50.92\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"37.94,-50.92 30.94,-54.07 34.44,-50.92 30.94,-50.92 30.94,-50.92 30.94,-50.92 34.44,-50.92 30.94,-47.77 37.94,-50.92 37.94,-50.92\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->0 -->\n",
|
||||
"<g id=\"edge3\" class=\"edge\">\n",
|
||||
"<title>0->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M56.67,-80.99C56.21,-91.35 58.94,-100.04 64.87,-100.04 69.32,-100.04 71.97,-95.15 72.82,-88.34\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"73.07,-80.99 75.98,-88.1 72.95,-84.49 72.83,-87.99 72.83,-87.99 72.83,-87.99 72.95,-84.49 69.68,-87.88 73.07,-80.99 73.07,-80.99\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"46.87\" y=\"-103.84\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M49.45,-69.95C48.54,-79.45 50.73,-87.92 56,-87.92 59.87,-87.92 62.08,-83.35 62.62,-77.16\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"62.55,-69.95 65.77,-76.92 62.58,-73.45 62.62,-76.95 62.62,-76.95 62.62,-76.95 62.58,-73.45 59.47,-76.98 62.55,-69.95 62.55,-69.95\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"38\" y=\"-91.72\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1 -->\n",
|
||||
"<g id=\"node3\" class=\"node\">\n",
|
||||
"<title>1</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"194.61\" cy=\"-152.17\" rx=\"26.74\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"190.11\" y=\"-155.97\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"186.61\" y=\"-140.97\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M174,-166.92C174,-166.92 162,-166.92 162,-166.92 156,-166.92 150,-160.92 150,-154.92 150,-154.92 150,-140.92 150,-140.92 150,-134.92 156,-128.92 162,-128.92 162,-128.92 174,-128.92 174,-128.92 180,-128.92 186,-134.92 186,-140.92 186,-140.92 186,-154.92 186,-154.92 186,-160.92 180,-166.92 174,-166.92\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"163.5\" y=\"-151.72\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"160\" y=\"-136.72\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->1 -->\n",
|
||||
"<g id=\"edge2\" class=\"edge\">\n",
|
||||
"<title>0->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#e31a1c\" stroke-width=\"2\" d=\"M74.67,-80.26C81.7,-96.78 93.16,-117.59 109.74,-130.17 124.2,-141.14 143.63,-146.65 160.16,-149.42\"/>\n",
|
||||
"<polygon fill=\"#e31a1c\" stroke=\"#e31a1c\" stroke-width=\"2\" points=\"167.51,-150.51 160.13,-152.6 163.98,-150.49 160.52,-149.98 160.59,-149.49 160.66,-148.99 164.12,-149.5 161.05,-146.37 167.51,-150.51 167.51,-150.51\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"109.74\" y=\"-149.97\" font-family=\"Lato\" font-size=\"14.00\">!a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"#e31a1c\" stroke-width=\"2\" d=\"M61.16,-69.95C65.84,-86.97 75.11,-111.4 92,-125.92 106.19,-138.11 126.85,-143.55 142.9,-145.98\"/>\n",
|
||||
"<polygon fill=\"#e31a1c\" stroke=\"#e31a1c\" stroke-width=\"2\" points=\"149.91,-146.89 142.56,-149.11 146.37,-146.93 142.9,-146.48 142.96,-145.98 143.03,-145.49 146.5,-145.94 143.37,-142.86 149.91,-146.89 149.91,-146.89\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"92\" y=\"-146.72\" font-family=\"Lato\" font-size=\"14.00\">!a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3 -->\n",
|
||||
"<g id=\"node4\" class=\"node\">\n",
|
||||
"<title>3</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"471.3\" cy=\"-79.17\" rx=\"33.88\" ry=\"33.88\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"466.8\" y=\"-82.97\" font-family=\"Lato\" font-size=\"14.00\">3</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"455.3\" y=\"-68.97\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"471.3\" y=\"-68.97\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#6a3d9a\">❸</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M418,-101.92C418,-101.92 394,-101.92 394,-101.92 388,-101.92 382,-95.92 382,-89.92 382,-89.92 382,-77.92 382,-77.92 382,-71.92 388,-65.92 394,-65.92 394,-65.92 418,-65.92 418,-65.92 424,-65.92 430,-71.92 430,-77.92 430,-77.92 430,-89.92 430,-89.92 430,-95.92 424,-101.92 418,-101.92\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"401.5\" y=\"-87.72\" font-family=\"Lato\" font-size=\"14.00\">3</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"390\" y=\"-73.72\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"406\" y=\"-73.72\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#6a3d9a\">❸</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->3 -->\n",
|
||||
"<g id=\"edge4\" class=\"edge\">\n",
|
||||
"<title>0->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M90.15,-45.61C96.44,-43.49 103.27,-41.48 109.74,-40.17 221.11,-17.67 253.96,-13.79 365.36,-36.17 389.3,-40.98 414.66,-51.21 434.46,-60.49\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"440.95,-63.6 433.27,-63.42 437.79,-62.09 434.63,-60.58 434.63,-60.58 434.63,-60.58 437.79,-62.09 435.99,-57.73 440.95,-63.6 440.95,-63.6\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"241.48\" y=\"-26.97\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M74.1,-42.82C79.69,-40.51 86,-38.27 92,-36.92 157.98,-22.06 176.85,-21.92 244,-29.92 298.48,-36.41 313.3,-37.94 364,-58.92 367.85,-60.51 371.76,-62.43 375.56,-64.5\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"381.81,-68.07 374.17,-67.34 378.77,-66.34 375.74,-64.6 375.74,-64.6 375.74,-64.6 378.77,-66.34 377.3,-61.86 381.81,-68.07 381.81,-68.07\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"206\" y=\"-33.72\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2 -->\n",
|
||||
"<g id=\"node5\" class=\"node\">\n",
|
||||
"<title>2</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"331.42\" cy=\"-79.17\" rx=\"33.88\" ry=\"33.88\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"326.92\" y=\"-82.97\" font-family=\"Lato\" font-size=\"14.00\">2</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"315.42\" y=\"-68.97\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"331.42\" y=\"-68.97\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#6a3d9a\">❸</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M298,-101.92C298,-101.92 274,-101.92 274,-101.92 268,-101.92 262,-95.92 262,-89.92 262,-89.92 262,-77.92 262,-77.92 262,-71.92 268,-65.92 274,-65.92 274,-65.92 298,-65.92 298,-65.92 304,-65.92 310,-71.92 310,-77.92 310,-77.92 310,-89.92 310,-89.92 310,-95.92 304,-101.92 298,-101.92\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"281.5\" y=\"-87.72\" font-family=\"Lato\" font-size=\"14.00\">2</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"270\" y=\"-73.72\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"286\" y=\"-73.72\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#6a3d9a\">❸</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->2 -->\n",
|
||||
"<g id=\"edge5\" class=\"edge\">\n",
|
||||
"<title>0->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M91.72,-57.51C138.01,-61.71 235.34,-70.54 290.34,-75.53\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"297.49,-76.18 290.23,-78.69 294,-75.87 290.52,-75.55 290.52,-75.55 290.52,-75.55 294,-75.87 290.8,-72.41 297.49,-76.18 297.49,-76.18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"178.61\" y=\"-72.97\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M74.14,-53.4C112.55,-58.96 205.99,-72.48 254.56,-79.51\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"261.67,-80.54 254.29,-82.65 258.2,-80.04 254.74,-79.54 254.74,-79.54 254.74,-79.54 258.2,-80.04 255.19,-76.42 261.67,-80.54 261.67,-80.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"152\" y=\"-72.72\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->0 -->\n",
|
||||
"<g id=\"edge7\" class=\"edge\">\n",
|
||||
"<title>1->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M175.49,-132.84C167.97,-125.48 158.88,-117.39 149.74,-111.17 133.47,-100.1 126.29,-102.82 109.74,-92.17 103.2,-87.96 96.56,-82.87 90.5,-77.84\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"85.12,-73.26 92.49,-75.39 87.79,-75.52 90.45,-77.79 90.45,-77.79 90.45,-77.79 87.79,-75.52 88.41,-80.19 85.12,-73.26 85.12,-73.26\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"111.74\" y=\"-114.97\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M153.48,-128.82C147.51,-121.32 140.02,-113.06 132,-106.92 116.38,-94.95 107.92,-99.49 92,-87.92 86.96,-84.26 82.05,-79.81 77.57,-75.28\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"72.53,-69.98 79.63,-72.89 74.94,-72.52 77.35,-75.06 77.35,-75.06 77.35,-75.06 74.94,-72.52 75.07,-77.23 72.53,-69.98 72.53,-69.98\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"94\" y=\"-110.72\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->1 -->\n",
|
||||
"<g id=\"edge6\" class=\"edge\">\n",
|
||||
"<title>1->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#e31a1c\" stroke-width=\"2\" d=\"M182.8,-176.63C181.67,-187.58 185.61,-197.04 194.61,-197.04 201.5,-197.04 205.42,-191.49 206.38,-183.98\"/>\n",
|
||||
"<polygon fill=\"#e31a1c\" stroke=\"#e31a1c\" stroke-width=\"2\" points=\"206.42,-176.63 209.53,-183.65 206.9,-180.13 206.88,-183.63 206.38,-183.63 205.88,-183.63 205.9,-180.13 203.23,-183.61 206.42,-176.63 206.42,-176.63\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"174.61\" y=\"-200.84\" font-family=\"Lato\" font-size=\"14.00\">!a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"#e31a1c\" stroke-width=\"2\" d=\"M157.81,-166.95C156.4,-176.45 159.8,-184.92 168,-184.92 174.02,-184.92 177.46,-180.35 178.3,-174.16\"/>\n",
|
||||
"<polygon fill=\"#e31a1c\" stroke=\"#e31a1c\" stroke-width=\"2\" points=\"178.19,-166.95 181.44,-173.91 178.74,-170.45 178.79,-173.95 178.29,-173.95 177.79,-173.96 177.74,-170.46 175.14,-174 178.19,-166.95 178.19,-166.95\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"148\" y=\"-188.72\" font-family=\"Lato\" font-size=\"14.00\">!a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->3 -->\n",
|
||||
"<g id=\"edge8\" class=\"edge\">\n",
|
||||
"<title>1->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M211.24,-173.43C218.77,-182 228.53,-191.06 239.48,-196.17 311.93,-229.96 354.59,-243.03 419.36,-196.17 444.08,-178.29 456.94,-145.8 463.56,-119.58\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"465.18,-112.72 466.63,-120.26 464.38,-116.12 463.57,-119.53 463.57,-119.53 463.57,-119.53 464.38,-116.12 460.5,-118.8 465.18,-112.72 465.18,-112.72\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"313.42\" y=\"-229.97\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M179.4,-167.29C185.34,-176.37 193.68,-186.38 204,-191.92 266.66,-225.54 307.4,-234.96 364,-191.92 389.72,-172.36 399.3,-134.65 402.88,-109.38\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"403.77,-102.29 406.02,-109.62 403.33,-105.76 402.9,-109.23 402.9,-109.23 402.9,-109.23 403.33,-105.76 399.77,-108.84 403.77,-102.29 403.77,-102.29\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"268\" y=\"-223.72\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->2 -->\n",
|
||||
"<g id=\"edge9\" class=\"edge\">\n",
|
||||
"<title>1->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M221.54,-148.99C238.83,-146.02 261.6,-140.44 279.48,-130.17 288.56,-124.95 297.15,-117.7 304.6,-110.29\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"309.56,-105.17 306.95,-112.39 307.13,-107.68 304.69,-110.2 304.69,-110.2 304.69,-110.2 307.13,-107.68 302.43,-108 309.56,-105.17 309.56,-105.17\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"243.48\" y=\"-147.97\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M186.09,-145.46C201.98,-142.61 225.86,-136.83 244,-125.92 252.05,-121.08 259.62,-114.28 266.01,-107.55\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"271.09,-101.97 268.71,-109.27 268.73,-104.56 266.38,-107.15 266.38,-107.15 266.38,-107.15 268.73,-104.56 264.05,-105.03 271.09,-101.97 271.09,-101.97\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"208\" y=\"-144.72\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->0 -->\n",
|
||||
"<g id=\"edge15\" class=\"edge\">\n",
|
||||
"<title>3->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M446.35,-56.08C438.27,-49.24 428.88,-42.23 419.36,-37.17 362.87,-7.13 343.12,-9.77 279.48,-3.17 203.57,4.7 180.99,-1.83 109.74,-29.17 104.39,-31.22 98.95,-33.9 93.79,-36.75\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"87.45,-40.42 91.93,-34.19 90.48,-38.67 93.51,-36.91 93.51,-36.91 93.51,-36.91 90.48,-38.67 95.09,-39.64 87.45,-40.42 87.45,-40.42\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"241.48\" y=\"-6.97\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M391.53,-65.85C384.24,-57.2 374.58,-47.35 364,-40.92 316.54,-12.04 299,-13.77 244,-5.92 176.66,3.7 154.44,3.09 92,-23.92 87.84,-25.72 83.74,-28.12 79.88,-30.76\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"74.07,-35.04 77.84,-28.35 76.89,-32.97 79.71,-30.89 79.71,-30.89 79.71,-30.89 76.89,-32.97 81.57,-33.43 74.07,-35.04 74.07,-35.04\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"206\" y=\"-9.72\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->1 -->\n",
|
||||
"<g id=\"edge14\" class=\"edge\">\n",
|
||||
"<title>3->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M446.26,-102.44C426.32,-120.2 396.31,-143.53 365.36,-155.17 312.89,-174.91 295.12,-170.04 239.48,-163.17 235.58,-162.69 231.54,-161.98 227.54,-161.14\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"220.47,-159.53 227.99,-158.01 223.88,-160.3 227.29,-161.08 227.29,-161.08 227.29,-161.08 223.88,-160.3 226.59,-164.15 220.47,-159.53 220.47,-159.53\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"311.42\" y=\"-172.97\" font-family=\"Lato\" font-size=\"14.00\">!a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M381.98,-101.48C363.44,-114.86 336.23,-132.81 310,-143.92 282.21,-155.69 273.97,-156.34 244,-159.92 226.35,-162.03 221.54,-162.84 204,-159.92 200.37,-159.31 196.61,-158.38 192.97,-157.29\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"186.15,-155.06 193.79,-154.24 189.48,-156.15 192.81,-157.24 192.81,-157.24 192.81,-157.24 189.48,-156.15 191.83,-160.23 186.15,-155.06 186.15,-155.06\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"266\" y=\"-160.72\" font-family=\"Lato\" font-size=\"14.00\">!a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->3 -->\n",
|
||||
"<g id=\"edge16\" class=\"edge\">\n",
|
||||
"<title>3->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M458.56,-110.87C458.36,-122.04 462.6,-131.11 471.3,-131.11 477.96,-131.11 482.01,-125.8 483.46,-118.29\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"484.05,-110.87 486.63,-118.1 483.77,-114.36 483.49,-117.85 483.49,-117.85 483.49,-117.85 483.77,-114.36 480.35,-117.6 484.05,-110.87 484.05,-110.87\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"453.3\" y=\"-134.91\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M395.15,-102.07C393.48,-111.46 397.09,-119.92 406,-119.92 412.54,-119.92 416.23,-115.35 417.07,-109.21\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"416.85,-102.07 420.21,-108.97 416.96,-105.57 417.06,-109.07 417.06,-109.07 417.06,-109.07 416.96,-105.57 413.91,-109.16 416.85,-102.07 416.85,-102.07\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"388\" y=\"-123.72\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->2 -->\n",
|
||||
"<g id=\"edge17\" class=\"edge\">\n",
|
||||
"<title>3->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M437.07,-79.17C417.65,-79.17 393,-79.17 372.51,-79.17\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"365.45,-79.17 372.45,-76.02 368.95,-79.17 372.45,-79.17 372.45,-79.17 372.45,-79.17 368.95,-79.17 372.45,-82.32 365.45,-79.17 365.45,-79.17\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"385.36\" y=\"-82.97\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M381.62,-83.92C363.13,-83.92 337.18,-83.92 317.13,-83.92\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"310.03,-83.92 317.03,-80.77 313.53,-83.92 317.03,-83.92 317.03,-83.92 317.03,-83.92 313.53,-83.92 317.03,-87.07 310.03,-83.92 310.03,-83.92\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"330\" y=\"-87.72\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->0 -->\n",
|
||||
"<g id=\"edge11\" class=\"edge\">\n",
|
||||
"<title>2->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M299.52,-67.15C278.01,-59.44 248.46,-50.17 221.48,-46.17 179.35,-39.93 130.21,-44.76 98.6,-49.41\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"91.35,-50.52 97.79,-46.35 94.81,-49.99 98.27,-49.46 98.27,-49.46 98.27,-49.46 94.81,-49.99 98.74,-52.58 91.35,-50.52 91.35,-50.52\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"176.61\" y=\"-49.97\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M261.74,-71.86C242.14,-62.42 213.04,-50.05 186,-44.92 150.11,-38.1 107.66,-42.39 81.53,-46.41\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"74.29,-47.58 80.7,-43.36 77.75,-47.02 81.2,-46.46 81.2,-46.46 81.2,-46.46 77.75,-47.02 81.7,-49.57 74.29,-47.58 74.29,-47.58\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"150\" y=\"-48.72\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->1 -->\n",
|
||||
"<g id=\"edge10\" class=\"edge\">\n",
|
||||
"<title>2->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M298.26,-86.96C280.18,-92.19 257.66,-100.15 239.48,-111.17 232.1,-115.65 224.9,-121.52 218.54,-127.41\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"213.41,-132.34 216.28,-125.22 215.94,-129.91 218.46,-127.49 218.46,-127.49 218.46,-127.49 215.94,-129.91 220.64,-129.76 213.41,-132.34 213.41,-132.34\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"239.48\" y=\"-114.97\" font-family=\"Lato\" font-size=\"14.00\">!a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M261.87,-86.81C244.81,-89.78 221.59,-95.63 204,-106.92 197.37,-111.17 191.31,-117.07 186.17,-123.06\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"181.71,-128.55 183.68,-121.13 183.92,-125.83 186.12,-123.11 186.12,-123.11 186.12,-123.11 183.92,-125.83 188.57,-125.1 181.71,-128.55 181.71,-128.55\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"204\" y=\"-110.72\" font-family=\"Lato\" font-size=\"14.00\">!a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->3 -->\n",
|
||||
"<g id=\"edge12\" class=\"edge\">\n",
|
||||
"<title>2->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M362.95,-66.5C369.57,-64.29 376.61,-62.33 383.36,-61.17 399.13,-58.47 403.59,-58.47 419.36,-61.17 423.79,-61.93 428.35,-63.03 432.83,-64.33\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"439.77,-66.5 432.15,-67.42 436.43,-65.46 433.09,-64.41 433.09,-64.41 433.09,-64.41 436.43,-65.46 434.03,-61.41 439.77,-66.5 439.77,-66.5\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"383.36\" y=\"-64.97\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M310.29,-71.72C315.94,-69.32 322.07,-67.16 328,-65.92 343.66,-62.63 348.34,-62.63 364,-65.92 367.71,-66.7 371.49,-67.83 375.19,-69.16\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"381.71,-71.72 374.04,-72.09 378.45,-70.44 375.19,-69.16 375.19,-69.16 375.19,-69.16 378.45,-70.44 376.34,-66.23 381.71,-71.72 381.71,-71.72\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"328\" y=\"-69.72\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->2 -->\n",
|
||||
"<g id=\"edge13\" class=\"edge\">\n",
|
||||
"<title>2->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M318.68,-110.87C318.47,-122.04 322.72,-131.11 331.42,-131.11 338.08,-131.11 342.13,-125.8 343.57,-118.29\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"344.16,-110.87 346.75,-118.1 343.89,-114.36 343.61,-117.85 343.61,-117.85 343.61,-117.85 343.89,-114.36 340.47,-117.6 344.16,-110.87 344.16,-110.87\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"315.42\" y=\"-134.91\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M275.15,-102.07C273.48,-111.46 277.09,-119.92 286,-119.92 292.54,-119.92 296.23,-115.35 297.07,-109.21\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"296.85,-102.07 300.21,-108.97 296.96,-105.57 297.06,-109.07 297.06,-109.07 297.06,-109.07 296.96,-105.57 293.91,-109.16 296.85,-102.07 296.85,-102.07\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"270\" y=\"-123.72\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d60ba0630> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da044c6f0> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -1796,7 +1796,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d613c96c0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da044cb10> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -1851,7 +1851,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d613c9720> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da044ca20> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -1878,74 +1878,74 @@
|
|||
"<!-- Generated by graphviz version 2.43.0 (0)\n",
|
||||
" -->\n",
|
||||
"<!-- Pages: 1 -->\n",
|
||||
"<svg width=\"226pt\" height=\"164pt\"\n",
|
||||
" viewBox=\"0.00 0.00 226.00 164.43\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(1.0 1.0) rotate(0) translate(4 160.43)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-160.43 222,-160.43 222,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"88.5\" y=\"-142.23\" font-family=\"Lato\" font-size=\"14.00\">Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"109.5\" y=\"-142.23\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"125.5\" y=\"-142.23\" font-family=\"Lato\" font-size=\"14.00\">)</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"87.5\" y=\"-128.23\" font-family=\"Lato\" font-size=\"14.00\">[Büchi]</text>\n",
|
||||
"<svg width=\"212pt\" height=\"165pt\"\n",
|
||||
" viewBox=\"0.00 0.00 211.59 164.62\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(1.0 1.0) rotate(0) translate(4 160.62)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-160.62 207.59,-160.62 207.59,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"81.3\" y=\"-142.42\" font-family=\"Lato\" font-size=\"14.00\">Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"102.3\" y=\"-142.42\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"118.3\" y=\"-142.42\" font-family=\"Lato\" font-size=\"14.00\">)</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"80.3\" y=\"-128.42\" font-family=\"Lato\" font-size=\"14.00\">[Büchi]</text>\n",
|
||||
"<!-- I -->\n",
|
||||
"<!-- 0 -->\n",
|
||||
"<g id=\"node2\" class=\"node\">\n",
|
||||
"<title>0</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"65\" cy=\"-21.43\" rx=\"27\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"55\" y=\"-17.73\" font-family=\"Lato\" font-size=\"14.00\">1,0</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"61.4\" cy=\"-21.62\" rx=\"23.3\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"51.4\" y=\"-17.92\" font-family=\"Lato\" font-size=\"14.00\">1,0</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- I->0 -->\n",
|
||||
"<g id=\"edge1\" class=\"edge\">\n",
|
||||
"<title>I->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.05,-21.43C1.95,-21.43 16.1,-21.43 30.76,-21.43\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"37.94,-21.43 30.94,-24.58 34.44,-21.43 30.94,-21.43 30.94,-21.43 30.94,-21.43 34.44,-21.43 30.94,-18.28 37.94,-21.43 37.94,-21.43\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.17,-21.62C2.85,-21.62 16.69,-21.62 30.57,-21.62\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"37.76,-21.62 30.76,-24.77 34.26,-21.62 30.76,-21.62 30.76,-21.62 30.76,-21.62 34.26,-21.62 30.76,-18.47 37.76,-21.62 37.76,-21.62\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->0 -->\n",
|
||||
"<g id=\"edge4\" class=\"edge\">\n",
|
||||
"<title>0->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M57.14,-38.84C55.68,-48.52 58.3,-57.43 65,-57.43 69.92,-57.43 72.64,-52.62 73.16,-46.24\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"72.86,-38.84 76.29,-45.7 73,-42.34 73.14,-45.83 73.14,-45.83 73.14,-45.83 73,-42.34 70,-45.96 72.86,-38.84 72.86,-38.84\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"47\" y=\"-61.23\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M54.26,-39.03C52.92,-48.7 55.3,-57.62 61.4,-57.62 65.87,-57.62 68.35,-52.81 68.82,-46.42\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"68.54,-39.03 71.95,-45.9 68.67,-42.52 68.8,-46.02 68.8,-46.02 68.8,-46.02 68.67,-42.52 65.65,-46.14 68.54,-39.03 68.54,-39.03\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"43.4\" y=\"-61.42\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1 -->\n",
|
||||
"<g id=\"node3\" class=\"node\">\n",
|
||||
"<title>1</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"191\" cy=\"-21.43\" rx=\"27\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"181\" y=\"-17.73\" font-family=\"Lato\" font-size=\"14.00\">0,0</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"180.19\" cy=\"-21.62\" rx=\"23.3\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"170.19\" y=\"-17.92\" font-family=\"Lato\" font-size=\"14.00\">0,0</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->1 -->\n",
|
||||
"<g id=\"edge2\" class=\"edge\">\n",
|
||||
"<title>0->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M92.3,-21.43C111.04,-21.43 136.38,-21.43 156.56,-21.43\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"163.74,-21.43 156.74,-24.58 160.24,-21.43 156.74,-21.43 156.74,-21.43 156.74,-21.43 160.24,-21.43 156.74,-18.28 163.74,-21.43 163.74,-21.43\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"110\" y=\"-25.23\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M84.92,-21.62C103.34,-21.62 129.53,-21.62 149.64,-21.62\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"156.74,-21.62 149.74,-24.77 153.24,-21.62 149.74,-21.62 149.74,-21.62 149.74,-21.62 153.24,-21.62 149.74,-18.47 156.74,-21.62 156.74,-21.62\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"102.8\" y=\"-25.42\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->1 -->\n",
|
||||
"<g id=\"edge3\" class=\"edge\">\n",
|
||||
"<title>0->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M86.91,-10.34C94.03,-7.12 102.18,-4.05 110,-2.43 125.67,0.81 130.33,0.81 146,-2.43 151.5,-3.57 157.16,-5.42 162.51,-7.54\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"169.09,-10.34 161.41,-10.5 165.87,-8.97 162.64,-7.6 162.64,-7.6 162.64,-7.6 165.87,-8.97 163.88,-4.7 169.09,-10.34 169.09,-10.34\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"112\" y=\"-6.23\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M80.69,-10.93C87.41,-7.58 95.23,-4.31 102.8,-2.62 118.41,0.87 123.18,0.87 138.8,-2.62 144,-3.78 149.32,-5.69 154.32,-7.86\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"160.9,-10.93 153.22,-10.82 157.73,-9.45 154.56,-7.97 154.56,-7.97 154.56,-7.97 157.73,-9.45 155.89,-5.11 160.9,-10.93 160.9,-10.93\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"104.8\" y=\"-6.42\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->1 -->\n",
|
||||
"<g id=\"edge5\" class=\"edge\">\n",
|
||||
"<title>1->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M185.43,-39.21C184.48,-48.74 186.34,-57.43 191,-57.43 194.42,-57.43 196.33,-52.74 196.73,-46.48\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"196.57,-39.21 199.88,-46.14 196.65,-42.71 196.73,-46.21 196.73,-46.21 196.73,-46.21 196.65,-42.71 193.58,-46.28 196.57,-39.21 196.57,-39.21\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"185.5\" y=\"-61.23\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M174.98,-39.4C174.09,-48.93 175.83,-57.62 180.19,-57.62 183.4,-57.62 185.18,-52.93 185.56,-46.67\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"185.41,-39.4 188.7,-46.33 185.48,-42.9 185.55,-46.4 185.55,-46.4 185.55,-46.4 185.48,-42.9 182.4,-46.46 185.41,-39.4 185.41,-39.4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"174.69\" y=\"-61.42\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->1 -->\n",
|
||||
"<g id=\"edge6\" class=\"edge\">\n",
|
||||
"<title>1->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M181.93,-38.57C176.59,-56.01 179.62,-75.43 191,-75.43 200.87,-75.43 204.46,-60.83 201.75,-45.57\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"200.07,-38.57 204.77,-44.64 200.89,-41.97 201.71,-45.38 201.71,-45.38 201.71,-45.38 200.89,-41.97 198.64,-46.11 200.07,-38.57 200.07,-38.57\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"187.5\" y=\"-94.23\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"183\" y=\"-79.23\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M171.79,-38.48C166.69,-55.99 169.49,-75.62 180.19,-75.62 189.48,-75.62 192.82,-60.86 190.21,-45.52\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"188.6,-38.48 193.23,-44.6 189.38,-41.89 190.16,-45.3 190.16,-45.3 190.16,-45.3 189.38,-41.89 187.09,-46.01 188.6,-38.48 188.6,-38.48\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"176.69\" y=\"-94.42\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"172.19\" y=\"-79.42\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d60b8af90> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da04520f0> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 14,
|
||||
|
|
@ -2007,74 +2007,74 @@
|
|||
"<!-- Generated by graphviz version 2.43.0 (0)\n",
|
||||
" -->\n",
|
||||
"<!-- Pages: 1 -->\n",
|
||||
"<svg width=\"226pt\" height=\"164pt\"\n",
|
||||
" viewBox=\"0.00 0.00 226.00 164.43\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(1.0 1.0) rotate(0) translate(4 160.43)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-160.43 222,-160.43 222,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"88.5\" y=\"-142.23\" font-family=\"Lato\" font-size=\"14.00\">Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"109.5\" y=\"-142.23\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"125.5\" y=\"-142.23\" font-family=\"Lato\" font-size=\"14.00\">)</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"87.5\" y=\"-128.23\" font-family=\"Lato\" font-size=\"14.00\">[Büchi]</text>\n",
|
||||
"<svg width=\"212pt\" height=\"165pt\"\n",
|
||||
" viewBox=\"0.00 0.00 211.59 164.62\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(1.0 1.0) rotate(0) translate(4 160.62)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-160.62 207.59,-160.62 207.59,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"81.3\" y=\"-142.42\" font-family=\"Lato\" font-size=\"14.00\">Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"102.3\" y=\"-142.42\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"118.3\" y=\"-142.42\" font-family=\"Lato\" font-size=\"14.00\">)</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"80.3\" y=\"-128.42\" font-family=\"Lato\" font-size=\"14.00\">[Büchi]</text>\n",
|
||||
"<!-- I -->\n",
|
||||
"<!-- 0 -->\n",
|
||||
"<g id=\"node2\" class=\"node\">\n",
|
||||
"<title>0</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"65\" cy=\"-21.43\" rx=\"27\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"55\" y=\"-17.73\" font-family=\"Lato\" font-size=\"14.00\">1,0</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"61.4\" cy=\"-21.62\" rx=\"23.3\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"51.4\" y=\"-17.92\" font-family=\"Lato\" font-size=\"14.00\">1,0</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- I->0 -->\n",
|
||||
"<g id=\"edge1\" class=\"edge\">\n",
|
||||
"<title>I->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.05,-21.43C1.95,-21.43 16.1,-21.43 30.76,-21.43\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"37.94,-21.43 30.94,-24.58 34.44,-21.43 30.94,-21.43 30.94,-21.43 30.94,-21.43 34.44,-21.43 30.94,-18.28 37.94,-21.43 37.94,-21.43\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.17,-21.62C2.85,-21.62 16.69,-21.62 30.57,-21.62\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"37.76,-21.62 30.76,-24.77 34.26,-21.62 30.76,-21.62 30.76,-21.62 30.76,-21.62 34.26,-21.62 30.76,-18.47 37.76,-21.62 37.76,-21.62\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->0 -->\n",
|
||||
"<g id=\"edge4\" class=\"edge\">\n",
|
||||
"<title>0->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M57.14,-38.84C55.68,-48.52 58.3,-57.43 65,-57.43 69.92,-57.43 72.64,-52.62 73.16,-46.24\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"72.86,-38.84 76.29,-45.7 73,-42.34 73.14,-45.83 73.14,-45.83 73.14,-45.83 73,-42.34 70,-45.96 72.86,-38.84 72.86,-38.84\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"47\" y=\"-61.23\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M54.26,-39.03C52.92,-48.7 55.3,-57.62 61.4,-57.62 65.87,-57.62 68.35,-52.81 68.82,-46.42\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"68.54,-39.03 71.95,-45.9 68.67,-42.52 68.8,-46.02 68.8,-46.02 68.8,-46.02 68.67,-42.52 65.65,-46.14 68.54,-39.03 68.54,-39.03\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"43.4\" y=\"-61.42\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1 -->\n",
|
||||
"<g id=\"node3\" class=\"node\">\n",
|
||||
"<title>1</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"191\" cy=\"-21.43\" rx=\"27\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"181\" y=\"-17.73\" font-family=\"Lato\" font-size=\"14.00\">0,0</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"180.19\" cy=\"-21.62\" rx=\"23.3\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"170.19\" y=\"-17.92\" font-family=\"Lato\" font-size=\"14.00\">0,0</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->1 -->\n",
|
||||
"<g id=\"edge2\" class=\"edge\">\n",
|
||||
"<title>0->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#e31a1c\" stroke-width=\"2\" d=\"M92.3,-21.43C111.04,-21.43 136.38,-21.43 156.56,-21.43\"/>\n",
|
||||
"<polygon fill=\"#e31a1c\" stroke=\"#e31a1c\" stroke-width=\"2\" points=\"163.74,-21.43 156.74,-24.58 160.24,-21.93 156.74,-21.93 156.74,-21.43 156.74,-20.93 160.24,-20.93 156.74,-18.28 163.74,-21.43 163.74,-21.43\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"110\" y=\"-25.23\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"#e31a1c\" stroke-width=\"2\" d=\"M84.92,-21.62C103.34,-21.62 129.53,-21.62 149.64,-21.62\"/>\n",
|
||||
"<polygon fill=\"#e31a1c\" stroke=\"#e31a1c\" stroke-width=\"2\" points=\"156.74,-21.62 149.74,-24.77 153.24,-22.12 149.74,-22.12 149.74,-21.62 149.74,-21.12 153.24,-21.12 149.74,-18.47 156.74,-21.62 156.74,-21.62\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"102.8\" y=\"-25.42\" font-family=\"Lato\" font-size=\"14.00\">!a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->1 -->\n",
|
||||
"<g id=\"edge3\" class=\"edge\">\n",
|
||||
"<title>0->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M86.91,-10.34C94.03,-7.12 102.18,-4.05 110,-2.43 125.67,0.81 130.33,0.81 146,-2.43 151.5,-3.57 157.16,-5.42 162.51,-7.54\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"169.09,-10.34 161.41,-10.5 165.87,-8.97 162.64,-7.6 162.64,-7.6 162.64,-7.6 165.87,-8.97 163.88,-4.7 169.09,-10.34 169.09,-10.34\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"112\" y=\"-6.23\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M80.69,-10.93C87.41,-7.58 95.23,-4.31 102.8,-2.62 118.41,0.87 123.18,0.87 138.8,-2.62 144,-3.78 149.32,-5.69 154.32,-7.86\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"160.9,-10.93 153.22,-10.82 157.73,-9.45 154.56,-7.97 154.56,-7.97 154.56,-7.97 157.73,-9.45 155.89,-5.11 160.9,-10.93 160.9,-10.93\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"104.8\" y=\"-6.42\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->1 -->\n",
|
||||
"<g id=\"edge5\" class=\"edge\">\n",
|
||||
"<title>1->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M185.43,-39.21C184.48,-48.74 186.34,-57.43 191,-57.43 194.42,-57.43 196.33,-52.74 196.73,-46.48\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"196.57,-39.21 199.88,-46.14 196.65,-42.71 196.73,-46.21 196.73,-46.21 196.73,-46.21 196.65,-42.71 193.58,-46.28 196.57,-39.21 196.57,-39.21\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"185.5\" y=\"-61.23\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M174.98,-39.4C174.09,-48.93 175.83,-57.62 180.19,-57.62 183.4,-57.62 185.18,-52.93 185.56,-46.67\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"185.41,-39.4 188.7,-46.33 185.48,-42.9 185.55,-46.4 185.55,-46.4 185.55,-46.4 185.48,-42.9 182.4,-46.46 185.41,-39.4 185.41,-39.4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"174.69\" y=\"-61.42\" font-family=\"Lato\" font-size=\"14.00\">!a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->1 -->\n",
|
||||
"<g id=\"edge6\" class=\"edge\">\n",
|
||||
"<title>1->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"#e31a1c\" stroke-width=\"2\" d=\"M181.93,-38.57C176.59,-56.01 179.62,-75.43 191,-75.43 200.87,-75.43 204.46,-60.83 201.75,-45.57\"/>\n",
|
||||
"<polygon fill=\"#e31a1c\" stroke=\"#e31a1c\" stroke-width=\"2\" points=\"200.07,-38.57 204.77,-44.64 201.37,-41.86 202.19,-45.26 201.71,-45.38 201.22,-45.49 200.4,-42.09 198.64,-46.11 200.07,-38.57 200.07,-38.57\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"187.5\" y=\"-94.23\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"183\" y=\"-79.23\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<path fill=\"none\" stroke=\"#e31a1c\" stroke-width=\"2\" d=\"M171.79,-38.48C166.69,-55.99 169.49,-75.62 180.19,-75.62 189.48,-75.62 192.82,-60.86 190.21,-45.52\"/>\n",
|
||||
"<polygon fill=\"#e31a1c\" stroke=\"#e31a1c\" stroke-width=\"2\" points=\"188.6,-38.48 193.23,-44.6 189.87,-41.78 190.65,-45.19 190.16,-45.3 189.68,-45.41 188.89,-42 187.09,-46.01 188.6,-38.48 188.6,-38.48\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"176.69\" y=\"-94.42\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"172.19\" y=\"-79.42\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d60b8af90> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da04520f0> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -2139,7 +2139,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d613c96c0> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da044cb10> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -2194,7 +2194,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d613c9720> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da044ca20> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -2245,187 +2245,187 @@
|
|||
"<!-- Generated by graphviz version 2.43.0 (0)\n",
|
||||
" -->\n",
|
||||
"<!-- Pages: 1 -->\n",
|
||||
"<svg width=\"685pt\" height=\"262pt\"\n",
|
||||
" viewBox=\"0.00 0.00 684.57 262.00\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<svg width=\"600pt\" height=\"262pt\"\n",
|
||||
" viewBox=\"0.00 0.00 600.00 262.00\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(1.0 1.0) rotate(0) translate(4 258)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-258 680.57,-258 680.57,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"292.78\" y=\"-239.8\" font-family=\"Lato\" font-size=\"14.00\">Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"313.78\" y=\"-239.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"329.78\" y=\"-239.8\" font-family=\"Lato\" font-size=\"14.00\">)&Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"363.78\" y=\"-239.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"379.78\" y=\"-239.8\" font-family=\"Lato\" font-size=\"14.00\">)</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"295.78\" y=\"-225.8\" font-family=\"Lato\" font-size=\"14.00\">[gen. Büchi 2]</text>\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-258 596,-258 596,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"250.5\" y=\"-239.8\" font-family=\"Lato\" font-size=\"14.00\">Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"271.5\" y=\"-239.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"287.5\" y=\"-239.8\" font-family=\"Lato\" font-size=\"14.00\">)&Inf(</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"321.5\" y=\"-239.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"337.5\" y=\"-239.8\" font-family=\"Lato\" font-size=\"14.00\">)</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"253.5\" y=\"-225.8\" font-family=\"Lato\" font-size=\"14.00\">[gen. Büchi 2]</text>\n",
|
||||
"<!-- I -->\n",
|
||||
"<!-- 0 -->\n",
|
||||
"<g id=\"node2\" class=\"node\">\n",
|
||||
"<title>0</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"68.55\" cy=\"-166\" rx=\"30.59\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"53.05\" y=\"-162.3\" font-family=\"Lato\" font-size=\"14.00\">0 * 3</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M73,-184C73,-184 50,-184 50,-184 44,-184 38,-178 38,-172 38,-172 38,-160 38,-160 38,-154 44,-148 50,-148 50,-148 73,-148 73,-148 79,-148 85,-154 85,-160 85,-160 85,-172 85,-172 85,-178 79,-184 73,-184\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"46\" y=\"-162.3\" font-family=\"Lato\" font-size=\"14.00\">0 * 3</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- I->0 -->\n",
|
||||
"<g id=\"edge1\" class=\"edge\">\n",
|
||||
"<title>I->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.05,-166C1.96,-166 15.7,-166 30.46,-166\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"37.73,-166 30.73,-169.15 34.23,-166 30.73,-166 30.73,-166 30.73,-166 34.23,-166 30.73,-162.85 37.73,-166 37.73,-166\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.17,-166C2.85,-166 16.72,-166 30.62,-166\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"37.83,-166 30.83,-169.15 34.33,-166 30.83,-166 30.83,-166 30.83,-166 34.33,-166 30.83,-162.85 37.83,-166 37.83,-166\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1 -->\n",
|
||||
"<g id=\"node3\" class=\"node\">\n",
|
||||
"<title>1</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"201.64\" cy=\"-193\" rx=\"30.59\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"186.14\" y=\"-189.3\" font-family=\"Lato\" font-size=\"14.00\">1 * 2</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M192,-211C192,-211 169,-211 169,-211 163,-211 157,-205 157,-199 157,-199 157,-187 157,-187 157,-181 163,-175 169,-175 169,-175 192,-175 192,-175 198,-175 204,-181 204,-187 204,-187 204,-199 204,-199 204,-205 198,-211 192,-211\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"165\" y=\"-189.3\" font-family=\"Lato\" font-size=\"14.00\">1 * 2</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->1 -->\n",
|
||||
"<g id=\"edge2\" class=\"edge\">\n",
|
||||
"<title>0->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M97.67,-171.79C117.54,-175.89 144.32,-181.4 165.58,-185.78\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"172.57,-187.22 165.07,-188.89 169.14,-186.51 165.71,-185.81 165.71,-185.81 165.71,-185.81 169.14,-186.51 166.34,-182.72 172.57,-187.22 172.57,-187.22\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"117.09\" y=\"-185.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M85.06,-171.21C103.47,-175.46 129.64,-181.49 149.77,-186.14\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"156.61,-187.72 149.08,-189.21 153.2,-186.93 149.79,-186.14 149.79,-186.14 149.79,-186.14 153.2,-186.93 150.5,-183.07 156.61,-187.72 156.61,-187.72\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"103\" y=\"-186.8\" font-family=\"Lato\" font-size=\"14.00\">a & !b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2 -->\n",
|
||||
"<g id=\"node4\" class=\"node\">\n",
|
||||
"<title>2</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"201.64\" cy=\"-139\" rx=\"30.59\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"186.14\" y=\"-135.3\" font-family=\"Lato\" font-size=\"14.00\">2 * 2</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M192,-157C192,-157 169,-157 169,-157 163,-157 157,-151 157,-145 157,-145 157,-133 157,-133 157,-127 163,-121 169,-121 169,-121 192,-121 192,-121 198,-121 204,-127 204,-133 204,-133 204,-145 204,-145 204,-151 198,-157 192,-157\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"165\" y=\"-135.3\" font-family=\"Lato\" font-size=\"14.00\">2 * 2</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->2 -->\n",
|
||||
"<g id=\"edge3\" class=\"edge\">\n",
|
||||
"<title>0->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M97.67,-160.21C117.54,-156.11 144.32,-150.6 165.58,-146.22\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"172.57,-144.78 166.34,-149.28 169.14,-145.49 165.71,-146.19 165.71,-146.19 165.71,-146.19 169.14,-145.49 165.07,-143.11 172.57,-144.78 172.57,-144.78\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"129.09\" y=\"-158.8\" font-family=\"Lato\" font-size=\"14.00\">!b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M85.18,-160.3C90.98,-158.87 97.22,-157.36 103,-156 118.34,-152.4 135.46,-148.58 149.6,-145.47\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"156.71,-143.92 150.54,-148.49 153.29,-144.67 149.87,-145.42 149.87,-145.42 149.87,-145.42 153.29,-144.67 149.19,-142.34 156.71,-143.92 156.71,-143.92\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"115\" y=\"-159.8\" font-family=\"Lato\" font-size=\"14.00\">!b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3 -->\n",
|
||||
"<g id=\"node5\" class=\"node\">\n",
|
||||
"<title>3</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"314.74\" cy=\"-182\" rx=\"30.59\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"299.24\" y=\"-178.3\" font-family=\"Lato\" font-size=\"14.00\">1 * 1</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M291,-200C291,-200 268,-200 268,-200 262,-200 256,-194 256,-188 256,-188 256,-176 256,-176 256,-170 262,-164 268,-164 268,-164 291,-164 291,-164 297,-164 303,-170 303,-176 303,-176 303,-188 303,-188 303,-194 297,-200 291,-200\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"264\" y=\"-178.3\" font-family=\"Lato\" font-size=\"14.00\">1 * 1</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->3 -->\n",
|
||||
"<g id=\"edge4\" class=\"edge\">\n",
|
||||
"<title>1->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M231.83,-190.11C245.75,-188.73 262.55,-187.07 277.3,-185.61\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"284.36,-184.91 277.7,-188.73 280.87,-185.25 277.39,-185.6 277.39,-185.6 277.39,-185.6 280.87,-185.25 277.08,-182.46 284.36,-184.91 284.36,-184.91\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"254.69\" y=\"-206.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"250.19\" y=\"-191.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M204.49,-190.39C217.66,-188.9 234.33,-187.01 248.52,-185.4\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"255.68,-184.59 249.08,-188.51 252.2,-184.98 248.72,-185.38 248.72,-185.38 248.72,-185.38 252.2,-184.98 248.37,-182.25 255.68,-184.59 255.68,-184.59\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"226.5\" y=\"-206.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"222\" y=\"-191.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->3 -->\n",
|
||||
"<g id=\"edge5\" class=\"edge\">\n",
|
||||
"<title>2->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M227.57,-148.65C243.73,-154.9 264.9,-163.1 282.22,-169.8\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"288.89,-172.38 281.22,-172.79 285.62,-171.12 282.36,-169.86 282.36,-169.86 282.36,-169.86 285.62,-171.12 283.5,-166.92 288.89,-172.38 288.89,-172.38\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"254.69\" y=\"-166.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M204.49,-149.19C217.78,-155.08 234.64,-162.56 248.91,-168.88\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"255.68,-171.88 248,-171.93 252.48,-170.46 249.28,-169.05 249.28,-169.05 249.28,-169.05 252.48,-170.46 250.55,-166.17 255.68,-171.88 255.68,-171.88\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"226.5\" y=\"-166.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4 -->\n",
|
||||
"<g id=\"node6\" class=\"node\">\n",
|
||||
"<title>4</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"314.74\" cy=\"-117\" rx=\"30.59\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"299.24\" y=\"-113.3\" font-family=\"Lato\" font-size=\"14.00\">2 * 1</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M291,-135C291,-135 268,-135 268,-135 262,-135 256,-129 256,-123 256,-123 256,-111 256,-111 256,-105 262,-99 268,-99 268,-99 291,-99 291,-99 297,-99 303,-105 303,-111 303,-111 303,-123 303,-123 303,-129 297,-135 291,-135\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"264\" y=\"-113.3\" font-family=\"Lato\" font-size=\"14.00\">2 * 1</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->4 -->\n",
|
||||
"<g id=\"edge6\" class=\"edge\">\n",
|
||||
"<title>2->4</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M224.75,-127.04C232.56,-123.42 241.55,-119.89 250.19,-118 258.86,-116.1 268.36,-115.29 277.32,-115.08\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"284.35,-115.03 277.37,-118.23 280.85,-115.06 277.35,-115.08 277.35,-115.08 277.35,-115.08 280.85,-115.06 277.33,-111.93 284.35,-115.03 284.35,-115.03\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"258.19\" y=\"-121.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M204.33,-124.86C209.91,-122.06 216.01,-119.52 222,-118 230.54,-115.84 240.05,-115.07 248.79,-114.98\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"255.91,-115.06 248.88,-118.13 252.41,-115.02 248.91,-114.98 248.91,-114.98 248.91,-114.98 252.41,-115.02 248.95,-111.83 255.91,-115.06 255.91,-115.06\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"230\" y=\"-121.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5 -->\n",
|
||||
"<g id=\"node7\" class=\"node\">\n",
|
||||
"<title>5</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"427.83\" cy=\"-171\" rx=\"30.59\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"412.33\" y=\"-167.3\" font-family=\"Lato\" font-size=\"14.00\">1 * 0</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M390,-189C390,-189 367,-189 367,-189 361,-189 355,-183 355,-177 355,-177 355,-165 355,-165 355,-159 361,-153 367,-153 367,-153 390,-153 390,-153 396,-153 402,-159 402,-165 402,-165 402,-177 402,-177 402,-183 396,-189 390,-189\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"363\" y=\"-167.3\" font-family=\"Lato\" font-size=\"14.00\">1 * 0</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->5 -->\n",
|
||||
"<g id=\"edge7\" class=\"edge\">\n",
|
||||
"<title>3->5</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M344.93,-179.11C358.85,-177.73 375.65,-176.07 390.4,-174.61\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"397.45,-173.91 390.8,-177.73 393.97,-174.25 390.49,-174.6 390.49,-174.6 390.49,-174.6 393.97,-174.25 390.18,-171.46 397.45,-173.91 397.45,-173.91\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"367.78\" y=\"-195.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"363.28\" y=\"-180.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M303.49,-179.39C316.66,-177.9 333.33,-176.01 347.52,-174.4\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"354.68,-173.59 348.08,-177.51 351.2,-173.98 347.72,-174.38 347.72,-174.38 347.72,-174.38 351.2,-173.98 347.37,-171.25 354.68,-173.59 354.68,-173.59\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"325.5\" y=\"-195.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"321\" y=\"-180.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4->5 -->\n",
|
||||
"<g id=\"edge8\" class=\"edge\">\n",
|
||||
"<title>4->5</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M338.76,-128.19C355.74,-136.44 378.98,-147.74 397.33,-156.66\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"403.84,-159.83 396.17,-159.6 400.69,-158.3 397.55,-156.77 397.55,-156.77 397.55,-156.77 400.69,-158.3 398.92,-153.93 403.84,-159.83 403.84,-159.83\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"367.78\" y=\"-150.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M303.49,-129.8C316.9,-137.26 333.94,-146.75 348.3,-154.74\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"354.68,-158.29 347.03,-157.64 351.62,-156.59 348.56,-154.89 348.56,-154.89 348.56,-154.89 351.62,-156.59 350.09,-152.14 354.68,-158.29 354.68,-158.29\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"325.5\" y=\"-150.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6 -->\n",
|
||||
"<g id=\"node8\" class=\"node\">\n",
|
||||
"<title>6</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"427.83\" cy=\"-106\" rx=\"30.59\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"412.33\" y=\"-102.3\" font-family=\"Lato\" font-size=\"14.00\">2 * 0</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M390,-124C390,-124 367,-124 367,-124 361,-124 355,-118 355,-112 355,-112 355,-100 355,-100 355,-94 361,-88 367,-88 367,-88 390,-88 390,-88 396,-88 402,-94 402,-100 402,-100 402,-112 402,-112 402,-118 396,-124 390,-124\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"363\" y=\"-102.3\" font-family=\"Lato\" font-size=\"14.00\">2 * 0</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4->6 -->\n",
|
||||
"<g id=\"edge9\" class=\"edge\">\n",
|
||||
"<title>4->6</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M343.25,-110.28C349.78,-108.95 356.75,-107.73 363.28,-107 371.85,-106.04 381.11,-105.57 389.83,-105.39\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"397.01,-105.29 390.06,-108.54 393.51,-105.34 390.01,-105.39 390.01,-105.39 390.01,-105.39 393.51,-105.34 389.97,-102.24 397.01,-105.29 397.01,-105.29\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"371.28\" y=\"-110.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M303.03,-110.49C308.84,-109.07 315.11,-107.77 321,-107 329.66,-105.87 339.14,-105.4 347.81,-105.28\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"354.87,-105.24 347.88,-108.43 351.37,-105.26 347.87,-105.28 347.87,-105.28 347.87,-105.28 351.37,-105.26 347.86,-102.13 354.87,-105.24 354.87,-105.24\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"329\" y=\"-110.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7 -->\n",
|
||||
"<g id=\"node9\" class=\"node\">\n",
|
||||
"<title>7</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"646.02\" cy=\"-120\" rx=\"30.59\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"630.52\" y=\"-116.3\" font-family=\"Lato\" font-size=\"14.00\">1 * 4</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M580,-138C580,-138 557,-138 557,-138 551,-138 545,-132 545,-126 545,-126 545,-114 545,-114 545,-108 551,-102 557,-102 557,-102 580,-102 580,-102 586,-102 592,-108 592,-114 592,-114 592,-126 592,-126 592,-132 586,-138 580,-138\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"553\" y=\"-116.3\" font-family=\"Lato\" font-size=\"14.00\">1 * 4</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5->7 -->\n",
|
||||
"<g id=\"edge10\" class=\"edge\">\n",
|
||||
"<title>5->7</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M456.65,-164.44C495.97,-155.16 567.76,-138.23 610.46,-128.15\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"617.31,-126.54 611.22,-131.21 613.9,-127.34 610.49,-128.15 610.49,-128.15 610.49,-128.15 613.9,-127.34 609.77,-125.08 617.31,-126.54 617.31,-126.54\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"516.93\" y=\"-171.8\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"524.93\" y=\"-156.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M402.49,-164.77C431.51,-156.9 482.96,-142.95 527,-131 530.51,-130.05 534.2,-129.05 537.85,-128.05\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"544.8,-126.17 538.87,-131.04 541.42,-127.09 538.04,-128 538.04,-128 538.04,-128 541.42,-127.09 537.21,-124.96 544.8,-126.17 544.8,-126.17\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"453.5\" y=\"-170.8\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"461.5\" y=\"-155.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6->7 -->\n",
|
||||
"<g id=\"edge11\" class=\"edge\">\n",
|
||||
"<title>6->7</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M458.44,-107.92C497.46,-110.44 566.11,-114.89 608.37,-117.63\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"615.42,-118.08 608.24,-120.77 611.93,-117.86 608.44,-117.63 608.44,-117.63 608.44,-117.63 611.93,-117.86 608.64,-114.49 615.42,-118.08 615.42,-118.08\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"516.93\" y=\"-118.8\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M402.18,-107.69C436.05,-110.21 499.91,-114.97 537.58,-117.77\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"544.74,-118.31 537.53,-120.93 541.25,-118.05 537.76,-117.79 537.76,-117.79 537.76,-117.79 541.25,-118.05 538,-114.64 544.74,-118.31 544.74,-118.31\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"453.5\" y=\"-118.8\" font-family=\"Lato\" font-size=\"14.00\">a & b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8 -->\n",
|
||||
"<g id=\"node10\" class=\"node\">\n",
|
||||
"<title>8</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"532.93\" cy=\"-18\" rx=\"30.59\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"517.43\" y=\"-14.3\" font-family=\"Lato\" font-size=\"14.00\">2 * 4</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M481,-36C481,-36 458,-36 458,-36 452,-36 446,-30 446,-24 446,-24 446,-12 446,-12 446,-6 452,0 458,0 458,0 481,0 481,0 487,0 493,-6 493,-12 493,-12 493,-24 493,-24 493,-30 487,-36 481,-36\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"454\" y=\"-14.3\" font-family=\"Lato\" font-size=\"14.00\">2 * 4</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6->8 -->\n",
|
||||
"<g id=\"edge12\" class=\"edge\">\n",
|
||||
"<title>6->8</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M446.32,-91.07C463.6,-76.32 490.14,-53.67 509.08,-37.5\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"514.7,-32.71 511.42,-39.65 512.03,-34.98 509.37,-37.25 509.37,-37.25 509.37,-37.25 512.03,-34.98 507.33,-34.86 514.7,-32.71 514.7,-32.71\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"476.38\" y=\"-68.8\" font-family=\"Lato\" font-size=\"14.00\">b</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M397.94,-87.77C411.54,-74.32 430.17,-55.9 444.86,-41.37\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"450.08,-36.21 447.32,-43.37 447.59,-38.67 445.11,-41.13 445.11,-41.13 445.11,-41.13 447.59,-38.67 442.89,-38.89 450.08,-36.21 450.08,-36.21\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"420\" y=\"-68.8\" font-family=\"Lato\" font-size=\"14.00\">b</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7->7 -->\n",
|
||||
"<g id=\"edge13\" class=\"edge\">\n",
|
||||
"<title>7->7</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M636.1,-137.04C634.07,-146.86 637.38,-156 646.02,-156 652.5,-156 655.98,-150.86 656.46,-144.14\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"655.94,-137.04 659.59,-143.79 656.2,-140.53 656.45,-144.02 656.45,-144.02 656.45,-144.02 656.2,-140.53 653.31,-144.25 655.94,-137.04 655.94,-137.04\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"642.52\" y=\"-173.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"630.02\" y=\"-159.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"646.02\" y=\"-159.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M559.82,-138.15C558.48,-147.54 561.38,-156 568.5,-156 573.73,-156 576.68,-151.44 577.35,-145.3\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"577.18,-138.15 580.5,-145.08 577.27,-141.65 577.35,-145.15 577.35,-145.15 577.35,-145.15 577.27,-141.65 574.2,-145.23 577.18,-138.15 577.18,-138.15\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"565\" y=\"-173.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"552.5\" y=\"-159.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#1f78b4\">⓿</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"568.5\" y=\"-159.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8->7 -->\n",
|
||||
"<g id=\"edge14\" class=\"edge\">\n",
|
||||
"<title>8->7</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M550.41,-32.99C563.26,-44.68 581.53,-61.34 597.47,-76 605.95,-83.79 615.25,-92.39 623.36,-99.9\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"628.76,-104.9 621.49,-102.46 626.19,-102.52 623.63,-100.14 623.63,-100.14 623.63,-100.14 626.19,-102.52 625.77,-97.83 628.76,-104.9 628.76,-104.9\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"585.97\" y=\"-94.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"581.47\" y=\"-79.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M488.45,-36.16C499.62,-47.53 514.24,-62.53 527,-76 533.25,-82.6 539.95,-89.82 546.08,-96.48\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"551.06,-101.91 544.01,-98.88 548.7,-99.33 546.33,-96.75 546.33,-96.75 546.33,-96.75 548.7,-99.33 548.65,-94.62 551.06,-101.91 551.06,-101.91\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"515.5\" y=\"-94.8\" font-family=\"Lato\" font-size=\"14.00\">a</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"511\" y=\"-79.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8->8 -->\n",
|
||||
"<g id=\"edge15\" class=\"edge\">\n",
|
||||
"<title>8->8</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M523.64,-35.41C521.91,-45.09 525,-54 532.93,-54 538.74,-54 541.96,-49.19 542.57,-42.81\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"542.21,-35.41 545.69,-42.25 542.38,-38.91 542.55,-42.4 542.55,-42.4 542.55,-42.4 542.38,-38.91 539.4,-42.55 542.21,-35.41 542.21,-35.41\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"528.43\" y=\"-72.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"524.93\" y=\"-57.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M461.54,-36.15C460.32,-45.54 462.97,-54 469.5,-54 474.3,-54 477,-49.44 477.61,-43.3\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"477.46,-36.15 480.76,-43.08 477.54,-39.65 477.61,-43.15 477.61,-43.15 477.61,-43.15 477.54,-39.65 474.46,-43.22 477.46,-36.15 477.46,-36.15\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"465\" y=\"-72.8\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"461.5\" y=\"-57.8\" font-family=\"Lato\" font-size=\"14.00\" fill=\"#ff4da0\">❶</text>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.impl.twa_product; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_product > *' at 0x7f8d60b957e0> >"
|
||||
"<spot.impl.twa_product; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_product > *' at 0x7f7da0468a50> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -2510,7 +2510,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d60b95c60> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da0468de0> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -2607,7 +2607,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d60b95e10> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da0468bd0> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
@ -2776,7 +2776,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d60b95e40> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da0461210> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 19,
|
||||
|
|
@ -2944,7 +2944,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d60b95e40> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da0461210> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 20,
|
||||
|
|
@ -3107,7 +3107,7 @@
|
|||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f8d60b95e40> >"
|
||||
"<spot.twa_graph; proxy of <Swig Object of type 'std::shared_ptr< spot::twa_graph > *' at 0x7f7da0461210> >"
|
||||
]
|
||||
},
|
||||
"metadata": {},
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -38,8 +38,8 @@
|
|||
"SpinS Promela Compiler - version 1.1 (3-Feb-2015)\n",
|
||||
"(C) University of Twente, Formal Methods and Tools group\n",
|
||||
"\n",
|
||||
"Parsing tmpb2gyak36.pml...\n",
|
||||
"Parsing tmpb2gyak36.pml done (0.0 sec)\n",
|
||||
"Parsing tmpfkmh8g4r.pml...\n",
|
||||
"Parsing tmpfkmh8g4r.pml done (0.0 sec)\n",
|
||||
"\n",
|
||||
"Optimizing graphs...\n",
|
||||
" StateMerging changed 0 states/transitions.\n",
|
||||
|
|
@ -223,10 +223,10 @@
|
|||
" [..................................................]\n",
|
||||
" [..................................................]\n",
|
||||
" Found 2 / 2 (100.0%) Commuting actions \n",
|
||||
"Generating guard dependency matrices done (0.1 sec)\n",
|
||||
"Generating guard dependency matrices done (0.0 sec)\n",
|
||||
"\n",
|
||||
"Written C code to /home/adl/git/spot/tests/python/tmpb2gyak36.pml.spins.c\n",
|
||||
"Compiled C code to PINS library tmpb2gyak36.pml.spins\n",
|
||||
"Written C code to /home/adl/git/spot/tests/python/tmpfkmh8g4r.pml.spins.c\n",
|
||||
"Compiled C code to PINS library tmpfkmh8g4r.pml.spins\n",
|
||||
"\n"
|
||||
]
|
||||
}
|
||||
|
|
@ -294,273 +294,273 @@
|
|||
"<!-- Generated by graphviz version 2.43.0 (0)\n",
|
||||
" -->\n",
|
||||
"<!-- Pages: 1 -->\n",
|
||||
"<svg width=\"734pt\" height=\"120pt\"\n",
|
||||
" viewBox=\"0.00 0.00 734.00 119.62\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(0.3401360544217687 0.3401360544217687) rotate(0) translate(4 347.74)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-347.74 2154.23,-347.74 2154.23,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1072.11\" y=\"-328.54\" font-family=\"Lato\" font-size=\"14.00\">t</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1064.11\" y=\"-313.54\" font-family=\"Lato\" font-size=\"14.00\">[all]</text>\n",
|
||||
"<svg width=\"734pt\" height=\"135pt\"\n",
|
||||
" viewBox=\"0.00 0.00 734.00 134.56\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(0.4672897196261682 0.4672897196261682) rotate(0) translate(4 284)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-284 1567,-284 1567,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"778.5\" y=\"-264.8\" font-family=\"Lato\" font-size=\"14.00\">t</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"770.5\" y=\"-249.8\" font-family=\"Lato\" font-size=\"14.00\">[all]</text>\n",
|
||||
"<!-- I -->\n",
|
||||
"<!-- 0 -->\n",
|
||||
"<g id=\"node2\" class=\"node\">\n",
|
||||
"<title>0</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"197.51\" cy=\"-152.87\" rx=\"160.53\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"108.01\" y=\"-156.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=0, P_0.b=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"92.01\" y=\"-141.67\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M249,-140C249,-140 49,-140 49,-140 43,-140 37,-134 37,-128 37,-128 37,-114 37,-114 37,-108 43,-102 49,-102 49,-102 249,-102 249,-102 255,-102 261,-108 261,-114 261,-114 261,-128 261,-128 261,-134 255,-140 249,-140\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"60\" y=\"-124.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=0, P_0.b=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"45\" y=\"-109.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- I->0 -->\n",
|
||||
"<g id=\"edge1\" class=\"edge\">\n",
|
||||
"<title>I->0</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.14,-152.87C2.5,-152.87 13.48,-152.87 29.6,-152.87\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"36.82,-152.87 29.82,-156.02 33.32,-152.87 29.82,-152.87 29.82,-152.87 29.82,-152.87 33.32,-152.87 29.82,-149.72 36.82,-152.87 36.82,-152.87\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1.11,-121C2.32,-121 13.71,-121 29.67,-121\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"36.78,-121 29.78,-124.15 33.28,-121 29.78,-121 29.78,-121 29.78,-121 33.28,-121 29.78,-117.85 36.78,-121 36.78,-121\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1 -->\n",
|
||||
"<g id=\"node3\" class=\"node\">\n",
|
||||
"<title>1</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"554.54\" cy=\"-188.87\" rx=\"160.53\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"465.04\" y=\"-192.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=1, P_0.b=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"449.04\" y=\"-177.67\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M509,-168C509,-168 309,-168 309,-168 303,-168 297,-162 297,-156 297,-156 297,-142 297,-142 297,-136 303,-130 309,-130 309,-130 509,-130 509,-130 515,-130 521,-136 521,-142 521,-142 521,-156 521,-156 521,-162 515,-168 509,-168\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"320\" y=\"-152.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=1, P_0.b=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"305\" y=\"-137.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->1 -->\n",
|
||||
"<g id=\"edge2\" class=\"edge\">\n",
|
||||
"<title>0->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M335.27,-166.74C359.62,-169.21 385.06,-171.79 409.61,-174.28\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"416.86,-175.01 409.57,-177.44 413.37,-174.66 409.89,-174.3 409.89,-174.3 409.89,-174.3 413.37,-174.66 410.21,-171.17 416.86,-175.01 416.86,-175.01\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M261.29,-133.08C270.63,-134.09 280.11,-135.12 289.5,-136.14\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"296.67,-136.92 289.37,-139.29 293.19,-136.54 289.71,-136.16 289.71,-136.16 289.71,-136.16 293.19,-136.54 290.05,-133.03 296.67,-136.92 296.67,-136.92\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2 -->\n",
|
||||
"<g id=\"node4\" class=\"node\">\n",
|
||||
"<title>2</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"554.54\" cy=\"-116.87\" rx=\"160.53\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"465.04\" y=\"-120.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=0, P_0.b=1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"449.04\" y=\"-105.67\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M509,-112C509,-112 309,-112 309,-112 303,-112 297,-106 297,-100 297,-100 297,-86 297,-86 297,-80 303,-74 309,-74 309,-74 509,-74 509,-74 515,-74 521,-80 521,-86 521,-86 521,-100 521,-100 521,-106 515,-112 509,-112\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"320\" y=\"-96.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=0, P_0.b=1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"305\" y=\"-81.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->2 -->\n",
|
||||
"<g id=\"edge3\" class=\"edge\">\n",
|
||||
"<title>0->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M335.27,-139C359.62,-136.53 385.06,-133.95 409.61,-131.46\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"416.86,-130.73 410.21,-134.57 413.37,-131.08 409.89,-131.44 409.89,-131.44 409.89,-131.44 413.37,-131.08 409.57,-128.3 416.86,-130.73 416.86,-130.73\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M261.29,-108.92C270.63,-107.91 280.11,-106.88 289.5,-105.86\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"296.67,-105.08 290.05,-108.97 293.19,-105.46 289.71,-105.84 289.71,-105.84 289.71,-105.84 293.19,-105.46 289.37,-102.71 296.67,-105.08 296.67,-105.08\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3 -->\n",
|
||||
"<g id=\"node5\" class=\"node\">\n",
|
||||
"<title>3</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"914.39\" cy=\"-224.87\" rx=\"163.18\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"824.89\" y=\"-228.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=2, P_0.b=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"806.89\" y=\"-213.67\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M772,-196C772,-196 569,-196 569,-196 563,-196 557,-190 557,-184 557,-184 557,-170 557,-170 557,-164 563,-158 569,-158 569,-158 772,-158 772,-158 778,-158 784,-164 784,-170 784,-170 784,-184 784,-184 784,-190 778,-196 772,-196\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"581.5\" y=\"-180.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=2, P_0.b=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"565\" y=\"-165.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->3 -->\n",
|
||||
"<g id=\"edge4\" class=\"edge\">\n",
|
||||
"<title>1->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M692.62,-202.66C717.22,-205.14 742.95,-207.72 767.78,-210.22\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"774.76,-210.92 767.48,-213.36 771.28,-210.57 767.8,-210.22 767.8,-210.22 767.8,-210.22 771.28,-210.57 768.11,-207.09 774.76,-210.92 774.76,-210.92\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M521.18,-161C530.7,-162.02 540.36,-163.07 549.94,-164.1\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"556.9,-164.85 549.6,-167.23 553.42,-164.47 549.94,-164.1 549.94,-164.1 549.94,-164.1 553.42,-164.47 550.28,-160.97 556.9,-164.85 556.9,-164.85\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4 -->\n",
|
||||
"<g id=\"node6\" class=\"node\">\n",
|
||||
"<title>4</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"914.39\" cy=\"-152.87\" rx=\"160.53\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"824.89\" y=\"-156.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=1, P_0.b=1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"808.89\" y=\"-141.67\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M770.5,-140C770.5,-140 570.5,-140 570.5,-140 564.5,-140 558.5,-134 558.5,-128 558.5,-128 558.5,-114 558.5,-114 558.5,-108 564.5,-102 570.5,-102 570.5,-102 770.5,-102 770.5,-102 776.5,-102 782.5,-108 782.5,-114 782.5,-114 782.5,-128 782.5,-128 782.5,-134 776.5,-140 770.5,-140\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"581.5\" y=\"-124.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=1, P_0.b=1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"566.5\" y=\"-109.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->4 -->\n",
|
||||
"<g id=\"edge5\" class=\"edge\">\n",
|
||||
"<title>1->4</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M692.62,-175.08C717.76,-172.55 744.08,-169.9 769.42,-167.35\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"776.54,-166.64 769.89,-170.47 773.06,-166.99 769.57,-167.34 769.57,-167.34 769.57,-167.34 773.06,-166.99 769.26,-164.2 776.54,-166.64 776.54,-166.64\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M521.18,-137C531.03,-135.94 541.03,-134.86 550.94,-133.79\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"558.14,-133.02 551.52,-136.9 554.66,-133.39 551.18,-133.77 551.18,-133.77 551.18,-133.77 554.66,-133.39 550.84,-130.64 558.14,-133.02 558.14,-133.02\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->4 -->\n",
|
||||
"<g id=\"edge6\" class=\"edge\">\n",
|
||||
"<title>2->4</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M692.62,-130.66C717.76,-133.19 744.08,-135.84 769.42,-138.39\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"776.54,-139.1 769.26,-141.54 773.06,-138.75 769.57,-138.4 769.57,-138.4 769.57,-138.4 773.06,-138.75 769.89,-135.27 776.54,-139.1 776.54,-139.1\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M521.18,-105C531.03,-106.06 541.03,-107.14 550.94,-108.21\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"558.14,-108.98 550.84,-111.36 554.66,-108.61 551.18,-108.23 551.18,-108.23 551.18,-108.23 554.66,-108.61 551.52,-105.1 558.14,-108.98 558.14,-108.98\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5 -->\n",
|
||||
"<g id=\"node7\" class=\"node\">\n",
|
||||
"<title>5</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"914.39\" cy=\"-80.87\" rx=\"158.28\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"824.89\" y=\"-84.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=0, P_0.b=2</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"810.39\" y=\"-69.67\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M768.5,-84C768.5,-84 572.5,-84 572.5,-84 566.5,-84 560.5,-78 560.5,-72 560.5,-72 560.5,-58 560.5,-58 560.5,-52 566.5,-46 572.5,-46 572.5,-46 768.5,-46 768.5,-46 774.5,-46 780.5,-52 780.5,-58 780.5,-58 780.5,-72 780.5,-72 780.5,-78 774.5,-84 768.5,-84\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"581.5\" y=\"-68.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=0, P_0.b=2</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"568.5\" y=\"-53.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->5 -->\n",
|
||||
"<g id=\"edge7\" class=\"edge\">\n",
|
||||
"<title>2->5</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M692.62,-103.08C718.12,-100.51 744.83,-97.83 770.51,-95.24\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"777.72,-94.52 771.07,-98.35 774.24,-94.87 770.76,-95.22 770.76,-95.22 770.76,-95.22 774.24,-94.87 770.44,-92.09 777.72,-94.52 777.72,-94.52\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M521.18,-81C531.79,-79.86 542.56,-78.7 553.22,-77.55\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"560.2,-76.79 553.58,-80.68 556.72,-77.17 553.24,-77.54 553.24,-77.54 553.24,-77.54 556.72,-77.17 552.9,-74.41 560.2,-76.79 560.2,-76.79\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6 -->\n",
|
||||
"<g id=\"node8\" class=\"node\">\n",
|
||||
"<title>6</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1277.08\" cy=\"-260.87\" rx=\"160.53\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1187.58\" y=\"-264.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=3, P_0.b=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1171.58\" y=\"-249.67\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M1033.5,-224C1033.5,-224 833.5,-224 833.5,-224 827.5,-224 821.5,-218 821.5,-212 821.5,-212 821.5,-198 821.5,-198 821.5,-192 827.5,-186 833.5,-186 833.5,-186 1033.5,-186 1033.5,-186 1039.5,-186 1045.5,-192 1045.5,-198 1045.5,-198 1045.5,-212 1045.5,-212 1045.5,-218 1039.5,-224 1033.5,-224\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"844.5\" y=\"-208.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=3, P_0.b=0</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"829.5\" y=\"-193.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->6 -->\n",
|
||||
"<g id=\"edge8\" class=\"edge\">\n",
|
||||
"<title>3->6</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1054.33,-238.74C1079.63,-241.26 1106.09,-243.9 1131.55,-246.44\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1138.7,-247.16 1131.42,-249.6 1135.22,-246.81 1131.74,-246.46 1131.74,-246.46 1131.74,-246.46 1135.22,-246.81 1132.05,-243.33 1138.7,-247.16 1138.7,-247.16\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M784.08,-189.08C793.96,-190.14 803.98,-191.21 813.91,-192.28\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"821.12,-193.05 813.82,-195.44 817.64,-192.68 814.16,-192.3 814.16,-192.3 814.16,-192.3 817.64,-192.68 814.5,-189.17 821.12,-193.05 821.12,-193.05\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7 -->\n",
|
||||
"<g id=\"node9\" class=\"node\">\n",
|
||||
"<title>7</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1277.08\" cy=\"-188.87\" rx=\"163.18\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1187.58\" y=\"-192.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=2, P_0.b=1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1169.58\" y=\"-177.67\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M1035,-168C1035,-168 832,-168 832,-168 826,-168 820,-162 820,-156 820,-156 820,-142 820,-142 820,-136 826,-130 832,-130 832,-130 1035,-130 1035,-130 1041,-130 1047,-136 1047,-142 1047,-142 1047,-156 1047,-156 1047,-162 1041,-168 1035,-168\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"844.5\" y=\"-152.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=2, P_0.b=1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"828\" y=\"-137.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->7 -->\n",
|
||||
"<g id=\"edge9\" class=\"edge\">\n",
|
||||
"<title>3->7</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1054.33,-211C1079.09,-208.53 1104.95,-205.95 1129.91,-203.46\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1136.92,-202.76 1130.27,-206.59 1133.44,-203.11 1129.95,-203.45 1129.95,-203.45 1129.95,-203.45 1133.44,-203.11 1129.64,-200.32 1136.92,-202.76 1136.92,-202.76\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M784.08,-164.92C793.63,-163.9 803.31,-162.86 812.91,-161.83\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"819.88,-161.08 813.25,-164.96 816.4,-161.46 812.92,-161.83 812.92,-161.83 812.92,-161.83 816.4,-161.46 812.58,-158.7 819.88,-161.08 819.88,-161.08\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4->7 -->\n",
|
||||
"<g id=\"edge10\" class=\"edge\">\n",
|
||||
"<title>4->7</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1052.53,-166.56C1077.83,-169.08 1104.35,-171.73 1129.91,-174.28\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1137.09,-175 1129.81,-177.44 1133.61,-174.65 1130.13,-174.3 1130.13,-174.3 1130.13,-174.3 1133.61,-174.65 1130.44,-171.17 1137.09,-175 1137.09,-175\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M782.57,-132.92C792.6,-133.99 802.79,-135.08 812.89,-136.17\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"819.87,-136.92 812.57,-139.3 816.39,-136.54 812.91,-136.17 812.91,-136.17 812.91,-136.17 816.39,-136.54 813.24,-133.04 819.87,-136.92 819.87,-136.92\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8 -->\n",
|
||||
"<g id=\"node10\" class=\"node\">\n",
|
||||
"<title>8</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1277.08\" cy=\"-116.87\" rx=\"158.28\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1187.58\" y=\"-120.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=1, P_0.b=2</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1173.08\" y=\"-105.67\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M1031.5,-112C1031.5,-112 835.5,-112 835.5,-112 829.5,-112 823.5,-106 823.5,-100 823.5,-100 823.5,-86 823.5,-86 823.5,-80 829.5,-74 835.5,-74 835.5,-74 1031.5,-74 1031.5,-74 1037.5,-74 1043.5,-80 1043.5,-86 1043.5,-86 1043.5,-100 1043.5,-100 1043.5,-106 1037.5,-112 1031.5,-112\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"844.5\" y=\"-96.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=1, P_0.b=2</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"831.5\" y=\"-81.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4->8 -->\n",
|
||||
"<g id=\"edge11\" class=\"edge\">\n",
|
||||
"<title>4->8</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1052.53,-139.18C1078.85,-136.56 1106.49,-133.8 1133,-131.15\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1140.08,-130.44 1133.43,-134.27 1136.6,-130.79 1133.12,-131.14 1133.12,-131.14 1133.12,-131.14 1136.6,-130.79 1132.8,-128 1140.08,-130.44 1140.08,-130.44\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M782.57,-109.08C793.61,-107.9 804.84,-106.7 815.93,-105.51\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"823.2,-104.73 816.57,-108.6 819.72,-105.1 816.24,-105.47 816.24,-105.47 816.24,-105.47 819.72,-105.1 815.9,-102.34 823.2,-104.73 823.2,-104.73\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5->8 -->\n",
|
||||
"<g id=\"edge12\" class=\"edge\">\n",
|
||||
"<title>5->8</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1051.24,-94.43C1077.91,-97.09 1105.97,-99.89 1132.87,-102.58\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1140.06,-103.29 1132.78,-105.73 1136.57,-102.95 1133.09,-102.6 1133.09,-102.6 1133.09,-102.6 1136.57,-102.95 1133.4,-99.46 1140.06,-103.29 1140.06,-103.29\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M780.68,-76.71C792.47,-77.98 804.5,-79.27 816.37,-80.54\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"823.34,-81.29 816.05,-83.67 819.86,-80.92 816.38,-80.54 816.38,-80.54 816.38,-80.54 819.86,-80.92 816.72,-77.41 823.34,-81.29 823.34,-81.29\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 9 -->\n",
|
||||
"<g id=\"node11\" class=\"node\">\n",
|
||||
"<title>9</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1277.08\" cy=\"-26.87\" rx=\"155.63\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1187.58\" y=\"-30.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=0, P_0.b=3</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1175.08\" y=\"-15.67\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M1029.5,-38C1029.5,-38 837.5,-38 837.5,-38 831.5,-38 825.5,-32 825.5,-26 825.5,-26 825.5,-12 825.5,-12 825.5,-6 831.5,0 837.5,0 837.5,0 1029.5,0 1029.5,0 1035.5,0 1041.5,-6 1041.5,-12 1041.5,-12 1041.5,-26 1041.5,-26 1041.5,-32 1035.5,-38 1029.5,-38\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"844.5\" y=\"-22.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=0, P_0.b=3</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"833.5\" y=\"-7.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5->9 -->\n",
|
||||
"<g id=\"edge13\" class=\"edge\">\n",
|
||||
"<title>5->9</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1033.75,-63.15C1071.64,-57.48 1113.7,-51.18 1151.99,-45.45\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1159.1,-44.38 1152.64,-48.54 1155.64,-44.9 1152.17,-45.42 1152.17,-45.42 1152.17,-45.42 1155.64,-44.9 1151.71,-42.31 1159.1,-44.38 1159.1,-44.38\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M779.54,-45.96C792.32,-43.71 805.4,-41.4 818.26,-39.13\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"825.38,-37.88 819.03,-42.2 821.93,-38.49 818.49,-39.09 818.49,-39.09 818.49,-39.09 821.93,-38.49 817.94,-35.99 825.38,-37.88 825.38,-37.88\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6->6 -->\n",
|
||||
"<g id=\"edge14\" class=\"edge\">\n",
|
||||
"<title>6->6</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1210.76,-285.79C1205.33,-296.54 1227.43,-305.74 1277.08,-305.74 1315.09,-305.74 1336.95,-300.35 1342.68,-292.99\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1343.4,-285.79 1345.84,-293.07 1343.05,-289.27 1342.7,-292.75 1342.7,-292.75 1342.7,-292.75 1343.05,-289.27 1339.57,-292.44 1343.4,-285.79 1343.4,-285.79\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M886.19,-224.04C879.64,-233.53 895.41,-242 933.5,-242 961.47,-242 977.4,-237.43 981.3,-231.25\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"980.81,-224.04 984.43,-230.81 981.05,-227.53 981.29,-231.02 981.29,-231.02 981.29,-231.02 981.05,-227.53 978.14,-231.24 980.81,-224.04 980.81,-224.04\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 10 -->\n",
|
||||
"<g id=\"node12\" class=\"node\">\n",
|
||||
"<title>10</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1636.93\" cy=\"-224.87\" rx=\"160.53\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1547.43\" y=\"-228.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=3, P_0.b=1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1531.43\" y=\"-213.67\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M1295,-196C1295,-196 1095,-196 1095,-196 1089,-196 1083,-190 1083,-184 1083,-184 1083,-170 1083,-170 1083,-164 1089,-158 1095,-158 1095,-158 1295,-158 1295,-158 1301,-158 1307,-164 1307,-170 1307,-170 1307,-184 1307,-184 1307,-190 1301,-196 1295,-196\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1106\" y=\"-180.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=3, P_0.b=1</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1091\" y=\"-165.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7->10 -->\n",
|
||||
"<g id=\"edge15\" class=\"edge\">\n",
|
||||
"<title>7->10</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1416.95,-202.84C1441.44,-205.3 1467,-207.88 1491.64,-210.35\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1498.91,-211.09 1491.63,-213.52 1495.43,-210.74 1491.94,-210.38 1491.94,-210.38 1491.94,-210.38 1495.43,-210.74 1492.26,-207.25 1498.91,-211.09 1498.91,-211.09\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1047.19,-161.16C1056.56,-162.17 1066.06,-163.19 1075.47,-164.21\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1082.65,-164.99 1075.36,-167.37 1079.17,-164.61 1075.69,-164.23 1075.69,-164.23 1075.69,-164.23 1079.17,-164.61 1076.03,-161.1 1082.65,-164.99 1082.65,-164.99\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 11 -->\n",
|
||||
"<g id=\"node13\" class=\"node\">\n",
|
||||
"<title>11</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1636.93\" cy=\"-152.87\" rx=\"160.53\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1547.43\" y=\"-156.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=2, P_0.b=2</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1531.43\" y=\"-141.67\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M1295,-140C1295,-140 1095,-140 1095,-140 1089,-140 1083,-134 1083,-128 1083,-128 1083,-114 1083,-114 1083,-108 1089,-102 1095,-102 1095,-102 1295,-102 1295,-102 1301,-102 1307,-108 1307,-114 1307,-114 1307,-128 1307,-128 1307,-134 1301,-140 1295,-140\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1106\" y=\"-124.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=2, P_0.b=2</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1091\" y=\"-109.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7->11 -->\n",
|
||||
"<g id=\"edge16\" class=\"edge\">\n",
|
||||
"<title>7->11</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1416.95,-174.9C1441.44,-172.44 1467,-169.86 1491.64,-167.39\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1498.91,-166.65 1492.26,-170.49 1495.43,-167 1491.94,-167.36 1491.94,-167.36 1491.94,-167.36 1495.43,-167 1491.63,-164.22 1498.91,-166.65 1498.91,-166.65\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1047.19,-136.84C1056.56,-135.83 1066.06,-134.81 1075.47,-133.79\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1082.65,-133.01 1076.03,-136.9 1079.17,-133.39 1075.69,-133.77 1075.69,-133.77 1075.69,-133.77 1079.17,-133.39 1075.36,-130.63 1082.65,-133.01 1082.65,-133.01\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8->11 -->\n",
|
||||
"<g id=\"edge17\" class=\"edge\">\n",
|
||||
"<title>8->11</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1413.62,-130.51C1439.12,-133.07 1465.87,-135.76 1491.62,-138.35\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1498.85,-139.08 1491.57,-141.51 1495.37,-138.73 1491.89,-138.38 1491.89,-138.38 1491.89,-138.38 1495.37,-138.73 1492.2,-135.25 1498.85,-139.08 1498.85,-139.08\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1043.8,-104.79C1054.37,-105.93 1065.12,-107.09 1075.77,-108.24\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1082.75,-109 1075.45,-111.38 1079.27,-108.62 1075.79,-108.24 1075.79,-108.24 1075.79,-108.24 1079.27,-108.62 1076.13,-105.11 1082.75,-109 1082.75,-109\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 12 -->\n",
|
||||
"<g id=\"node14\" class=\"node\">\n",
|
||||
"<title>12</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1636.93\" cy=\"-62.87\" rx=\"155.63\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1547.43\" y=\"-66.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=1, P_0.b=3</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1534.93\" y=\"-51.67\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M1291,-66C1291,-66 1099,-66 1099,-66 1093,-66 1087,-60 1087,-54 1087,-54 1087,-40 1087,-40 1087,-34 1093,-28 1099,-28 1099,-28 1291,-28 1291,-28 1297,-28 1303,-34 1303,-40 1303,-40 1303,-54 1303,-54 1303,-60 1297,-66 1291,-66\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1106\" y=\"-50.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=1, P_0.b=3</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1095\" y=\"-35.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8->12 -->\n",
|
||||
"<g id=\"edge18\" class=\"edge\">\n",
|
||||
"<title>8->12</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1396.24,-99.04C1433.43,-93.43 1474.58,-87.22 1512.14,-81.55\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1519.11,-80.5 1512.66,-84.66 1515.65,-81.02 1512.19,-81.54 1512.19,-81.54 1512.19,-81.54 1515.65,-81.02 1511.72,-78.43 1519.11,-80.5 1519.11,-80.5\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1041.92,-73.96C1054.39,-71.75 1067.15,-69.49 1079.71,-67.26\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1086.66,-66.03 1080.32,-70.35 1083.21,-66.64 1079.77,-67.25 1079.77,-67.25 1079.77,-67.25 1083.21,-66.64 1079.22,-64.15 1086.66,-66.03 1086.66,-66.03\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 9->9 -->\n",
|
||||
"<g id=\"edge19\" class=\"edge\">\n",
|
||||
"<title>9->9</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1211,-51.33C1204.71,-62.28 1226.73,-71.74 1277.08,-71.74 1315.62,-71.74 1337.57,-66.19 1342.91,-58.68\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1343.15,-51.33 1346.07,-58.43 1343.04,-54.83 1342.92,-58.33 1342.92,-58.33 1342.92,-58.33 1343.04,-54.83 1339.78,-58.22 1343.15,-51.33 1343.15,-51.33\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M886.19,-38.04C879.64,-47.53 895.41,-56 933.5,-56 961.47,-56 977.4,-51.43 981.3,-45.25\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"980.81,-38.04 984.43,-44.81 981.05,-41.53 981.29,-45.02 981.29,-45.02 981.29,-45.02 981.05,-41.53 978.14,-45.24 980.81,-38.04 980.81,-38.04\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 10->10 -->\n",
|
||||
"<g id=\"edge20\" class=\"edge\">\n",
|
||||
"<title>10->10</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1571.35,-249.79C1565.98,-260.54 1587.84,-269.74 1636.93,-269.74 1674.52,-269.74 1696.14,-264.35 1701.8,-256.99\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1702.51,-249.79 1704.96,-257.06 1702.17,-253.27 1701.83,-256.75 1701.83,-256.75 1701.83,-256.75 1702.17,-253.27 1698.69,-256.44 1702.51,-249.79 1702.51,-249.79\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1148.05,-196.04C1141.56,-205.53 1157.21,-214 1195,-214 1222.75,-214 1238.57,-209.43 1242.43,-203.25\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1241.95,-196.04 1245.56,-202.81 1242.18,-199.53 1242.42,-203.02 1242.42,-203.02 1242.42,-203.02 1242.18,-199.53 1239.28,-203.23 1241.95,-196.04 1241.95,-196.04\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 13 -->\n",
|
||||
"<g id=\"node15\" class=\"node\">\n",
|
||||
"<title>13</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1991.84\" cy=\"-197.87\" rx=\"158.28\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1902.34\" y=\"-201.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=3, P_0.b=2</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1887.84\" y=\"-186.67\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M1551,-177C1551,-177 1355,-177 1355,-177 1349,-177 1343,-171 1343,-165 1343,-165 1343,-151 1343,-151 1343,-145 1349,-139 1355,-139 1355,-139 1551,-139 1551,-139 1557,-139 1563,-145 1563,-151 1563,-151 1563,-165 1563,-165 1563,-171 1557,-177 1551,-177\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1364\" y=\"-161.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=3, P_0.b=2</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1351\" y=\"-146.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 11->13 -->\n",
|
||||
"<g id=\"edge21\" class=\"edge\">\n",
|
||||
"<title>11->13</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1765.34,-169.12C1795.32,-172.94 1827.34,-177.02 1857.57,-180.88\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1864.8,-181.8 1857.46,-184.04 1861.33,-181.36 1857.86,-180.91 1857.86,-180.91 1857.86,-180.91 1861.33,-181.36 1858.26,-177.79 1864.8,-181.8 1864.8,-181.8\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1307.17,-137.07C1316.72,-138.45 1326.41,-139.85 1336,-141.23\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1342.96,-142.24 1335.58,-144.36 1339.5,-141.74 1336.04,-141.24 1336.04,-141.24 1336.04,-141.24 1339.5,-141.74 1336.49,-138.12 1342.96,-142.24 1342.96,-142.24\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 14 -->\n",
|
||||
"<g id=\"node16\" class=\"node\">\n",
|
||||
"<title>14</title>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1991.84\" cy=\"-107.87\" rx=\"158.28\" ry=\"26.74\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1902.34\" y=\"-111.67\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=2, P_0.b=3</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1887.84\" y=\"-96.67\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"<path fill=\"#ffffaa\" stroke=\"black\" d=\"M1551,-103C1551,-103 1355,-103 1355,-103 1349,-103 1343,-97 1343,-91 1343,-91 1343,-77 1343,-77 1343,-71 1349,-65 1355,-65 1355,-65 1551,-65 1551,-65 1557,-65 1563,-71 1563,-77 1563,-77 1563,-91 1563,-91 1563,-97 1557,-103 1551,-103\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1364\" y=\"-87.8\" font-family=\"Lato\" font-size=\"14.00\">P_0._pc=0, P_0.a=2, P_0.b=3</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"1351\" y=\"-72.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 11->14 -->\n",
|
||||
"<g id=\"edge22\" class=\"edge\">\n",
|
||||
"<title>11->14</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1765.34,-136.62C1795.32,-132.8 1827.34,-128.72 1857.57,-124.86\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1864.8,-123.94 1858.26,-127.95 1861.33,-124.38 1857.86,-124.83 1857.86,-124.83 1857.86,-124.83 1861.33,-124.38 1857.46,-121.7 1864.8,-123.94 1864.8,-123.94\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1307.17,-104.93C1316.72,-103.55 1326.41,-102.15 1336,-100.77\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1342.96,-99.76 1336.49,-103.88 1339.5,-100.26 1336.04,-100.76 1336.04,-100.76 1336.04,-100.76 1339.5,-100.26 1335.58,-97.64 1342.96,-99.76 1342.96,-99.76\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 12->12 -->\n",
|
||||
"<g id=\"edge23\" class=\"edge\">\n",
|
||||
"<title>12->12</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1571.59,-87.33C1565.37,-98.28 1587.15,-107.74 1636.93,-107.74 1675.05,-107.74 1696.75,-102.19 1702.03,-94.68\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1702.27,-87.33 1705.19,-94.43 1702.16,-90.83 1702.04,-94.33 1702.04,-94.33 1702.04,-94.33 1702.16,-90.83 1698.89,-94.23 1702.27,-87.33 1702.27,-87.33\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1148.05,-66.04C1141.56,-75.53 1157.21,-84 1195,-84 1222.75,-84 1238.57,-79.43 1242.43,-73.25\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1241.95,-66.04 1245.56,-72.81 1242.18,-69.53 1242.42,-73.02 1242.42,-73.02 1242.42,-73.02 1242.18,-69.53 1239.28,-73.23 1241.95,-66.04 1241.95,-66.04\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 13->13 -->\n",
|
||||
"<g id=\"edge24\" class=\"edge\">\n",
|
||||
"<title>13->13</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1926.26,-222.79C1920.89,-233.54 1942.75,-242.74 1991.84,-242.74 2029.42,-242.74 2051.05,-237.35 2056.71,-229.99\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"2057.42,-222.79 2059.87,-230.06 2057.07,-226.27 2056.73,-229.75 2056.73,-229.75 2056.73,-229.75 2057.07,-226.27 2053.6,-229.44 2057.42,-222.79 2057.42,-222.79\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1406.05,-177.04C1399.56,-186.53 1415.21,-195 1453,-195 1480.75,-195 1496.57,-190.43 1500.43,-184.25\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1499.95,-177.04 1503.56,-183.81 1500.18,-180.53 1500.42,-184.02 1500.42,-184.02 1500.42,-184.02 1500.18,-180.53 1497.28,-184.23 1499.95,-177.04 1499.95,-177.04\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 14->14 -->\n",
|
||||
"<g id=\"edge25\" class=\"edge\">\n",
|
||||
"<title>14->14</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1926.26,-132.79C1920.89,-143.54 1942.75,-152.74 1991.84,-152.74 2029.42,-152.74 2051.05,-147.35 2056.71,-139.99\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"2057.42,-132.79 2059.87,-140.06 2057.07,-136.27 2056.73,-139.75 2056.73,-139.75 2056.73,-139.75 2057.07,-136.27 2053.6,-139.44 2057.42,-132.79 2057.42,-132.79\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1406.05,-103.04C1399.56,-112.53 1415.21,-121 1453,-121 1480.75,-121 1496.57,-116.43 1500.43,-110.25\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1499.95,-103.04 1503.56,-109.81 1500.18,-106.53 1500.42,-110.02 1500.42,-110.02 1500.42,-110.02 1500.18,-106.53 1497.28,-110.23 1499.95,-103.04 1499.95,-103.04\"/>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"</svg>\n"
|
||||
],
|
||||
"text/plain": [
|
||||
"<spot.impl.kripke; proxy of <Swig Object of type 'std::shared_ptr< spot::kripke > *' at 0x7fb8c8761870> >"
|
||||
"<spot.impl.kripke; proxy of <Swig Object of type 'std::shared_ptr< spot::kripke > *' at 0x7f3030ca5150> >"
|
||||
]
|
||||
},
|
||||
"execution_count": 4,
|
||||
|
|
@ -785,22 +785,22 @@
|
|||
"<g id=\"node12\" class=\"node\">\n",
|
||||
"<title>10</title>\n",
|
||||
"<g id=\"a_node12\"><a xlink:title=\"P_0._pc=0, P_0.a=3, P_0.b=1 !"P_0.a < 2" & !"P_0.b > 1" & dead\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"346.45\" cy=\"-178\" rx=\"21.4\" ry=\"21.4\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"346.45\" y=\"-174.3\" font-family=\"Lato\" font-size=\"14.00\">10</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"346.45\" cy=\"-171\" rx=\"21.4\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"346.45\" y=\"-167.3\" font-family=\"Lato\" font-size=\"14.00\">10</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7->10 -->\n",
|
||||
"<g id=\"edge15\" class=\"edge\">\n",
|
||||
"<title>7->10</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M287.58,-151.21C297.06,-155.6 309.4,-161.31 320.25,-166.34\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"326.77,-169.35 319.1,-169.27 323.6,-167.88 320.42,-166.41 320.42,-166.41 320.42,-166.41 323.6,-167.88 321.74,-163.56 326.77,-169.35 326.77,-169.35\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M288.3,-149.99C297.59,-153.41 309.44,-157.76 319.94,-161.62\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"326.6,-164.07 318.94,-164.61 323.31,-162.86 320.03,-161.66 320.03,-161.66 320.03,-161.66 323.31,-162.86 321.12,-158.7 326.6,-164.07 326.6,-164.07\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 11 -->\n",
|
||||
"<g id=\"node13\" class=\"node\">\n",
|
||||
"<title>11</title>\n",
|
||||
"<g id=\"a_node13\"><a xlink:title=\"P_0._pc=0, P_0.a=2, P_0.b=2 !"P_0.a < 2" & "P_0.b > 1" & !dead\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"346.45\" cy=\"-117\" rx=\"21.4\" ry=\"21.4\"/>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"346.45\" cy=\"-117\" rx=\"21.4\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"346.45\" y=\"-113.3\" font-family=\"Lato\" font-size=\"14.00\">11</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
|
|
@ -808,29 +808,29 @@
|
|||
"<!-- 7->11 -->\n",
|
||||
"<g id=\"edge16\" class=\"edge\">\n",
|
||||
"<title>7->11</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M288.3,-138.01C297.45,-134.64 309.09,-130.37 319.47,-126.55\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"326.07,-124.12 320.58,-129.5 322.78,-125.33 319.5,-126.54 319.5,-126.54 319.5,-126.54 322.78,-125.33 318.41,-123.58 326.07,-124.12 326.07,-124.12\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M288.3,-138.01C297.59,-134.59 309.44,-130.24 319.94,-126.38\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"326.6,-123.93 321.12,-129.3 323.31,-125.14 320.03,-126.34 320.03,-126.34 320.03,-126.34 323.31,-125.14 318.94,-123.39 326.6,-123.93 326.6,-123.93\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8->11 -->\n",
|
||||
"<g id=\"edge17\" class=\"edge\">\n",
|
||||
"<title>8->11</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M288.3,-95.99C297.45,-99.36 309.09,-103.63 319.47,-107.45\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"326.07,-109.88 318.41,-110.42 322.78,-108.67 319.5,-107.46 319.5,-107.46 319.5,-107.46 322.78,-108.67 320.58,-104.5 326.07,-109.88 326.07,-109.88\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M288.3,-95.99C297.59,-99.41 309.44,-103.76 319.94,-107.62\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"326.6,-110.07 318.94,-110.61 323.31,-108.86 320.03,-107.66 320.03,-107.66 320.03,-107.66 323.31,-108.86 321.12,-104.7 326.6,-110.07 326.6,-110.07\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 12 -->\n",
|
||||
"<g id=\"node14\" class=\"node\">\n",
|
||||
"<title>12</title>\n",
|
||||
"<g id=\"a_node14\"><a xlink:title=\"P_0._pc=0, P_0.a=1, P_0.b=3 "P_0.a < 2" & "P_0.b > 1" & dead\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"346.45\" cy=\"-38\" rx=\"21.4\" ry=\"21.4\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"346.45\" y=\"-34.3\" font-family=\"Lato\" font-size=\"14.00\">12</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"346.45\" cy=\"-45\" rx=\"21.4\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"346.45\" y=\"-41.3\" font-family=\"Lato\" font-size=\"14.00\">12</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8->12 -->\n",
|
||||
"<g id=\"edge18\" class=\"edge\">\n",
|
||||
"<title>8->12</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M286.16,-79.97C296.46,-72.69 310.61,-62.66 322.51,-54.24\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"328.49,-50 324.6,-56.62 325.64,-52.03 322.78,-54.05 322.78,-54.05 322.78,-54.05 325.64,-52.03 320.96,-51.48 328.49,-50 328.49,-50\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M286.86,-80.89C297.05,-74.65 310.76,-66.25 322.36,-59.14\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"328.55,-55.35 324.23,-61.7 325.57,-57.18 322.58,-59.01 322.58,-59.01 322.58,-59.01 325.57,-57.18 320.94,-56.32 328.55,-55.35 328.55,-55.35\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 9->9 -->\n",
|
||||
"<g id=\"edge19\" class=\"edge\">\n",
|
||||
|
|
@ -841,56 +841,56 @@
|
|||
"<!-- 10->10 -->\n",
|
||||
"<g id=\"edge20\" class=\"edge\">\n",
|
||||
"<title>10->10</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M333.67,-195.44C330.34,-206.66 334.6,-217.45 346.45,-217.45 355.71,-217.45 360.33,-210.86 360.32,-202.63\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"359.23,-195.44 363.4,-201.89 359.75,-198.9 360.28,-202.36 360.28,-202.36 360.28,-202.36 359.75,-198.9 357.17,-202.84 359.23,-195.44 359.23,-195.44\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M334.07,-185.79C330.04,-196.42 334.16,-207 346.45,-207 356.05,-207 360.66,-200.54 360.3,-192.65\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"358.83,-185.79 363.38,-191.97 359.57,-189.21 360.3,-192.64 360.3,-192.64 360.3,-192.64 359.57,-189.21 357.22,-193.3 358.83,-185.79 358.83,-185.79\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 13 -->\n",
|
||||
"<g id=\"node15\" class=\"node\">\n",
|
||||
"<title>13</title>\n",
|
||||
"<g id=\"a_node15\"><a xlink:title=\"P_0._pc=0, P_0.a=3, P_0.b=2 !"P_0.a < 2" & "P_0.b > 1" & dead\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"425.34\" cy=\"-157\" rx=\"21.4\" ry=\"21.4\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"425.34\" y=\"-153.3\" font-family=\"Lato\" font-size=\"14.00\">13</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"425.34\" cy=\"-153\" rx=\"21.4\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"425.34\" y=\"-149.3\" font-family=\"Lato\" font-size=\"14.00\">13</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 11->13 -->\n",
|
||||
"<g id=\"edge21\" class=\"edge\">\n",
|
||||
"<title>11->13</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M366.06,-126.68C376.07,-131.89 388.56,-138.38 399.4,-144.02\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"405.9,-147.41 398.24,-146.97 402.8,-145.79 399.69,-144.18 399.69,-144.18 399.69,-144.18 402.8,-145.79 401.14,-141.38 405.9,-147.41 405.9,-147.41\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M365.67,-125.53C375.82,-130.28 388.6,-136.27 399.64,-141.44\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"406.25,-144.53 398.58,-144.41 403.08,-143.05 399.91,-141.56 399.91,-141.56 399.91,-141.56 403.08,-143.05 401.25,-138.71 406.25,-144.53 406.25,-144.53\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 14 -->\n",
|
||||
"<g id=\"node16\" class=\"node\">\n",
|
||||
"<title>14</title>\n",
|
||||
"<g id=\"a_node16\"><a xlink:title=\"P_0._pc=0, P_0.a=2, P_0.b=3 !"P_0.a < 2" & "P_0.b > 1" & dead\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"425.34\" cy=\"-78\" rx=\"21.4\" ry=\"21.4\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"425.34\" y=\"-74.3\" font-family=\"Lato\" font-size=\"14.00\">14</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"425.34\" cy=\"-81\" rx=\"21.4\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"425.34\" y=\"-77.3\" font-family=\"Lato\" font-size=\"14.00\">14</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 11->14 -->\n",
|
||||
"<g id=\"edge22\" class=\"edge\">\n",
|
||||
"<title>11->14</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M366.06,-107.56C376.07,-102.48 388.56,-96.15 399.4,-90.65\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"405.9,-87.35 401.08,-93.33 402.78,-88.94 399.66,-90.52 399.66,-90.52 399.66,-90.52 402.78,-88.94 398.23,-87.71 405.9,-87.35 405.9,-87.35\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M365.67,-108.47C375.82,-103.72 388.6,-97.73 399.64,-92.56\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"406.25,-89.47 401.25,-95.29 403.08,-90.95 399.91,-92.44 399.91,-92.44 399.91,-92.44 403.08,-90.95 398.58,-89.59 406.25,-89.47 406.25,-89.47\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 12->12 -->\n",
|
||||
"<g id=\"edge23\" class=\"edge\">\n",
|
||||
"<title>12->12</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M333.67,-55.44C330.34,-66.66 334.6,-77.45 346.45,-77.45 355.71,-77.45 360.33,-70.86 360.32,-62.63\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"359.23,-55.44 363.4,-61.89 359.75,-58.9 360.28,-62.36 360.28,-62.36 360.28,-62.36 359.75,-58.9 357.17,-62.84 359.23,-55.44 359.23,-55.44\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M334.07,-59.79C330.04,-70.42 334.16,-81 346.45,-81 356.05,-81 360.66,-74.54 360.3,-66.65\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"358.83,-59.79 363.38,-65.97 359.57,-63.21 360.3,-66.64 360.3,-66.64 360.3,-66.64 359.57,-63.21 357.22,-67.3 358.83,-59.79 358.83,-59.79\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 13->13 -->\n",
|
||||
"<g id=\"edge24\" class=\"edge\">\n",
|
||||
"<title>13->13</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M412.01,-174.03C408.25,-185.39 412.7,-196.45 425.34,-196.45 435.32,-196.45 440.19,-189.56 439.96,-181.08\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"438.68,-174.03 443.03,-180.35 439.31,-177.47 439.93,-180.92 439.93,-180.92 439.93,-180.92 439.31,-177.47 436.83,-181.48 438.68,-174.03 438.68,-174.03\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M412.45,-167.42C407.94,-178.17 412.24,-189 425.34,-189 435.58,-189 440.44,-182.39 439.93,-174.37\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"438.24,-167.42 442.96,-173.47 439.07,-170.82 439.9,-174.22 439.9,-174.22 439.9,-174.22 439.07,-170.82 436.84,-174.96 438.24,-167.42 438.24,-167.42\"/>\n",
|
||||
"</g>\n",
|
||||
"<!-- 14->14 -->\n",
|
||||
"<g id=\"edge25\" class=\"edge\">\n",
|
||||
"<title>14->14</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M412.01,-95.03C408.25,-106.39 412.7,-117.45 425.34,-117.45 435.32,-117.45 440.19,-110.56 439.96,-102.08\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"438.68,-95.03 443.03,-101.35 439.31,-98.47 439.93,-101.92 439.93,-101.92 439.93,-101.92 439.31,-98.47 436.83,-102.48 438.68,-95.03 438.68,-95.03\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M412.45,-95.42C407.94,-106.17 412.24,-117 425.34,-117 435.58,-117 440.44,-110.39 439.93,-102.37\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"438.24,-95.42 442.96,-101.47 439.07,-98.82 439.9,-102.22 439.9,-102.22 439.9,-102.22 439.07,-98.82 436.84,-102.96 438.24,-95.42 438.24,-95.42\"/>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"</svg>\n"
|
||||
|
|
@ -929,12 +929,12 @@
|
|||
"<!-- Generated by graphviz version 2.43.0 (0)\n",
|
||||
" -->\n",
|
||||
"<!-- Pages: 1 -->\n",
|
||||
"<svg width=\"734pt\" height=\"145pt\"\n",
|
||||
" viewBox=\"0.00 0.00 734.00 144.84\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(0.4587155963302752 0.4587155963302752) rotate(0) translate(4 312)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-312 1597.34,-312 1597.34,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"793.67\" y=\"-292.8\" font-family=\"Lato\" font-size=\"14.00\">t</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"785.67\" y=\"-277.8\" font-family=\"Lato\" font-size=\"14.00\">[all]</text>\n",
|
||||
"<svg width=\"734pt\" height=\"147pt\"\n",
|
||||
" viewBox=\"0.00 0.00 734.00 146.58\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
|
||||
"<g id=\"graph0\" class=\"graph\" transform=\"scale(0.4629629629629629 0.4629629629629629) rotate(0) translate(4 312)\">\n",
|
||||
"<polygon fill=\"white\" stroke=\"transparent\" points=\"-4,4 -4,-312 1578.34,-312 1578.34,4 -4,4\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"784.17\" y=\"-292.8\" font-family=\"Lato\" font-size=\"14.00\">t</text>\n",
|
||||
"<text text-anchor=\"start\" x=\"776.17\" y=\"-277.8\" font-family=\"Lato\" font-size=\"14.00\">[all]</text>\n",
|
||||
"<!-- I -->\n",
|
||||
"<!-- 0 -->\n",
|
||||
"<g id=\"node2\" class=\"node\">\n",
|
||||
|
|
@ -955,295 +955,295 @@
|
|||
"<g id=\"node3\" class=\"node\">\n",
|
||||
"<title>1</title>\n",
|
||||
"<g id=\"a_node3\"><a xlink:title=\"P_0._pc=0, P_0.a=1, P_0.b=0\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"339\" cy=\"-151\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"339\" y=\"-147.3\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"336\" cy=\"-151\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"336\" y=\"-147.3\" font-family=\"Lato\" font-size=\"14.00\">1</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->1 -->\n",
|
||||
"<g id=\"edge2\" class=\"edge\">\n",
|
||||
"<title>0->1</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M74.15,-125.65C122.18,-130.26 258.09,-143.32 313.76,-148.67\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"321.07,-149.37 313.8,-151.84 317.59,-149.04 314.1,-148.7 314.1,-148.7 314.1,-148.7 317.59,-149.04 314.4,-145.57 321.07,-149.37 321.07,-149.37\"/>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M73.97,-125.65C121.37,-130.25 255.31,-143.26 310.63,-148.63\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"317.9,-149.34 310.63,-151.8 314.41,-149 310.93,-148.66 310.93,-148.66 310.93,-148.66 314.41,-149 311.23,-145.53 317.9,-149.34 317.9,-149.34\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"92\" y=\"-150.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2 -->\n",
|
||||
"<g id=\"node4\" class=\"node\">\n",
|
||||
"<title>2</title>\n",
|
||||
"<g id=\"a_node4\"><a xlink:title=\"P_0._pc=0, P_0.a=0, P_0.b=1\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"339\" cy=\"-97\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"339\" y=\"-93.3\" font-family=\"Lato\" font-size=\"14.00\">2</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"336\" cy=\"-97\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"336\" y=\"-93.3\" font-family=\"Lato\" font-size=\"14.00\">2</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 0->2 -->\n",
|
||||
"<g id=\"edge3\" class=\"edge\">\n",
|
||||
"<title>0->2</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M72.28,-116.05C78.27,-113.31 85.3,-110.55 92,-109 171.56,-90.64 269.3,-92.99 313.83,-95.37\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"321.01,-95.78 313.85,-98.53 317.52,-95.58 314.03,-95.39 314.03,-95.39 314.03,-95.39 317.52,-95.58 314.21,-92.24 321.01,-95.78 321.01,-95.78\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"92\" y=\"-112.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M72.22,-115.5C78.2,-112.58 85.25,-109.63 92,-108 170.19,-89.11 266.56,-92.24 310.76,-95.08\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"317.9,-95.57 310.7,-98.23 314.4,-95.33 310.91,-95.09 310.91,-95.09 310.91,-95.09 314.4,-95.33 311.13,-91.95 317.9,-95.57 317.9,-95.57\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"92\" y=\"-111.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3 -->\n",
|
||||
"<g id=\"node5\" class=\"node\">\n",
|
||||
"<title>3</title>\n",
|
||||
"<g id=\"a_node5\"><a xlink:title=\"P_0._pc=0, P_0.a=2, P_0.b=0\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"622\" cy=\"-181\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"622\" y=\"-177.3\" font-family=\"Lato\" font-size=\"14.00\">3</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"616\" cy=\"-181\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"616\" y=\"-177.3\" font-family=\"Lato\" font-size=\"14.00\">3</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->3 -->\n",
|
||||
"<g id=\"edge4\" class=\"edge\">\n",
|
||||
"<title>1->3</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M356.65,-155.29C362.42,-156.65 368.97,-158.05 375,-159 455.67,-171.77 552.49,-177.71 596.76,-179.92\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"603.9,-180.27 596.76,-183.08 600.41,-180.1 596.91,-179.93 596.91,-179.93 596.91,-179.93 600.41,-180.1 597.06,-176.78 603.9,-180.27 603.9,-180.27\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"375\" y=\"-182.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M353.65,-155.29C359.42,-156.64 365.97,-158.04 372,-159 451.49,-171.62 546.85,-177.63 590.73,-179.88\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"597.81,-180.24 590.67,-183.04 594.32,-180.06 590.82,-179.89 590.82,-179.89 590.82,-179.89 594.32,-180.06 590.98,-176.74 597.81,-180.24 597.81,-180.24\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"372\" y=\"-182.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4 -->\n",
|
||||
"<g id=\"node6\" class=\"node\">\n",
|
||||
"<title>4</title>\n",
|
||||
"<g id=\"a_node6\"><a xlink:title=\"P_0._pc=0, P_0.a=1, P_0.b=1\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"622\" cy=\"-124\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"622\" y=\"-120.3\" font-family=\"Lato\" font-size=\"14.00\">4</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"616\" cy=\"-124\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"616\" y=\"-120.3\" font-family=\"Lato\" font-size=\"14.00\">4</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 1->4 -->\n",
|
||||
"<g id=\"edge5\" class=\"edge\">\n",
|
||||
"<title>1->4</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M356.67,-147.26C362.45,-146.07 368.99,-144.84 375,-144 455.83,-132.67 552.57,-127.13 596.79,-125.03\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"603.93,-124.7 597.08,-128.17 600.43,-124.87 596.93,-125.03 596.93,-125.03 596.93,-125.03 600.43,-124.87 596.79,-121.88 603.93,-124.7 603.93,-124.7\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"375\" y=\"-147.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M353.67,-147.26C359.45,-146.07 365.99,-144.85 372,-144 451.65,-132.8 546.93,-127.21 590.76,-125.07\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"597.84,-124.73 591,-128.21 594.34,-124.9 590.85,-125.06 590.85,-125.06 590.85,-125.06 594.34,-124.9 590.7,-121.92 597.84,-124.73 597.84,-124.73\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"372\" y=\"-147.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->4 -->\n",
|
||||
"<g id=\"edge6\" class=\"edge\">\n",
|
||||
"<title>2->4</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M357.04,-95.34C397.51,-91.89 502.27,-85.94 586,-107 590.56,-108.15 595.22,-109.92 599.6,-111.91\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"606.19,-115.13 598.51,-114.88 603.04,-113.59 599.9,-112.05 599.9,-112.05 599.9,-112.05 603.04,-113.59 601.28,-109.22 606.19,-115.13 606.19,-115.13\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"375\" y=\"-110.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M354.16,-95.12C394.41,-91.25 497.71,-84.46 580,-106 584.71,-107.23 589.5,-109.17 593.98,-111.33\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"600.25,-114.59 592.59,-114.16 597.14,-112.98 594.04,-111.36 594.04,-111.36 594.04,-111.36 597.14,-112.98 595.49,-108.57 600.25,-114.59 600.25,-114.59\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"372\" y=\"-109.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5 -->\n",
|
||||
"<g id=\"node7\" class=\"node\">\n",
|
||||
"<title>5</title>\n",
|
||||
"<g id=\"a_node7\"><a xlink:title=\"P_0._pc=0, P_0.a=0, P_0.b=2\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"622\" cy=\"-67\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"622\" y=\"-63.3\" font-family=\"Lato\" font-size=\"14.00\">5</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"616\" cy=\"-67\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"616\" y=\"-63.3\" font-family=\"Lato\" font-size=\"14.00\">5</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 2->5 -->\n",
|
||||
"<g id=\"edge7\" class=\"edge\">\n",
|
||||
"<title>2->5</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M352.98,-85.42C359.19,-80.63 367.01,-75.58 375,-73 452.97,-47.79 552.21,-56.99 597.07,-63.19\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"604.04,-64.19 596.67,-66.31 600.58,-63.69 597.11,-63.19 597.11,-63.19 597.11,-63.19 600.58,-63.69 597.56,-60.08 604.04,-64.19 604.04,-64.19\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"375\" y=\"-76.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M349.9,-84.93C356.1,-79.93 363.92,-74.68 372,-72 448.66,-46.56 546.55,-56.37 591.05,-62.94\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"598.22,-64.04 590.83,-66.09 594.76,-63.51 591.3,-62.98 591.3,-62.98 591.3,-62.98 594.76,-63.51 591.78,-59.86 598.22,-64.04 598.22,-64.04\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"372\" y=\"-75.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6 -->\n",
|
||||
"<g id=\"node8\" class=\"node\">\n",
|
||||
"<title>6</title>\n",
|
||||
"<g id=\"a_node8\"><a xlink:title=\"P_0._pc=0, P_0.a=3, P_0.b=0\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"909\" cy=\"-219\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"909\" y=\"-215.3\" font-family=\"Lato\" font-size=\"14.00\">6</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"899\" cy=\"-219\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"899\" y=\"-215.3\" font-family=\"Lato\" font-size=\"14.00\">6</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->6 -->\n",
|
||||
"<g id=\"edge8\" class=\"edge\">\n",
|
||||
"<title>3->6</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M638.26,-189.35C644.25,-192.25 651.28,-195.23 658,-197 738.81,-218.35 838.88,-220.06 883.98,-219.57\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"890.98,-219.47 884.03,-222.72 887.48,-219.52 883.99,-219.57 883.99,-219.57 883.99,-219.57 887.48,-219.52 883.94,-216.42 890.98,-219.47 890.98,-219.47\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"658\" y=\"-222.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M632.26,-189.34C638.25,-192.25 645.28,-195.22 652,-197 731.15,-217.97 829.09,-219.9 873.75,-219.52\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"880.96,-219.44 873.99,-222.67 877.46,-219.48 873.96,-219.52 873.96,-219.52 873.96,-219.52 877.46,-219.48 873.92,-216.37 880.96,-219.44 880.96,-219.44\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"652\" y=\"-222.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7 -->\n",
|
||||
"<g id=\"node9\" class=\"node\">\n",
|
||||
"<title>7</title>\n",
|
||||
"<g id=\"a_node9\"><a xlink:title=\"P_0._pc=0, P_0.a=2, P_0.b=1\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"909\" cy=\"-162\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"909\" y=\"-158.3\" font-family=\"Lato\" font-size=\"14.00\">7</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"899\" cy=\"-162\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"899\" y=\"-158.3\" font-family=\"Lato\" font-size=\"14.00\">7</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 3->7 -->\n",
|
||||
"<g id=\"edge9\" class=\"edge\">\n",
|
||||
"<title>3->7</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M639.97,-179.87C688.37,-176.64 827.19,-167.39 883.66,-163.62\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"890.75,-163.15 883.98,-166.76 887.26,-163.38 883.77,-163.62 883.77,-163.62 883.77,-163.62 887.26,-163.38 883.56,-160.47 890.75,-163.15 890.75,-163.15\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"658\" y=\"-181.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M634.15,-179.84C682.17,-176.59 818,-167.41 873.71,-163.64\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"880.71,-163.17 873.94,-166.78 877.22,-163.41 873.73,-163.64 873.73,-163.64 873.73,-163.64 877.22,-163.41 873.52,-160.5 880.71,-163.17 880.71,-163.17\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"652\" y=\"-181.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4->7 -->\n",
|
||||
"<g id=\"edge10\" class=\"edge\">\n",
|
||||
"<title>4->7</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M640.05,-123.31C681.02,-122.1 787.95,-121.65 873,-145 877.53,-146.24 882.18,-148.07 886.56,-150.06\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"893.14,-153.28 885.47,-153.04 890,-151.75 886.86,-150.21 886.86,-150.21 886.86,-150.21 890,-151.75 888.24,-147.38 893.14,-153.28 893.14,-153.28\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"660\" y=\"-148.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M634.08,-123.34C674.62,-122.23 779.52,-122.02 863,-145 867.53,-146.25 872.18,-148.07 876.56,-150.07\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"883.14,-153.29 875.47,-153.04 880,-151.75 876.85,-150.21 876.85,-150.21 876.85,-150.21 880,-151.75 878.24,-147.38 883.14,-153.29 883.14,-153.29\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"653.5\" y=\"-148.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8 -->\n",
|
||||
"<g id=\"node10\" class=\"node\">\n",
|
||||
"<title>8</title>\n",
|
||||
"<g id=\"a_node10\"><a xlink:title=\"P_0._pc=0, P_0.a=1, P_0.b=2\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"909\" cy=\"-105\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"909\" y=\"-101.3\" font-family=\"Lato\" font-size=\"14.00\">8</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"899\" cy=\"-105\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"899\" y=\"-101.3\" font-family=\"Lato\" font-size=\"14.00\">8</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 4->8 -->\n",
|
||||
"<g id=\"edge11\" class=\"edge\">\n",
|
||||
"<title>4->8</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M637.72,-114.47C643.75,-111.1 650.96,-107.72 658,-106 738.88,-86.25 838.92,-95.54 883.99,-101.43\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"890.99,-102.38 883.64,-104.56 887.53,-101.91 884.06,-101.44 884.06,-101.44 884.06,-101.44 887.53,-101.91 884.48,-98.32 890.99,-102.38 890.99,-102.38\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"660\" y=\"-109.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M631.72,-114.47C637.75,-111.1 644.96,-107.72 652,-106 731.23,-86.65 829.13,-95.61 873.77,-101.41\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"880.97,-102.38 873.61,-104.57 877.5,-101.92 874.03,-101.45 874.03,-101.45 874.03,-101.45 877.5,-101.92 874.45,-98.33 880.97,-102.38 880.97,-102.38\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"653.5\" y=\"-109.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5->8 -->\n",
|
||||
"<g id=\"edge12\" class=\"edge\">\n",
|
||||
"<title>5->8</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M639.81,-64.01C681.15,-57.41 790.41,-44.54 873,-76 879.5,-78.48 885.67,-82.68 890.97,-87.14\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"896.35,-92 889.05,-89.64 893.76,-89.65 891.16,-87.31 891.16,-87.31 891.16,-87.31 893.76,-89.65 893.27,-84.97 896.35,-92 896.35,-92\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"661.5\" y=\"-79.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M633.84,-64.02C674.75,-57.54 781.94,-45.09 863,-76 869.5,-78.48 875.67,-82.69 880.97,-87.14\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"886.35,-92 879.05,-89.65 883.75,-89.65 881.16,-87.31 881.16,-87.31 881.16,-87.31 883.75,-89.65 883.27,-84.97 886.35,-92 886.35,-92\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"655.5\" y=\"-79.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 9 -->\n",
|
||||
"<g id=\"node11\" class=\"node\">\n",
|
||||
"<title>9</title>\n",
|
||||
"<g id=\"a_node11\"><a xlink:title=\"P_0._pc=0, P_0.a=0, P_0.b=3\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"909\" cy=\"-18\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"909\" y=\"-14.3\" font-family=\"Lato\" font-size=\"14.00\">9</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"899\" cy=\"-18\" rx=\"18\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"899\" y=\"-14.3\" font-family=\"Lato\" font-size=\"14.00\">9</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 5->9 -->\n",
|
||||
"<g id=\"edge13\" class=\"edge\">\n",
|
||||
"<title>5->9</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M634.62,-53.7C640.88,-47.49 649.13,-40.67 658,-37 735.54,-4.93 838.06,-10.38 883.97,-15.03\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"891.1,-15.8 883.8,-18.18 887.62,-15.42 884.14,-15.05 884.14,-15.05 884.14,-15.05 887.62,-15.42 884.47,-11.92 891.1,-15.8 891.1,-15.8\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"661.5\" y=\"-40.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M628.63,-53.71C634.88,-47.5 643.13,-40.68 652,-37 728.1,-5.47 828.67,-10.59 874.02,-15.09\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"881.06,-15.83 873.77,-18.23 877.58,-15.46 874.1,-15.09 874.1,-15.09 874.1,-15.09 877.58,-15.46 874.43,-11.96 881.06,-15.83 881.06,-15.83\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"655.5\" y=\"-40.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 6->6 -->\n",
|
||||
"<g id=\"edge14\" class=\"edge\">\n",
|
||||
"<title>6->6</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M892.52,-226.96C874.8,-239.31 880.29,-255 909,-255 934.12,-255 941.46,-242.99 931.04,-231.71\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"925.48,-226.96 932.85,-229.11 928.14,-229.23 930.8,-231.51 930.8,-231.51 930.8,-231.51 928.14,-229.23 928.76,-233.9 925.48,-226.96 925.48,-226.96\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"803.5\" y=\"-258.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M882.5,-227.14C865.34,-239.46 870.84,-255 899,-255 923.64,-255 930.94,-243.1 920.88,-231.87\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"915.5,-227.14 922.84,-229.4 918.13,-229.45 920.75,-231.76 920.75,-231.76 920.75,-231.76 918.13,-229.45 918.67,-234.13 915.5,-227.14 915.5,-227.14\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"795\" y=\"-258.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 10 -->\n",
|
||||
"<g id=\"node12\" class=\"node\">\n",
|
||||
"<title>10</title>\n",
|
||||
"<g id=\"a_node12\"><a xlink:title=\"P_0._pc=0, P_0.a=3, P_0.b=1\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1199.45\" cy=\"-209\" rx=\"21.4\" ry=\"21.4\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"1199.45\" y=\"-205.3\" font-family=\"Lato\" font-size=\"14.00\">10</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1185.45\" cy=\"-201\" rx=\"21.4\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"1185.45\" y=\"-197.3\" font-family=\"Lato\" font-size=\"14.00\">10</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7->10 -->\n",
|
||||
"<g id=\"edge15\" class=\"edge\">\n",
|
||||
"<title>7->10</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M924.89,-170.6C930.95,-173.73 938.13,-176.99 945,-179 1024.72,-202.35 1123.6,-207.59 1170.82,-208.72\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1177.95,-208.87 1170.88,-211.87 1174.45,-208.8 1170.95,-208.72 1170.95,-208.72 1170.95,-208.72 1174.45,-208.8 1171.02,-205.58 1177.95,-208.87 1177.95,-208.87\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"945\" y=\"-211.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M915.77,-168.82C921.7,-171.12 928.56,-173.49 935,-175 1014.08,-193.49 1110.35,-198.84 1156.77,-200.38\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1163.79,-200.6 1156.69,-203.53 1160.29,-200.49 1156.79,-200.38 1156.79,-200.38 1156.79,-200.38 1160.29,-200.49 1156.89,-197.23 1163.79,-200.6 1163.79,-200.6\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"935\" y=\"-202.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 11 -->\n",
|
||||
"<g id=\"node13\" class=\"node\">\n",
|
||||
"<title>11</title>\n",
|
||||
"<g id=\"a_node13\"><a xlink:title=\"P_0._pc=0, P_0.a=2, P_0.b=2\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1199.45\" cy=\"-148\" rx=\"21.4\" ry=\"21.4\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"1199.45\" y=\"-144.3\" font-family=\"Lato\" font-size=\"14.00\">11</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1185.45\" cy=\"-147\" rx=\"21.4\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"1185.45\" y=\"-143.3\" font-family=\"Lato\" font-size=\"14.00\">11</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 7->11 -->\n",
|
||||
"<g id=\"edge16\" class=\"edge\">\n",
|
||||
"<title>7->11</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M927.18,-161.17C975.33,-158.83 1111.92,-152.2 1170.84,-149.34\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1177.96,-148.99 1171.12,-152.48 1174.46,-149.16 1170.96,-149.33 1170.96,-149.33 1170.96,-149.33 1174.46,-149.16 1170.81,-146.19 1177.96,-148.99 1177.96,-148.99\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"945\" y=\"-163.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M917.09,-161.01C922.79,-160.68 929.17,-160.32 935,-160 1015.39,-155.61 1110.38,-150.75 1156.51,-148.41\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1163.75,-148.04 1156.92,-151.54 1160.25,-148.22 1156.76,-148.4 1156.76,-148.4 1156.76,-148.4 1160.25,-148.22 1156.6,-145.25 1163.75,-148.04 1163.75,-148.04\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"935\" y=\"-163.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8->11 -->\n",
|
||||
"<g id=\"edge17\" class=\"edge\">\n",
|
||||
"<title>8->11</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M927,-104.96C967.88,-105.24 1074.6,-108.29 1160,-131 1164.44,-132.18 1169.03,-133.81 1173.42,-135.6\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1180.1,-138.49 1172.42,-138.6 1176.89,-137.1 1173.68,-135.71 1173.68,-135.71 1173.68,-135.71 1176.89,-137.1 1174.93,-132.82 1180.1,-138.49 1180.1,-138.49\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"948.5\" y=\"-134.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M917.03,-104.91C957.47,-105.07 1062.17,-107.81 1146,-130 1150.74,-131.25 1155.64,-133.02 1160.29,-134.95\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1166.88,-137.84 1159.2,-137.91 1163.67,-136.43 1160.47,-135.02 1160.47,-135.02 1160.47,-135.02 1163.67,-136.43 1161.73,-132.14 1166.88,-137.84 1166.88,-137.84\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"938.5\" y=\"-133.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 12 -->\n",
|
||||
"<g id=\"node14\" class=\"node\">\n",
|
||||
"<title>12</title>\n",
|
||||
"<g id=\"a_node14\"><a xlink:title=\"P_0._pc=0, P_0.a=1, P_0.b=3\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1199.45\" cy=\"-54\" rx=\"21.4\" ry=\"21.4\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"1199.45\" y=\"-50.3\" font-family=\"Lato\" font-size=\"14.00\">12</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1185.45\" cy=\"-60\" rx=\"21.4\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"1185.45\" y=\"-56.3\" font-family=\"Lato\" font-size=\"14.00\">12</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 8->12 -->\n",
|
||||
"<g id=\"edge18\" class=\"edge\">\n",
|
||||
"<title>8->12</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M924.85,-95.92C930.9,-92.61 938.09,-89.16 945,-87 1024.42,-62.24 1123.44,-56.05 1170.76,-54.51\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1177.9,-54.3 1170.99,-57.65 1174.4,-54.4 1170.9,-54.5 1170.9,-54.5 1170.9,-54.5 1174.4,-54.4 1170.81,-51.35 1177.9,-54.3 1177.9,-54.3\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"948.5\" y=\"-90.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M914.82,-95.85C920.87,-92.52 928.06,-89.08 935,-87 1013.02,-63.6 1110.16,-59.98 1156.85,-59.73\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1163.9,-59.71 1156.91,-62.88 1160.4,-59.72 1156.9,-59.73 1156.9,-59.73 1156.9,-59.73 1160.4,-59.72 1156.9,-56.58 1163.9,-59.71 1163.9,-59.71\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"938.5\" y=\"-90.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 9->9 -->\n",
|
||||
"<g id=\"edge19\" class=\"edge\">\n",
|
||||
"<title>9->9</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M892.52,-25.96C874.8,-38.31 880.29,-54 909,-54 934.12,-54 941.46,-41.99 931.04,-30.71\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"925.48,-25.96 932.85,-28.11 928.14,-28.23 930.8,-30.51 930.8,-30.51 930.8,-30.51 928.14,-28.23 928.76,-32.9 925.48,-25.96 925.48,-25.96\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"807\" y=\"-57.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M882.5,-26.14C865.34,-38.46 870.84,-54 899,-54 923.64,-54 930.94,-42.1 920.88,-30.87\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"915.5,-26.14 922.84,-28.4 918.13,-28.45 920.75,-30.76 920.75,-30.76 920.75,-30.76 918.13,-28.45 918.67,-33.13 915.5,-26.14 915.5,-26.14\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"799\" y=\"-57.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 10->10 -->\n",
|
||||
"<g id=\"edge20\" class=\"edge\">\n",
|
||||
"<title>10->10</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1180.52,-219.5C1165.3,-232.72 1171.6,-248.45 1199.45,-248.45 1223.59,-248.45 1231.54,-236.62 1223.3,-224.86\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1218.37,-219.5 1225.43,-222.52 1220.74,-222.08 1223.11,-224.65 1223.11,-224.65 1223.11,-224.65 1220.74,-222.08 1220.8,-226.79 1218.37,-219.5 1218.37,-219.5\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1093.95\" y=\"-252.25\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1166.79,-210.59C1151.77,-222.64 1157.99,-237 1185.45,-237 1209.04,-237 1216.96,-226.4 1209.19,-215.76\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1204.11,-210.59 1211.26,-213.38 1206.56,-213.08 1209.01,-215.58 1209.01,-215.58 1209.01,-215.58 1206.56,-213.08 1206.76,-217.79 1204.11,-210.59 1204.11,-210.59\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1081.45\" y=\"-240.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & !"P_0.b > 1" & dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 13 -->\n",
|
||||
"<g id=\"node15\" class=\"node\">\n",
|
||||
"<title>13</title>\n",
|
||||
"<g id=\"a_node15\"><a xlink:title=\"P_0._pc=0, P_0.a=3, P_0.b=2\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1489.34\" cy=\"-188\" rx=\"21.4\" ry=\"21.4\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"1489.34\" y=\"-184.3\" font-family=\"Lato\" font-size=\"14.00\">13</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1472.34\" cy=\"-185\" rx=\"21.4\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"1472.34\" y=\"-181.3\" font-family=\"Lato\" font-size=\"14.00\">13</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 11->13 -->\n",
|
||||
"<g id=\"edge21\" class=\"edge\">\n",
|
||||
"<title>11->13</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1221.15,-150.88C1272.09,-157.95 1403.52,-176.22 1460.89,-184.18\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1467.83,-185.15 1460.46,-187.31 1464.36,-184.67 1460.89,-184.19 1460.89,-184.19 1460.89,-184.19 1464.36,-184.67 1461.33,-181.07 1467.83,-185.15 1467.83,-185.15\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1238.9\" y=\"-185.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1206.94,-149.73C1257.24,-156.44 1386.88,-173.73 1443.82,-181.33\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1451.04,-182.29 1443.69,-184.49 1447.57,-181.83 1444.1,-181.37 1444.1,-181.37 1444.1,-181.37 1447.57,-181.83 1444.52,-178.24 1451.04,-182.29 1451.04,-182.29\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1224.9\" y=\"-182.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 14 -->\n",
|
||||
"<g id=\"node16\" class=\"node\">\n",
|
||||
"<title>14</title>\n",
|
||||
"<g id=\"a_node16\"><a xlink:title=\"P_0._pc=0, P_0.a=2, P_0.b=3\">\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1489.34\" cy=\"-94\" rx=\"21.4\" ry=\"21.4\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"1489.34\" y=\"-90.3\" font-family=\"Lato\" font-size=\"14.00\">14</text>\n",
|
||||
"<ellipse fill=\"#ffffaa\" stroke=\"black\" cx=\"1472.34\" cy=\"-98\" rx=\"21.4\" ry=\"18\"/>\n",
|
||||
"<text text-anchor=\"middle\" x=\"1472.34\" y=\"-94.3\" font-family=\"Lato\" font-size=\"14.00\">14</text>\n",
|
||||
"</a>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"<!-- 11->14 -->\n",
|
||||
"<g id=\"edge22\" class=\"edge\">\n",
|
||||
"<title>11->14</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1219.78,-140.15C1225.83,-137.91 1232.57,-135.64 1238.9,-134 1318.08,-113.44 1414.3,-101.6 1460.69,-96.7\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1467.7,-95.97 1461.06,-99.82 1464.22,-96.33 1460.74,-96.69 1460.74,-96.69 1460.74,-96.69 1464.22,-96.33 1460.41,-93.56 1467.7,-95.97 1467.7,-95.97\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1238.9\" y=\"-137.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1204.98,-139.37C1211.22,-137.04 1218.28,-134.66 1224.9,-133 1302.93,-113.48 1397.78,-103.84 1443.73,-100.04\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1450.94,-99.45 1444.22,-103.16 1447.46,-99.74 1443.97,-100.02 1443.97,-100.02 1443.97,-100.02 1447.46,-99.74 1443.71,-96.88 1450.94,-99.45 1450.94,-99.45\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1224.9\" y=\"-136.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & "P_0.b > 1" & !dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 12->12 -->\n",
|
||||
"<g id=\"edge23\" class=\"edge\">\n",
|
||||
"<title>12->12</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1180.52,-64.5C1165.3,-77.72 1171.6,-93.45 1199.45,-93.45 1223.59,-93.45 1231.54,-81.62 1223.3,-69.86\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1218.37,-64.5 1225.43,-67.52 1220.74,-67.08 1223.11,-69.65 1223.11,-69.65 1223.11,-69.65 1220.74,-67.08 1220.8,-71.79 1218.37,-64.5 1218.37,-64.5\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1097.45\" y=\"-97.25\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1166.79,-69.59C1151.77,-81.64 1157.99,-96 1185.45,-96 1209.04,-96 1216.96,-85.4 1209.19,-74.76\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1204.11,-69.59 1211.26,-72.38 1206.56,-72.08 1209.01,-74.58 1209.01,-74.58 1209.01,-74.58 1206.56,-72.08 1206.76,-76.79 1204.11,-69.59 1204.11,-69.59\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1085.45\" y=\"-99.8\" font-family=\"Lato\" font-size=\"14.00\">"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 13->13 -->\n",
|
||||
"<g id=\"edge24\" class=\"edge\">\n",
|
||||
"<title>13->13</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1470.42,-198.5C1455.19,-211.72 1461.5,-227.45 1489.34,-227.45 1513.49,-227.45 1521.44,-215.62 1513.2,-203.86\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1508.27,-198.5 1515.33,-201.52 1510.64,-201.08 1513.01,-203.65 1513.01,-203.65 1513.01,-203.65 1510.64,-201.08 1510.69,-205.79 1508.27,-198.5 1508.27,-198.5\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1385.34\" y=\"-231.25\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1453.68,-194.59C1438.67,-206.64 1444.89,-221 1472.34,-221 1495.94,-221 1503.85,-210.4 1496.08,-199.76\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1491.01,-194.59 1498.16,-197.38 1493.46,-197.08 1495.91,-199.58 1495.91,-199.58 1495.91,-199.58 1493.46,-197.08 1493.66,-201.79 1491.01,-194.59 1491.01,-194.59\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1370.34\" y=\"-224.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"</g>\n",
|
||||
"<!-- 14->14 -->\n",
|
||||
"<g id=\"edge25\" class=\"edge\">\n",
|
||||
"<title>14->14</title>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1470.42,-104.5C1455.19,-117.72 1461.5,-133.45 1489.34,-133.45 1513.49,-133.45 1521.44,-121.62 1513.2,-109.86\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1508.27,-104.5 1515.33,-107.52 1510.64,-107.08 1513.01,-109.65 1513.01,-109.65 1513.01,-109.65 1510.64,-107.08 1510.69,-111.79 1508.27,-104.5 1508.27,-104.5\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1385.34\" y=\"-137.25\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"<path fill=\"none\" stroke=\"black\" d=\"M1453.68,-107.59C1438.67,-119.64 1444.89,-134 1472.34,-134 1495.94,-134 1503.85,-123.4 1496.08,-112.76\"/>\n",
|
||||
"<polygon fill=\"black\" stroke=\"black\" points=\"1491.01,-107.59 1498.16,-110.38 1493.46,-110.08 1495.91,-112.58 1495.91,-112.58 1495.91,-112.58 1493.46,-110.08 1493.66,-114.79 1491.01,-107.59 1491.01,-107.59\"/>\n",
|
||||
"<text text-anchor=\"start\" x=\"1370.34\" y=\"-137.8\" font-family=\"Lato\" font-size=\"14.00\">!"P_0.a < 2" & "P_0.b > 1" & dead</text>\n",
|
||||
"</g>\n",
|
||||
"</g>\n",
|
||||
"</svg>\n"
|
||||
|
|
@ -1370,7 +1370,7 @@
|
|||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython3",
|
||||
"version": "3.7.5"
|
||||
"version": "3.8.2"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -334,6 +334,7 @@ assert dot == """digraph "" {
|
|||
rankdir=LR
|
||||
label="Inf(2) | (Inf(1) & Fin(0))\\n[Rabin-like 2]"
|
||||
labelloc="t"
|
||||
node [shape="box",style="rounded",width="0.5"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> 0
|
||||
0 [label="0 (0)"]
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue