Paul T. Bauman
Paul T. Bauman
Some methods we take a pointer to a parser that's already created (e.g. `ChemicalMixture` constructor). Others, we don't give that option and construct the parser internally (e.g. `read_reaction_set_data1). It would...
ParserBase is meant to define API. So instead of everything being not implemented by default, let's make them pure virtual (where appropriate) and then let derived classes show not implemented....
Somewhat related to #247... Right now, we manually parse the molecular weight for each species from an ASCII data file... This is obviously not scalable or generalizable. Really, we should...
Before it occurred to me to use a macro, there's at least 3 different testing classes to get registered with CppUnit (float, double, long double). Of course, this make it...
While adding testing to #240, it became clear we are starting to get some redundancy in testing data, e.g. coefficients for NASA polynomials, across testing classes. We should consolidate all...
GCC 4.8.2 was C++11 feature complete, so any RHEL 7 based system will natively support C++11. GCC 5 was C++14 complete. My experience has been that the supercomputing centers will...
@roystgnr wrote in grinsfem/grins#410 > We're also now incompatible with the newest Antioch master, thanks to my mistake - when Antioch is built with MetaPhysicL, it then depends on metaphysicl/compare_types.h,...
IIRC, I thought we'd meant to have `NumericType` default to `double` so we could avoid template arguments in a lot of cases. Lots of places this is missing, esp. in...
Right now, there's no way to shut them up.
At the very least #168 will break this. I'm not sure what else though.