mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
65 lines
1.7 KiB
C++
65 lines
1.7 KiB
C++
#include "right_integral_calculation.h"
|
|
#include <poincare/preferences.h>
|
|
#include <cmath>
|
|
#include <assert.h>
|
|
|
|
namespace Probability {
|
|
|
|
RightIntegralCalculation::RightIntegralCalculation(Distribution * distribution) :
|
|
Calculation(distribution),
|
|
m_lowerBound(distribution->defaultComputedValue())
|
|
{
|
|
compute(0);
|
|
}
|
|
|
|
I18n::Message RightIntegralCalculation::legendForParameterAtIndex(int index) {
|
|
assert(index >= 0 && index < 2);
|
|
if (index == 0) {
|
|
return I18n::Message::RightIntegralFirstLegend;
|
|
}
|
|
return I18n::Message::RightIntegralSecondLegend;
|
|
}
|
|
|
|
void RightIntegralCalculation::setParameterAtIndex(double f, int index) {
|
|
assert(index >= 0 && index < 2);
|
|
if (index == 0) {
|
|
m_lowerBound = f;
|
|
}
|
|
if (index == 1) {
|
|
m_result = f;
|
|
}
|
|
compute(index);
|
|
}
|
|
|
|
double RightIntegralCalculation::parameterAtIndex(int index) {
|
|
assert(index >= 0 && index < 2);
|
|
if (index == 0) {
|
|
return m_lowerBound;
|
|
}
|
|
return m_result;
|
|
}
|
|
|
|
void RightIntegralCalculation::compute(int indexKnownElement) {
|
|
if (m_distribution == nullptr) {
|
|
return;
|
|
}
|
|
if (indexKnownElement == 0) {
|
|
m_result = m_distribution->rightIntegralFromAbscissa(m_lowerBound);
|
|
} else {
|
|
if (m_distribution->authorizedValueAtIndex(m_lowerBound, 0)) {
|
|
double currentResult = m_distribution->rightIntegralFromAbscissa(m_lowerBound);
|
|
if (std::fabs(currentResult - m_result) < std::pow(10.0, - Poincare::Preferences::LargeNumberOfSignificantDigits)) {
|
|
m_result = currentResult;
|
|
return;
|
|
}
|
|
}
|
|
m_lowerBound = m_distribution->rightIntegralInverseForProbability(&m_result);
|
|
m_result = m_distribution->rightIntegralFromAbscissa(m_lowerBound);
|
|
if (std::isnan(m_lowerBound)) {
|
|
m_result = NAN;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|