| 19 | |
| 20 | // A logical thread in the NFA. |
| 21 | private static class Thread { |
| 22 | Thread(int n) { |
| 23 | this.cap = new int[n]; |
| 24 | } |
| 25 | |
| 26 | int[] cap; |
| 27 | Inst inst; |
| 28 | } |
| 29 | |
| 30 | // A queue is a 'sparse array' holding pending threads of execution. See: |
| 31 | // research.swtch.com/2008/03/using-uninitialized-memory-for-fun-and.html |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…