Increments the pre- and inc-values of all tuples starting from the given index. @param from start index @param with increment value
(final int from, final int with)
| 270 | * @param with increment value |
| 271 | */ |
| 272 | private void increment(final int from, final int with) { |
| 273 | for(int i = from; i < rows; ++i) { |
| 274 | pres[i] += with; |
| 275 | incs[i] += with; |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | /** |
| 280 | * Returns the size of the map. |