Paweł Biernat

Results 31 comments of Paweł Biernat

I tried building a docker image basing on the official julia [image](https://hub.docker.com/_/julia/) by simply calling `Pkg.add("Cxx")` but the build time of the patched llvm exceeds the time limitations on docker...

@blegat have you managed to circumvent/fix this bug?

That's a pity. I had to compile julia from source to get this package to work.

We haven't planned for this in #49, but we should keep this in mind as a long term goal (after we merge #49). I think we should close this for...

This equation is [stiff](https://en.wikipedia.org/wiki/Stiff_equation). Try a stiff solver (e.g. `ode23s` or `DASSL.jl`) instead, both can solve your problem very quickly. EDIT: as a plan for a distant future we should...

Also, equation by @galbarel is unrelated to the original issue (there is no backward time integration). For a temporary remedy to the original issue you might want to take a...

@acroy, that would be an even better approach. Any ideas on how such type should look like? What is the bare minimum for returned data and what is just a...

We could add an option whether to generate `Results` type at all, if it would turn out to generate an overhead. On the other hand, this approach would lead to...

One more thing, should the iterator version of the solver also return `Results` but containing just a single step?

This seems to be a hot season for PRs, any thoughts on iterator versions of solvers? I am willing to rebase this PR to the current master if anyone is...