mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
64 lines
1.5 KiB
C++
64 lines
1.5 KiB
C++
#include "left_integral_calculation.h"
|
|
#include <poincare/preferences.h>
|
|
#include <cmath>
|
|
#include <assert.h>
|
|
|
|
namespace Probability {
|
|
|
|
LeftIntegralCalculation::LeftIntegralCalculation() :
|
|
Calculation(),
|
|
m_upperBound(0.0),
|
|
m_result(0.0)
|
|
{
|
|
compute(0);
|
|
}
|
|
|
|
I18n::Message LeftIntegralCalculation::legendForParameterAtIndex(int index) {
|
|
assert(index >= 0 && index < 2);
|
|
if (index == 0) {
|
|
return I18n::Message::LeftIntegralFirstLegend;
|
|
}
|
|
return I18n::Message::LeftIntegralSecondLegend;
|
|
}
|
|
|
|
void LeftIntegralCalculation::setParameterAtIndex(double f, int index) {
|
|
assert(index >= 0 && index < 2);
|
|
if (index == 0) {
|
|
m_upperBound = f;
|
|
}
|
|
if (index == 1) {
|
|
m_result = f;
|
|
}
|
|
compute(index);
|
|
}
|
|
|
|
double LeftIntegralCalculation::parameterAtIndex(int index) {
|
|
assert(index >= 0 && index < 2);
|
|
if (index == 0) {
|
|
return m_upperBound;
|
|
}
|
|
return m_result;
|
|
}
|
|
|
|
void LeftIntegralCalculation::compute(int indexKnownElement) {
|
|
if (m_distribution == nullptr) {
|
|
return;
|
|
}
|
|
if (indexKnownElement == 0) {
|
|
m_result = m_distribution->cumulativeDistributiveFunctionAtAbscissa(m_upperBound);
|
|
} else {
|
|
if (!std::isnan(m_upperBound)) {
|
|
double currentResult = m_distribution->cumulativeDistributiveFunctionAtAbscissa(m_upperBound);
|
|
if (std::fabs(currentResult - m_result) < std::pow(10.0, - Poincare::Preferences::LargeNumberOfSignificantDigits)) {
|
|
return;
|
|
}
|
|
}
|
|
m_upperBound = m_distribution->cumulativeDistributiveInverseForProbability(&m_result);
|
|
if (std::isnan(m_upperBound)) {
|
|
m_result = NAN;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|