mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
21 lines
320 B
C++
21 lines
320 B
C++
#include "calculation.h"
|
|
#include <assert.h>
|
|
#include <cmath>
|
|
|
|
namespace Probability {
|
|
|
|
void Calculation::setDistribution(Distribution * distribution) {
|
|
m_distribution = distribution;
|
|
compute(0);
|
|
}
|
|
|
|
double Calculation::lowerBound() {
|
|
return -INFINITY;
|
|
}
|
|
|
|
double Calculation::upperBound() {
|
|
return INFINITY;
|
|
}
|
|
|
|
}
|