mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
48 lines
947 B
C++
48 lines
947 B
C++
#include "discrete_calculation.h"
|
|
#include <assert.h>
|
|
#include <ion.h>
|
|
#include <cmath>
|
|
|
|
namespace Probability {
|
|
|
|
DiscreteCalculation::DiscreteCalculation() :
|
|
Calculation(),
|
|
m_abscissa(0.0),
|
|
m_result(0.0)
|
|
{
|
|
compute(0);
|
|
}
|
|
|
|
I18n::Message DiscreteCalculation::legendForParameterAtIndex(int index) {
|
|
assert(index >= 0 && index < 2);
|
|
if (index == 0) {
|
|
return I18n::Message::DiscreteLegend;
|
|
}
|
|
return I18n::Message::LeftIntegralSecondLegend;
|
|
}
|
|
|
|
void DiscreteCalculation::setParameterAtIndex(double f, int index) {
|
|
assert(index == 0);
|
|
double rf = std::round(f);
|
|
m_abscissa = rf;
|
|
compute(index);
|
|
}
|
|
|
|
|
|
double DiscreteCalculation::parameterAtIndex(int index) {
|
|
assert(index >= 0 && index < 2);
|
|
if (index == 0) {
|
|
return m_abscissa;
|
|
}
|
|
return m_result;
|
|
}
|
|
|
|
void DiscreteCalculation::compute(int indexKnownElement) {
|
|
if (m_law == nullptr) {
|
|
return;
|
|
}
|
|
m_result = m_law->evaluateAtDiscreteAbscissa(m_abscissa);
|
|
}
|
|
|
|
}
|