Jacob Williams

Results 107 issues of Jacob Williams

Latest version is [2021-05-12](http://www.iausofa.org).

Can use GitHub Actions for CI (run the tests, deploy documentation, etc.)

Just wanted to put this comment here: https://fortran-lang.discourse.group/t/is-there-a-good-fortran-package-for-sde-dde-and-ode/1756/49 > You could relatively easily rewrite the basic solvers in Fortran. That said, Fortran isn’t powerful enough to easily deal with things...

FYI I've refactored the Fortran code to modern standards, and you can find it here if you are interested: https://github.com/jacobwilliams/radbelt Your Python version is very inefficient, I believe because it...

In `SHELLG` we have a do loop that goes from 3 to 3333: ```fortran DO 3 N=3,3333 C*****CORRECTOR (FIELD LINE TRACING) P(1,N)=P(1,N-1)+STEP12*(5.*P(4,N)+8.*P(4,N-1)-P(4,N-2)) P(2,N)=P(2,N-1)+STEP12*(5.*P(5,N)+8.*P(5,N-1)-P(5,N-2)) ... ``` Note that `P(1,N)`, but P...

Has any thought been giving to make a `conda-forge` package for StarPU? It seems like most or all of the dependencies are already available there, so it should be possible....

Is support for Apple Silicon processors planned or possible? Currently, I get this error if I try to compile on an Apple M1 system: ``` checking build system type... Invalid...

question