Abel Heinsbroek
Abel Heinsbroek
Ah, I forgot that you also need to add `interpolate: true` To your dataset configuration
You need to add it to your datasets: ```javascript options: { ... data: { datasets: [ {color: ..., data:..., interpolate: true} ] } ... } ```
Hi Luke, Agreed, the source of the performance issues lies in the overhead of translating API calls from other languages, i.e. ctypes or wasm bindings, not in the way EPANET...
Thanks Lew, I've changed the name of the new functions. I've done some more testing with the new methods: ```python from timeit import Timer import epynet net = epynet.Network('demo.inp') net.solve()...
One possible improvement would be to send an array with indices and only returning the requested node/link indices, or, if an empty array is passed, return all values for all...