Damon McDougall
Damon McDougall
I have not checked the other flavours of user guides. I do not know whether or not the same error exists in those.
For the multivariate case we need the DKRidge nugget effect to be 1e-4. I can't remember what the queso input file option is called.
Clarification: the default is 1e-4, for the verification we need 1e-6. Sorry for the confusion.
Scalar case is done in #614 and #615.
`std::shared_ptr` and `boost::shared_ptr` don't have `virtual` destructors. This is fine if our objects won't be treated polymorphically, but I don't think we can trust clients not to treat our objects...
Another approach to deprecating `::Type` is through composition, but that would require more code on our part. Honestly, once we're in the situation where we require C++11, we should just...
Actually, no it isn't, because `MpiComm` is a QUESO object, not an MPI object. That said, we're committing other atrocities: 1. [We straight up copy communicators, including context, rather than...
Related issue: #587.
We'd `ifdef` around `NDEBUG` so that if we're in debug mode we do a `dynamic_cast` and rely on RTTI. Whilst, if we're not in debug mode we do a `static_cast`....
Aha! Awesome, thank you.