Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
graphviz dot code: ```dot digraph G { A [ label = "Does the message contain\ncode snippets derived\nfrom real code?"] A -> B [ label = "Yes"] A -> C [ label = "No"] B [ label = "Are there multiple\nsnippets that may apply?"] B -> "Guess" [ label = "Yes" ] B -> D [ label = "No" ] D [ label = "Are there situations\nwhere the snippet is plain wrong?"] D -> E [ label = "Yes" ] D -> "Suggestion" [ label = "No" ] E [ label = "Can you detect those\nsituations programmatically?"] E -> G [ label = "Yes" ] E -> "Guess" [ label = "No" ] G [ label = "Suggestion where correct,\nGuess or no code hint otherwise"] C [ label = "Is the message reasonably short?"] C -> "Note" [ label = "Yes" ] C -> "Help" [ label = "No" ] } ```
- Loading branch information