(value)
| 427 | connectionSlider.max = String(sliderMax); |
| 428 | |
| 429 | const syncConnectionUi = (value) => { |
| 430 | const normalized = Number.isFinite(value) ? value : neuralScene.options.maxConnectionsPerNeuron; |
| 431 | connectionSlider.value = String(normalized); |
| 432 | connectionValue.textContent = `${normalized}`; |
| 433 | }; |
| 434 | |
| 435 | const applyConnectionLimit = (rawValue, { emit = true } = {}) => { |
| 436 | let parsed = Number.parseInt(rawValue, 10); |
no outgoing calls
no test coverage detected