33struct fmt::formatter<
Opm::DenseAd::Evaluation<ValueT,numDerivs,staticSize>>
36 constexpr auto parse(fmt::format_parse_context& ctx)
38 auto it = ctx.begin();
39 spec = (it != ctx.end() && *it !=
'}') ?
"{:" :
"{";
40 while (it != ctx.end() && *it !=
'}')
46 template<
class FormatContext>
50 std::vector<ValueT> tmp(e.
size());
51 for (
int i = 0; i < e.
size(); ++i)
52 tmp[i] = e.derivative(i);
53 return fmt::format_to(ctx.out(),
"v: "+ spec +
" / d: [" + spec +
"]",
54 e.value(), fmt::join(tmp,
", "));
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30