Patch for bug 240

This commit is contained in:
Craig Dowell
2008-06-27 09:32:34 -07:00
parent 2b1bc24321
commit 89e20b56c9

View File

@@ -1012,7 +1012,7 @@ NormalVariableImpl::NormalVariableImpl(double m, double v, double b/*=INFINITE_V
NormalVariableImpl::NormalVariableImpl(const NormalVariableImpl& c)
: RandomVariableBase(c), m_mean(c.m_mean), m_variance(c.m_variance),
m_bound(c.m_bound) { }
m_bound(c.m_bound), m_nextValid(false) { }
double NormalVariableImpl::GetValue()
{