remove special treatment of falloff #'s, resolves #404
This commit is contained in:
parent
08b14b24ed
commit
84e6775ee3
1 changed files with 2 additions and 10 deletions
|
|
@ -30,16 +30,8 @@ void Troe::init(const vector_fp& c)
|
||||||
c.size());
|
c.size());
|
||||||
}
|
}
|
||||||
m_a = c[0];
|
m_a = c[0];
|
||||||
if (c[1] == 0.0) {
|
m_rt3 = 1.0/c[1];
|
||||||
m_rt3 = 1000.;
|
m_rt1 = 1.0/c[2];
|
||||||
} else {
|
|
||||||
m_rt3 = 1.0/c[1];
|
|
||||||
}
|
|
||||||
if (c[2] == 0.0) {
|
|
||||||
m_rt1 = 1000.;
|
|
||||||
} else {
|
|
||||||
m_rt1 = 1.0/c[2];
|
|
||||||
}
|
|
||||||
if (c.size() == 4) {
|
if (c.size() == 4) {
|
||||||
m_t2 = c[3];
|
m_t2 = c[3];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue