Marshall Ward

Results 144 comments of Marshall Ward

No worries, always better to ask than to not ask.

The parser rewrite in the `newparser` branch should resolve this issue when finished.

Yes, a good idea I think, but I wonder how to do it in an effective way. Most of the time seems to be spent parsing and constructing the tokens...

Thanks, useful info! Splitting the namelists would generally be more difficult, but it shows there's value in splitting up the work. At the least, splitting the namelist into groups before...

I forgot to mention that I have been (slowly) working on a rewrite of the parser: [newparser](https://github.com/marshallward/f90nml/tree/newparser). That parser is still incomplete, with the core stuff and derived types working,...

I agree, it would be good to pre-format the file before handling the parsing. The earlier versions of this module could handle a stream and work with each byte as...

Yes, I agree this would be a nice feature. I think the current one-line-per-index printing is a bit half-baked because it was added later to accomodate multidimensions and derived type...

Yes, I can reproduce this one. This will be hard to fix because the function does not know if a token is a value or a variable until it reaches...

Yeah, I'd agree this is the same issue. In your case it's sort of "working as intended" since I seem to have intentionally avoided patching values that don't already exist....

I've pushed a change (18f5d2d76be2ce8baf12dfb40ea8d8058155217b) which resolves this bug, although it doesn't resolve the issue of extending the vector. I don't think the solution is a great one, because it...