Arnoud Delissen

Results 8 issues of Arnoud Delissen

Solutions are either the use of multi-threading, or a different graphical backend

Variables that are not input signals but are in the expression string can be detected on initialization. An error should be thrown in this case.

The `PyPardisoSolver` object loads the MKL library on each instance and needs to be released manually by the user, using `free_memory(everything=True)`. If this is not done, memory is leaked and...

**Idea:** Change the way `Module`s are added to a function `Network`. Current syntax is: ```python fn = pym.Network() sig3 = fn.append(pym.Module1([sig1, sig2], option1, option2='foo')) ``` There is a couple issues...

enhancement

For the `PlotDomain` module, it would be nice to also be able to show a deformed mesh. For this we need to implement a plot method in `VoxelDomain`. It is...

Basically there are two issues remaining with response arguments: 1) Modules don't support keyword arguments in the `response()`, but only positional arguments. This is due to the inconvenience of constructing...

enhancement

I ran into an issue where passing the `out` argument raises the index error below, while the `numpy` version of `einsum` does not raise this error. The issue only occurs...