blob: 365163fc2c42b7cb8c118463793ff3a53c3f00b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
digraph steps {
node [shape=plaintext, fontname="helvetica"];
graph [fontname = "helvetica"];
edge [fontname = "helvetica"];
"release_export_expanded.json" -> "clustered";
"clustered" -> "verified";
"verified" -> "manual review";
"manual review" -> "discover pattern";
"manual review" -> "fix codepath";
"fix codepath" -> "add verification test case";
"discover pattern" -> "add verification test case";
"discover pattern" -> "fix codepath";
"fix codepath" -> "discover pattern";
"add verification test case" -> "clustered";
}
|