Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. documentclass[border=10pt]{standalone}
  2. usepackage{amsmath}
  3. usepackage{tikz}
  4. usetikzlibrary{calc,arrows,decorations.pathmorphing,positioning}
  5. tikzset{zz/.style={thick,->,
  6. line join=round,
  7. decorate, decoration={
  8. zigzag,
  9. segment length=4,
  10. amplitude=2,post=lineto,
  11. post length=4pt}
  12. }}
  13. begin{document}
  14. begin{tikzpicture}
  15. node (top) at (0,0) {$mathbf{v}_{init},epsilon$};
  16. node[below= 1cm of top](mid) {$mathbf{v},sigma$};
  17. node[below= 2cm of top](bottom) {$mathbf{v}',sigma'$};
  18. node [below=2.5 of top](bb){};
  19. draw[zz] (top) -- (mid);
  20. draw[zz] (mid) -- node[midway,red,left]{$(mathbf{u},rho)$} (bottom);
  21. draw [red,thick]($(bb)+(-0.5cm,0)$)-- ($(bb)+(0.5cm,0)$) node[text width=5cm,right]()
  22. {if $
  23. begin{cases}
  24. mathbf{v} le mathbf{v}'\
  25. sigma le_{text{prefix}} rho, text{for all} (mathbf{u},rho)
  26. end{cases}
  27. $};
  28. draw[dashed] (top) -- ++(-3,-3);
  29. draw[dashed] (top) -- ++(3,-3);
  30. end{tikzpicture}
  31.  
  32. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement