remove special treatment of falloff #'s, resolves #404

This commit is contained in:
arghdos 2016-12-06 19:51:08 -05:00 committed by Ray Speth
parent 08b14b24ed
commit 84e6775ee3

View file

@ -30,16 +30,8 @@ void Troe::init(const vector_fp& c)
c.size());
}
m_a = c[0];
if (c[1] == 0.0) {
m_rt3 = 1000.;
} else {
m_rt3 = 1.0/c[1];
}
if (c[2] == 0.0) {
m_rt1 = 1000.;
} else {
m_rt1 = 1.0/c[2];
}
m_rt3 = 1.0/c[1];
m_rt1 = 1.0/c[2];
if (c.size() == 4) {
m_t2 = c[3];
}