//AT&T GraphViz file
//Render using http://tsadev.speciesanalyst.net/graphviz/dot.php

digraph search
{
  start -> Filter;
  Filter -> Parse_Filter;
  Parse_Filter -> Native_Query;
  Native_Query -> Match_Count;
  Match_Count -> RSID;
  Filter -> RSID;
  RSID -> end;

  start [shape=Mdiamond];
  end [shape=Msquare];
}