* Update a PathModel object with a new value index * Note: The calling parameter is modified in place. * * @param {PathModel} pathModel * @param {Number} valueInd * @param {Number} count
(pathModel, valueInd, count)
| 355 | * @param {Number} count |
| 356 | */ |
| 357 | function updatePathModel(pathModel, valueInd, count) { |
| 358 | pathModel.valueInds.push(valueInd); |
| 359 | pathModel.count += count; |
| 360 | } |
| 361 | |
| 362 | // Unique calculations |
| 363 | // =================== |
no outgoing calls
no test coverage detected
searching dependent graphs…