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