(int n)
| 37 | int size; // of prefix of |dense| that is logically populated |
| 38 | |
| 39 | Queue(int n) { |
| 40 | this.sparse = new int[n]; |
| 41 | this.densePcs = new int[n]; |
| 42 | this.denseThreads = new Thread[n]; |
| 43 | } |
| 44 | |
| 45 | boolean contains(int pc) { |
| 46 | int j = sparse[pc]; |
nothing calls this directly
no outgoing calls
no test coverage detected