Jacob Williams
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...
FORD is giving this warning: ``` Warning: Including other files in project file metadata is deprecated and will stop working in a future release. preprocessor: {!.PREPROCESSOR!} ```
See, for example, this job: https://github.com/jacobwilliams/json-fortran/actions/runs/9476441364/job/26109326806 > {'detail': ErrorDetail(string='Rate limit reached. Please upload with the Codecov repository upload token to resolve issue. Expected time to availability: 1505s.', code='throttled')}{'detail': ErrorDetail(string='Rate limit...
See #563. Valgrind is showing a memory leak for code with the form `f = json_file(...)`. It is not clear if this is a compiler bug in gfortran or some...