Ben Cumming

Results 19 comments of Ben Cumming

I have the same issue on Arch Linux. Note that the other examples build, and it is only `example3` that fails this way. Here is the full compile line and...

Thanks for the proposal @antonf. I feel that refactoring to use `std::experimental::simd` is impractical while not part of the standard. * it is available only in gcc 11, while the...

There are two ways to work directly with morphologies 1. an interface for mutating the morphology, e.g. `morphology::apply_isometry(const isometry&)` 2. a non-mutating functional interface, e.g. `morphology apply_isometry(const morphology&, const isometry&);`...

What does "sanitize the input" mean in this context? I.e. which invariant are you trying to assert? As @halfflat has pointed out, two cells based on the same morphology with...

I propose adding a callback slot on each epoch (including at `t=0`) that takes as arguments information like: current time, start time, end time, simulation time, number of spikes, etc)....

@jlubo try out #1873 and give your feedback.

I am in favor of adding `fmt` as a dependency. It is a very solid library, small footprint, and certainly better than our roll-your-own solution.

Such constraints are not entirely compatible with the cable cell model, which is based on the cable equation. Instead of coercing the cable cell model to implement cell models like...

I left this comment on a PR, and I post it here because it is relevant. I find the rationale in the document a little bit difficult to follow, because...

The requirements for random generators for stochastic processes, where there are multiple instances of processes on multiple cells, are that the generator: 1. can be seeded properly 2. can be...