Jacob Williams

Results 69 comments of Jacob Williams

I think it may have been a change in gcc 8.

I am happy to help (but won't have time for a couple of weeks).

The current version works for me on Windows with intel but I have to make one change. In Compiler.py, change: ``` self.modsw = '-module ' ``` to ``` self.modsw =...

It would be nice to have Windows support. :) The first issue is easily fixed I think like this: ```python if platform.system()=='Windows': self.modsw = '/module:' else: self.modsw = '-module '...

FYI: pure Fortran gif (even animated) library here: https://github.com/jacobwilliams/FGIF

I also agree that we shouldn't re-implement rock solid libs written in other languages (I was also thinking of something like `libcurl`). The `stdlib` CMake project needs to be set...

FYI: there are applications that require time computations to be more accurate than 1 millisecond.

For a lot of orbit computations we will use ephemeris time (a count of seconds since 1/1/2000). As a double precision number, that gives around 1 microsecond precision for the...

I wonder if this might be a use case for parameterized derived types (I confess I've never found a use case before)?: ```fortran type :: datetime(sec_precision) integer,len :: sec_precision =...

Another FYI: the IAU SOFA library has some routines for time computations. http://www.iausofa.org