mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
16 lines
205 B
C++
16 lines
205 B
C++
#include "calculation.h"
|
|
#include <assert.h>
|
|
#include <cmath>
|
|
|
|
namespace Probability {
|
|
|
|
double Calculation::lowerBound() {
|
|
return -INFINITY;
|
|
}
|
|
|
|
double Calculation::upperBound() {
|
|
return INFINITY;
|
|
}
|
|
|
|
}
|