File: missing-objects-fig-bloom-set.dot

package info (click to toggle)
bup 0.33.9-1.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,712 kB
  • sloc: python: 15,897; sh: 5,764; ansic: 2,965; pascal: 669; makefile: 21
file content (27 lines) | stat: -rw-r--r-- 725 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

digraph "bloom set" {
  rankdir=LR;
  // splines=ortho;
  bgcolor="transparent";
  ranksep=2; // This affects h* -> bloom distance
  node [shape=box];

  h1:e -> bloom2:b1:w
  h1:e -> bloom2:b3:w
  h2:e -> bloom2:b3:w
  h2:e -> bloom2:b4:w

  bloom2 [shape=plain; label=<
          <table border="0" cellborder="1" cellspacing="0">
          <tr><td>bit</td></tr>
          <tr><td>0</td></tr>
          <tr><td port="b1" bgcolor="lime">1</td></tr>
          <tr><td>2</td></tr>
          <tr><td port="b3" bgcolor="lime">3</td></tr>
          <tr><td port="b4" bgcolor="lime">4</td></tr>
          <tr><td>...</td></tr>
          </table>>];

  h1 [label="something (blob ae0...)"];
  h2 [label="another (tree 273...)"];
}