#include "two_parameter_distribution.h" #include namespace Probability { double TwoParameterDistribution::parameterValueAtIndex(int index) { assert(index >= 0 && index < 2); if (index == 0) { return m_parameter1; } return m_parameter2; } void TwoParameterDistribution::setParameterAtIndex(float f, int index) { assert(index >= 0 && index < 2); if (index == 0) { m_parameter1 = f; } else { m_parameter2 = f; } } }