(final Comparator<T> comp, final int dim)
| 14 | private final SortedMap<T,double[]> counts; |
| 15 | |
| 16 | public CountMapV(final Comparator<T> comp, final int dim) { |
| 17 | this.dim = dim; |
| 18 | counts = new TreeMap<T,double[]>(comp); |
| 19 | } |
| 20 | |
| 21 | public int dim() { |
| 22 | return dim; |
nothing calls this directly
no outgoing calls
no test coverage detected