| 27 | CountMinSketch numCurrent, numTotal; |
| 28 | |
| 29 | NormalCore(int numRow, int numColumn): |
| 30 | index(new int[numRow]), |
| 31 | numCurrent(numRow, numColumn), |
| 32 | numTotal(numCurrent) { } |
| 33 | |
| 34 | virtual ~NormalCore() { |
| 35 | delete[] index; |
nothing calls this directly
no outgoing calls
no test coverage detected