Changed fmax() to fmaxx() in one call.

This commit is contained in:
Harry Moffat 2003-08-21 22:36:57 +00:00
parent 1133733d3f
commit d8d7dc0112

View file

@ -105,7 +105,7 @@ namespace Cantera {
}
for (n = 0; n < m_nmcov; n++) {
k = m_msp[n];
th = fmax(theta[n], Tiny);
th = fmaxx(theta[n], Tiny);
m_mcov += m_mc[n]*log(th);
}
}