mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
25 lines
357 B
C++
25 lines
357 B
C++
#include "calculation.h"
|
|
#include <assert.h>
|
|
#include <cmath>
|
|
|
|
namespace Probability {
|
|
|
|
void Calculation::setLaw(Law * law) {
|
|
m_law = law;
|
|
compute(0);
|
|
}
|
|
|
|
int Calculation::numberOfEditableParameters() {
|
|
return numberOfParameters();
|
|
}
|
|
|
|
double Calculation::lowerBound() {
|
|
return -INFINITY;
|
|
}
|
|
|
|
double Calculation::upperBound() {
|
|
return INFINITY;
|
|
}
|
|
|
|
}
|