Last active
November 8, 2017 00:29
-
-
Save aldrinmartoq/6282d4c18e2b77d841ec0ee50d7ffdb0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/vnd.graphviz" id="graphviz"> | |
digraph G { | |
"realizar solicitud de compra" [shape=box]; | |
"analizar presupuesto" [shape=box]; | |
"realizar informe caso" [shape=box]; | |
"tomar medidas" [shape=box]; | |
"realizar cotización" [shape=box]; | |
"inicio" -> | |
"realizar solicitud de compra" -> | |
"analizar presupuesto" -> | |
"¿presupuesto suficiente?" -> | |
"realizar informe caso" -> | |
"tomar medidas" -> | |
"¿se aprueba solicitud?" -> | |
"realizar cotización" | |
"¿presupuesto suficiente?" -> | |
"realizar cotización" | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment