| 7 | map<char, go_node*> next; |
| 8 | out_node *out; go_node *fail; |
| 9 | go_node() { out = NULL; fail = NULL; } }; |
| 10 | go_node *go; |
| 11 | aho_corasick(vector<string> keywords) { |
| 12 | go = new go_node(); |
nothing calls this directly
no outgoing calls
no test coverage detected