ift7020-notes-de-cours/composantsfortementconnexes.dot

23 lines
241 B
Text
Raw Permalink Normal View History

2018-04-24 01:15:01 +00:00
digraph {
// rankdir=LR;
subgraph cluster_comp0{
a->b;
e->a;
b->e;
}
subgraph cluster_comp1{
f->g;
g->f;
}
subgraph cluster_comp2{
c->d;
d->c;
d->h;
h->d;
}
b->c;
e->f;
c->g;
h->g;
}