From 71a9fc7bb831d7b4a8493c0cd9aa354e92aca249 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Fri, 2 Jul 2004 14:44:29 +0000 Subject: [PATCH] Changed the name of a routine, to get it to compile. However, I don't think this is part of the distribution. --- Cantera/src/ImplicitChem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cantera/src/ImplicitChem.h b/Cantera/src/ImplicitChem.h index 0ae77c985..bbc198935 100755 --- a/Cantera/src/ImplicitChem.h +++ b/Cantera/src/ImplicitChem.h @@ -66,7 +66,7 @@ namespace Cantera { */ void integrate(doublereal t0, doublereal t1) { m_integ->reinitialize(t0, *this); - m_integ->setMaxStep(t1 - t0); + m_integ->setMaxStepSize(t1 - t0); m_rho = m_thermo->density(); m_integ->integrate(t1); updateState(m_integ->solution());