Advertisement
Guest User

Untitled

a guest
Oct 6th, 2013
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 2.99 KB | None | 0 0
  1. digraph bleah {
  2.  
  3.         why [label="Why do you\nwant to make\na flowchart?",shape=hexagon,fontsize=17];
  4.         subgraph reasons {
  5.                 rank=same;
  6.                 node [shape=oval];
  7.                 karma [label="I just want\nto get karma"];
  8.                 money [label="I just got enough\nmoney to buy\nflowchart software!"];
  9.                 like [label="I like flowcharts"];
  10.                 hate [label="I hate\npeople"];
  11.                 awe [label="I want to do\nawesome things"];
  12.                 cool [label="All the cool\nkids are doing it"];
  13.         };
  14.  
  15.         subgraph to_reader {
  16.                 node [shape=box];
  17.                 funny [label="Are you funny?"];
  18.                 funny_real [label="Are you really?"];
  19.                 money_real [label="Did you really?"];
  20.                 watermark [label="Do you care\nabout watermarks?"];
  21.                 like_really [label="Do you really?"];
  22.                 smartdraw [label=<Use SmartDraw&reg;>];
  23.                 hangout [label="Wanna hang out sometime?\nWe can talk about Tufte\nand data visualization\n and stuff."];
  24.                 jpeg [label="Save as JPEG"];
  25.                 donotwant [label="You may want\nto reconsider\nmaking a flowchart"];
  26.                 graphviz [label="Use Graphviz"];
  27.                 durdle [label="Durdle"];
  28.                 punctuate [label="Punctaute all\nthe things!!!"];
  29.                 befunny [label="Make fun of decks"];
  30.                 png [label="Save as PNG"];
  31.                 unless [label="Unless you're\nsome sort of\nmisanthrope"];
  32.         };
  33.  
  34.         subgraph from_reader {
  35.                 node [shape=oval];
  36.                 shutup [label="Shutup and\ntell me things!"];
  37.                 thatsit [label="That's it?"];
  38.                 people [label="I like people"];
  39.         };
  40.  
  41.         subgraph yes_nodes {
  42.                 node [label="Yes",shape=oval];
  43.                 funny_yes;
  44.                 funny_real_yes;
  45.                 like_yes;
  46.                 money_yes;
  47.                 watermark_yes;
  48.         };
  49.  
  50.         subgraph no_nodes {
  51.                 node [label="No",shape=oval];
  52.                 funny_no;
  53.                 funny_real_no;
  54.                 like_no;
  55.                 money_no;
  56.                 watermark_no;
  57.         }
  58.  
  59.         why -> {karma; money; like; hate; awe; cool};
  60.  
  61.         karma -> funny -> {funny_yes; funny_no};
  62.         funny_no -> durdle;
  63.         funny_yes -> funny_real -> {funny_real_yes; funny_real_no};
  64.         funny_real_no -> punctuate;
  65.         funny_real_yes -> befunny;
  66.  
  67.         money -> money_real -> {money_yes; money_no};
  68.         money_no -> watermark -> {watermark_yes; watermark_no};
  69.         {money_yes; watermark_no} -> smartdraw;
  70.         {money_no; watermark_yes} -> graphviz;
  71.  
  72.         hate -> jpeg;
  73.  
  74.         like -> like_really -> {like_yes; like_no};
  75.         like_yes -> hangout;
  76.         like_no -> donotwant;
  77.  
  78.         {awe; cool} -> donotwant -> shutup -> png -> thatsit -> unless -> {hate; people};
  79.         people -> png;
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement