16 lines
187 B
Plaintext
16 lines
187 B
Plaintext
graph g {
|
|
node [ shape="circle" ];
|
|
{
|
|
rank="same";
|
|
1;
|
|
3;
|
|
5;
|
|
6;
|
|
}
|
|
|
|
2 -- 1 -- 4;
|
|
2 -- 3 -- 4;
|
|
2 -- 5 -- 4;
|
|
2 -- 6 -- 4;
|
|
}
|